/* ===== RESPONSIVE DESIGN ===== */

/* Global Responsive Utilities */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Service Pages Global Responsive */
.page-hero {
    height: 450px;
    margin-top: 70px;
}

.service-detail {
    padding: 80px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.service-main {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.clinic-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 30px;
    border-radius: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-info-card,
.contact-card,
.promotion-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.mobile-controls {
    display: none;
    align-items: center;
    gap: 15px;
    flex-direction: row;
    justify-content: flex-end;
    height: 40px; /* Hauteur fixe pour un alignement cohérent */
}

/* ===== TABLET & MOBILE (768px and below) ===== */
@media (max-width: 768px) {
    /* Language Selector */
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .mobile-controls {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-direction: row;
        justify-content: flex-end;
    }
    
    /* Service Pages Responsive */
    .page-hero {
        height: 350px;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-detail {
        padding: 60px 0;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-main {
        padding: 30px;
    }
    
    .clinic-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .techniques-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-info-card,
    .contact-card,
    .promotion-card {
        padding: 25px;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Homepage Responsive */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-intro {
        margin-bottom: 20px;
        padding: 25px;
    }
    
    .service-card-modern {
        height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Gallery Page Responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
    }
    
    .gallery-item {
        max-width: 100%;
    }
    
    .before-after {
        height: 250px;
    }
    
    .testimonial-highlight {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-video {
        width: 100%;
    }
    
    /* Sélecteur de langue mobile - version moderne compacte */
    .mobile-only .current-lang {
        padding: 10px 14px;
        background: linear-gradient(145deg, 
            rgba(255, 255, 255, 0.22) 0%, 
            rgba(255, 255, 255, 0.12) 50%, 
            rgba(255, 255, 255, 0.08) 100%);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 22px;
        backdrop-filter: blur(12px);
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.12),
            0 2px 6px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);
        min-width: auto;
        gap: 8px;
        display: flex;
        align-items: center;
        height: 40px;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }
    
    .mobile-only .current-lang::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.15) 50%, 
            transparent 100%);
        transition: left 0.5s ease;
        z-index: 1;
    }
    
    .mobile-only .current-lang:hover::before {
        left: 100%;
    }
    
    .mobile-only .current-lang:hover {
        background: linear-gradient(145deg, 
            rgba(255, 255, 255, 0.3) 0%, 
            rgba(255, 255, 255, 0.18) 50%, 
            rgba(255, 255, 255, 0.12) 100%);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.15),
            0 4px 10px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.45);
    }
    
    .mobile-only .current-lang .lang-name {
        display: none;
    }
    
    .mobile-only .current-lang .flag {
        font-size: 18px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }
    
    .mobile-only .current-lang:hover .flag {
        transform: scale(1.05) rotate(-1deg);
        filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    }
    
    .mobile-only .current-lang i {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.9);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    }
    
    .mobile-only .current-lang:hover i {
        color: white;
        transform: scale(1.1);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    }
    
    /* Menu déroulant mobile - centré et moderne */
    .mobile-only .language-menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-18px) scale(0.9) rotateX(-8deg);
        min-width: 150px;
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        backdrop-filter: blur(25px);
        border-radius: 16px;
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.12),
            0 6px 12px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        padding: 10px;
        overflow: hidden;
    }
    
    .mobile-only .language-menu.show {
        transform: translateX(-50%) translateY(0) scale(1) rotateX(0deg);
    }
    
    .mobile-only .language-menu li a {
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 13px;
        gap: 12px;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-only .language-menu li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, 
            rgba(99, 179, 237, 0.1) 0%, 
            rgba(99, 179, 237, 0.05) 100%);
        transition: left 0.3s ease;
        z-index: -1;
    }
    
    .mobile-only .language-menu li a:hover::before {
        left: 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Header */
    .header-content {
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(44, 82, 130, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px 0;
        gap: 5px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 15px 15px;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        padding: 14px 20px;
        margin: 0 15px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 500;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        background: transparent;
        border: 1px solid transparent;
        text-align: center;
        display: block;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
        color: #fff;
    }

    /* Mobile Dropdown Menu Styles */
    .nav-menu .dropdown {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        min-width: auto;
        width: calc(100% - 30px);
        margin: 5px 15px 0;
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-5px);
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-menu .dropdown::before {
        display: none;
    }

    .nav-menu .has-dropdown.active .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        max-height: 300px;
    }

    .nav-menu .dropdown a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        margin: 0 5px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        font-weight: 400;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .nav-menu .dropdown a:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateX(3px);
        color: white;
    }

    .nav-menu .dropdown a i {
        width: 16px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 4px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 10px;
        transition: all 0.3s ease;
    }

    .nav-menu .dropdown a:hover i {
        background: rgba(255, 255, 255, 0.25);
        color: white;
        transform: scale(1.05);
    }

    .nav-menu .dropdown .dropdown-header {
        padding: 8px 16px 6px;
        margin: 0 6px;
        font-size: 11px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        margin-bottom: 6px;
    }

    .nav-menu .dropdown .dropdown-divider {
        height: 1px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.2) 50%, 
            transparent 100%);
        margin: 6px 12px;
    }

    /* Mobile dropdown indicator */
    .nav-menu .has-dropdown > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto;
        font-size: 12px;
        transition: transform 0.3s ease;
        color: rgba(255, 255, 255, 0.7);
    }

    .nav-menu .has-dropdown.active > a::after {
        transform: rotate(180deg);
        color: white;
    }

    /* Staggered animation for dropdown items */
    .nav-menu .has-dropdown.active .dropdown a {
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInDropdown 0.3s ease forwards;
    }

    .nav-menu .has-dropdown.active .dropdown a:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu .has-dropdown.active .dropdown a:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu .has-dropdown.active .dropdown a:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu .has-dropdown.active .dropdown a:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu .has-dropdown.active .dropdown a:nth-child(5) { animation-delay: 0.3s; }

    @keyframes slideInDropdown {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        width: 44px;
        min-width: 44px;
        flex-shrink: 0;
    }

    .mobile-menu-toggle.active {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: #ff6b35;
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background: #ff6b35;
    }

    .contact-info {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 15px;
    }

    .hero-contact-form-center {
        padding: 25px 20px;
        max-width: 350px;
        width: 85%;
        position: relative;
        z-index: 1;
    }

    .hero-contact-form-center h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero-contact-form-center p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .country-code {
        padding: 10px 12px;
        font-size: 13px;
    }

    .country-code-select {
        padding: 10px 6px;
        font-size: 12px;
        min-width: 60px;
        max-width: 60px;
        flex-shrink: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 3px center;
        background-size: 10px;
        padding-right: 16px;
    }

    .phone-input-container input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .quick-contact-form input,
    .quick-contact-form select {
        padding: 12px 15px;
        font-size: 14px;
    }

    .cta-button.full-width {
        font-size: 16px;
        padding: 15px;
    }

    /* Sections */
    .services {
        padding: 0 0 40px 0;
        margin-top: -10px;
        position: relative;
        z-index: 2;
    }

    .about,
    .testimonials,
    .contact {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* Services */
    .services-intro {
        grid-column: span 1;
        margin-bottom: 20px;
        padding: 30px 25px;
    }

    .services-intro-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .services-subtitle {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .services-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card-modern {
        height: 350px;
    }

    .service-overlay {
        padding: 30px 20px 20px;
    }

    .service-overlay h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .service-overlay p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .service-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

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

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .clinic-image {
        height: 300px;
    }

    /* Contact */
    .contact {
        background: var(--gradient-primary) !important;
        display: block !important;
        position: relative !important;
        z-index: 1 !important;
        padding: 60px 0 !important;
        min-height: auto !important;
        overflow: visible !important;
    }
    
    .contact-content {
        display: block !important;
        margin-bottom: 40px !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .contact-info {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 3 !important;
    }
    
    .contact-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        max-width: 100% !important;
        margin: 0 auto 20px auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 4 !important;
    }

    .contact-card {
        background: rgba(44, 82, 130, 0.3) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        border-radius: 12px !important;
        padding: 15px 12px !important;
        min-height: 100px !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 5 !important;
        backdrop-filter: blur(10px) !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
    }

    .contact-card:hover {
        transform: translateY(-2px) !important;
        background: rgba(44, 82, 130, 0.4) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    }

    .contact-card i {
        font-size: 1.2rem !important;
        margin-bottom: 6px !important;
        display: block !important;
    }

    .contact-details strong {
        font-size: 0.8rem !important;
        margin-bottom: 3px !important;
        color: white !important;
        font-weight: 600 !important;
        display: block !important;
    }

    .contact-details p {
        font-size: 0.7rem !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
        line-height: 1.2 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        margin: 0 !important;
    }

    .form-grid,
    .form-grid.single-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    /* Statistics */
    .stats {
        padding: 60px 0;
    }

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

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 1rem;
    }

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

    .testimonial-card {
        padding: 25px 20px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: left;
    }
    
    /* Mobil footer düzenlemesi (768px) */
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        order: 1;
        margin-bottom: 20px;
    }
    
    .footer-section:first-child h4 {
        justify-content: center;
    }
    
    /* Hizmetlerimiz ve Hızlı Linkler yan yana (2. satır) */
    .footer-services {
        grid-column: 1;
        text-align: left;
        order: 2;
    }
    
    .footer-quick-links {
        grid-column: 2;
        text-align: left;
        order: 3;
    }
    
    .footer-services h4,
    .footer-quick-links h4 {
        justify-content: flex-start;
    }
    
    /* Sosyal medya bölümü */
    .footer-section:nth-child(4) {
        grid-column: 1;
        order: 4;
    }
    
    /* İletişim bölümü */
    .footer-section:nth-child(5) {
        grid-column: 2;
        order: 5;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Boutons flottants */
    .whatsapp-float {
        bottom: 110px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 24px;
        position: relative;
    }
    
    .whatsapp-float a i {
        font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", "FontAwesome", "Font Awesome 5 Free", "Font Awesome 6 Free", sans-serif !important;
        font-weight: 400 !important;
        position: relative;
        z-index: 2;
    }
    
    .whatsapp-float a i::before {
        content: "\f232" !important;
        font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", "FontAwesome", "Font Awesome 5 Free", "Font Awesome 6 Free", sans-serif !important;
        font-weight: 400 !important;
        font-style: normal !important;
        display: inline-block !important;
        text-rendering: auto !important;
        -webkit-font-smoothing: antialiased !important;
    }
    
    /* Mobile WhatsApp fallback */
    .whatsapp-float a::after {
        content: "📱";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 22px;
        z-index: 1;
        display: none;
    }
    
    .whatsapp-float a:not(:has(i[class*="fa-whatsapp"]))::after {
        display: block;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .hero-promo-center {
        padding: 16px 30px;
        max-width: none;
        width: 95%;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(8px);
        box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.08),
            0 0 0 2px rgba(0, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
        border: 2px solid rgba(0, 0, 0, 0.05);
    }
    
    .hero-promo-center h2 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 10px;
        line-height: 1.1;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 12px;
        flex-wrap: nowrap;
        max-width: 100%;
        justify-content: center;
    }
    
    .cta-button.whatsapp,
    .cta-button.email {
        padding: 12px 20px;
        font-size: 13px;
        font-weight: 600;
        flex: 1;
        max-width: none;
        min-height: 46px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        line-height: 1.2;
        border-radius: 23px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .promo-badge {
        font-size: 12px;
        font-weight: 600;
        padding: 8px 18px;
        background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
        margin-bottom: 8px;
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.6);
    }
    
    .promo-urgency {
        padding: 6px 12px;
        font-size: 11px;
        font-weight: 500;
        color: #16a34a;
        background: rgba(34, 197, 94, 0.1);
        margin-bottom: 10px;
        border-radius: 10px;
        border: 1px solid rgba(34, 197, 94, 0.3);
    }

    /* Contact Grid - 768px */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-top: 20px !important;
    }

    .contact-card {
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        border-radius: 12px !important;
        padding: 15px 12px !important;
        min-height: 110px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    .contact-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
        background: rgba(255, 255, 255, 1) !important;
    }

    .contact-card i {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
        display: block !important;
    }

    .contact-details {
        text-align: center !important;
    }

    .contact-details strong {
        font-size: 0.85rem !important;
        margin-bottom: 4px !important;
        color: #333 !important;
        font-weight: 600 !important;
        display: block !important;
        line-height: 1.2 !important;
    }

    .contact-details p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        color: #666 !important;
        margin: 0 !important;
        word-wrap: break-word !important;
    }
}

/* ===== MOBILE (480px and below) ===== */
@media (max-width: 480px) {
    /* Floating Buttons Mobile */
    .whatsapp-float {
        bottom: 100px;
        right: 15px;
    }

    .whatsapp-float a {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
    }

    /* Language Selector Mobile */
    .mobile-controls {
        gap: 10px;
        height: 36px;
    }
    
    .mobile-only .current-lang {
        padding: 8px 12px;
        height: 36px;
        background: linear-gradient(145deg, 
            rgba(255, 255, 255, 0.2) 0%, 
            rgba(255, 255, 255, 0.1) 50%, 
            rgba(255, 255, 255, 0.06) 100%);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.1),
            0 1px 4px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    
    /* Service Pages Mobile */
    .page-hero {
        height: 300px;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-detail {
        padding: 40px 0;
    }
    
    .service-main {
        padding: 20px;
    }
    
    .clinic-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-info-card,
    .contact-card,
    .promotion-card {
        padding: 20px;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content {
        padding: 20px 15px;
    }
    
    .benefit-item,
    .technique-item {
        padding: 20px 15px;
    }
    
    .benefit-item i {
        font-size: 2rem;
    }
    
    .technique-icon {
        width: 50px;
        height: 50px;
    }
    
    .technique-icon i {
        font-size: 1.2rem;
    }
    
    /* Homepage Mobile */
    .services-intro {
        padding: 20px;
    }
    
    .services-intro-icon {
        width: 60px;
        height: 60px;
    }
    
    .services-intro-icon i {
        font-size: 1.5rem;
    }
    
    .service-card-modern {
        height: 250px;
    }
    
    .service-overlay h3 {
        font-size: 1.3rem;
    }
    
    .service-overlay p {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    /* Gallery Mobile */
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .before-after {
        height: 200px;
    }
    
    .gallery-info h3 {
        font-size: 1.1rem;
    }
    
    .gallery-info p {
        font-size: 0.9rem;
    }
    
    .mobile-only .current-lang .flag {
        font-size: 16px;
        position: relative;
        z-index: 2;
    }
    
    .mobile-only .language-menu {
        min-width: 140px;
        font-size: 12px;
        border-radius: 14px;
        padding: 8px;
        transform: translateX(-50%) translateY(-16px) scale(0.9) rotateX(-6deg);
    }
    
    .mobile-only .language-menu.show {
        transform: translateX(-50%) translateY(0) scale(1) rotateX(0deg);
    }
    
    .mobile-only .language-menu li a {
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 12px;
        gap: 10px;
    }
    
    .mobile-menu-toggle {
        height: 36px;
        width: 36px;
        min-width: 36px;
        padding: 8px;
        border-radius: 8px;
        backdrop-filter: blur(10px);
    }

    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
    }

    .mobile-menu-toggle:hover {
        transform: scale(1.05);
    }

    .mobile-menu-toggle.active {
        transform: scale(1.05);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
        background: #ff6b35;
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        background: #ff6b35;
    }

    .nav-menu {
        padding: 20px 0;
        border-radius: 0 0 16px 16px;
        gap: 6px;
    }

    .nav-menu a {
        padding: 14px 20px;
        margin: 0 12px;
        font-size: 15px;
        border-radius: 10px;
        text-align: center;
        display: block;
    }

    /* Smaller mobile dropdown adjustments */
    .nav-menu .dropdown {
        width: calc(100% - 24px);
        margin: 6px 12px 0;
        padding: 6px 0;
        border-radius: 10px;
    }

    .nav-menu .dropdown a {
        padding: 10px 14px;
        margin: 0 4px;
        font-size: 13px;
        gap: 10px;
    }

    .nav-menu .dropdown a i {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }

    .nav-menu .dropdown .dropdown-header {
        padding: 6px 14px 4px;
        font-size: 10px;
        margin-bottom: 4px;
    }

    .nav-menu .has-dropdown > a::after {
        font-size: 11px;
    }

    .container {
        padding: 0 10px;
    }
    
    /* Footer mobil düzeni (480px ve altı) */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        text-align: left;
    }
    
    /* İlk bölüm (Ruberu Medica) - tam genişlik ve ortalı */
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        order: 1;
        margin-bottom: 20px;
    }
    
    /* Hizmetlerimiz ve Hızlı Linkler yan yana */
    .footer-services {
        grid-column: 1;
        order: 2;
    }
    
    .footer-quick-links {
        grid-column: 2;
        order: 3;
    }
    
    /* Sosyal medya bölümü */
    .footer-section:nth-child(4) {
        grid-column: 1;
        order: 4;
    }
    
    /* İletişim bölümü */
    .footer-section:nth-child(5) {
        grid-column: 2;
        order: 5;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        padding: 60px 0 20px;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 25px;
    }

    .hero-contact-form-center {
        padding: 20px 15px;
        border-radius: 15px;
        max-width: 300px;
        width: 80%;
    }

    .hero-contact-form-center h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .hero-contact-form-center p {
        font-size: 0.8rem;
        margin-bottom: 18px;
    }

    .country-code {
        padding: 10px 12px;
        font-size: 12px;
        gap: 6px;
    }

    .country-code-select {
        padding: 10px 6px;
        font-size: 11px;
        min-width: 55px;
        max-width: 55px;
        flex-shrink: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 2px center;
        background-size: 9px;
        padding-right: 14px;
    }

    .country-code .flag {
        font-size: 14px;
    }

    .phone-input-container input {
        padding: 10px 12px;
        font-size: 12px;
    }

    .quick-contact-form input,
    .quick-contact-form select {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 8px;
    }

    .quick-contact-form .form-row {
        margin-bottom: 15px;
    }

    .cta-button.full-width {
        font-size: 16px;
        padding: 15px;
    }

    /* Sections */
    .services {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .services-intro {
        grid-column: span 1;
        margin-bottom: 20px;
        padding: 25px 20px;
        border-radius: 18px;
    }

    .services-intro-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .services-subtitle {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .services-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Services */
    .service-card-modern {
        height: 300px;
    }

    .service-overlay {
        padding: 25px 15px 15px;
    }

    .service-overlay h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .service-overlay p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .service-buttons {
        gap: 10px;
    }

    .service-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .service-card {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .service-image {
        height: 150px;
        margin-top: 10px;
    }

    /* About */
    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .clinic-image {
        height: 250px;
    }

    /* Contact */
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info {
        order: 1;
    }

    .contact .contact-form {
        margin-top: 0;
        order: 2;
    }

    .contact-form {
        padding: 25px 20px;
        margin-top: 0;
    }

    .contact-form h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .form-grid,
    .form-grid.single-row {
        gap: 15px;
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 15px;
        height: 44px;
        font-size: 15px;
    }

    .form-group .phone-input-container {
        height: 44px;
    }

    .form-group .country-code {
        padding: 12px 15px;
        font-size: 14px;
    }

    .form-group .phone-input-container input {
        padding: 12px 15px;
        font-size: 15px;
    }

    .contact-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        max-width: 100% !important;
        margin: 0 auto 20px auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 4 !important;
    }

    .contact-card {
        background: rgba(44, 82, 130, 0.3) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        border-radius: 12px !important;
        padding: 15px 12px !important;
        min-height: 100px !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 5 !important;
        backdrop-filter: blur(10px) !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
    }

    .contact-card:hover {
        transform: translateY(-2px) !important;
        background: rgba(44, 82, 130, 0.4) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    }

    .contact-card i {
        font-size: 1.2rem !important;
        margin-bottom: 6px !important;
        display: block !important;
    }

    .contact-details strong {
        font-size: 0.8rem !important;
        margin-bottom: 3px !important;
        color: white !important;
        font-weight: 600 !important;
        display: block !important;
    }

    .contact-details p {
        font-size: 0.7rem !important;
        word-wrap: break-word !important;
        word-break: break-all !important;
        line-height: 1.2 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        margin: 0 !important;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contact-item {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Statistics */
    .stats {
        padding: 40px 0;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .testimonial-card::before {
        font-size: 40px;
        top: -5px;
        left: 15px;
    }

    .testimonial-card p {
        padding-top: 15px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* Logo responsive */
    .logo {
        font-size: 20px;
        font-weight: 500;
        gap: 10px;
    }

    .logo-img {
        width: 42px;
        height: 42px;
        border-radius: 6px;
    }

    .hero-promo-center {
        padding: 14px 25px;
        max-width: none;
        width: 98%;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(8px);
        box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.08),
            0 0 0 2px rgba(0, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
        border: 2px solid rgba(0, 0, 0, 0.05);
    }
    
    .hero-promo-center h2 {
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 1.1;
        color: #1f2937;
        margin-bottom: 8px;
    }
    
    .cta-buttons {
        gap: 10px;
        max-width: 100%;
        justify-content: center;
        padding: 0 8px;
    }
    
    .cta-button.whatsapp,
    .cta-button.email {
        padding: 10px 16px;
        font-size: 11px;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.5);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border-radius: 20px;
        text-decoration: none;
        transition: all 0.3s ease;
        min-height: 42px;
        flex: 1;
    }
    
    .promo-badge {
        font-size: 11px;
        font-weight: 600;
        padding: 6px 14px;
        background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
        margin-bottom: 6px;
        border-radius: 16px;
        border: 2px solid rgba(255, 255, 255, 0.6);
    }
    
    .promo-urgency {
        padding: 5px 10px;
        font-size: 10px;
        font-weight: 500;
        color: #16a34a;
        background: rgba(34, 197, 94, 0.1);
        margin-bottom: 8px;
        border-radius: 8px;
        border: 1px solid rgba(34, 197, 94, 0.3);
    }

    /* Contact Grid - 480px */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-top: 15px !important;
    }

    .contact-card {
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        border-radius: 10px !important;
        padding: 12px 8px !important;
        min-height: 100px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    }

    .contact-card:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
        background: rgba(255, 255, 255, 1) !important;
    }

    .contact-card i {
        font-size: 1.3rem !important;
        margin-bottom: 6px !important;
        display: block !important;
    }

    .contact-details strong {
        font-size: 0.8rem !important;
        margin-bottom: 3px !important;
        color: #333 !important;
        font-weight: 600 !important;
        display: block !important;
        line-height: 1.2 !important;
    }

    .contact-details p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        color: #666 !important;
        margin: 0 !important;
        word-wrap: break-word !important;
    }
}

/* Très petits écrans (360px et moins) */
/* ===== VERY SMALL MOBILE (360px and below) ===== */
@media (max-width: 360px) {
    /* Floating Buttons Ultra Small Mobile */
    .whatsapp-float {
        bottom: 90px;
        right: 12px;
    }

    .whatsapp-float a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .back-to-top {
        bottom: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    /* Service Pages Very Small Mobile */
    .page-hero {
        height: 250px;
    }
    
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .service-main {
        padding: 15px;
    }
    
    .clinic-stats {
        padding: 10px;
        gap: 8px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .service-info-card,
    .contact-card,
    .promotion-card {
        padding: 15px;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Existing Hero Rules */
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 20px;
        z-index: 1;
    }

    .hero-contact-form-center {
        padding: 18px 12px;
        max-width: 280px;
        width: 75%;
        position: relative;
        z-index: 1;
    }

    .hero-contact-form-center h3 {
        font-size: 1.2rem;
    }

    .hero-contact-form-center p {
        font-size: 0.75rem;
    }

    .country-code {
        padding: 8px 10px;
        font-size: 11px;
        gap: 4px;
    }

    .country-code-select {
        padding: 8px 5px;
        font-size: 10px;
        min-width: 50px;
        max-width: 50px;
        flex-shrink: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 2px center;
        background-size: 8px;
        padding-right: 12px;
    }

    .country-code .flag {
        font-size: 12px;
    }

    .phone-input-container input {
        padding: 8px 10px;
        font-size: 11px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 20px 10px;
    }

    .contact-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        margin-top: 15px !important;
        max-width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 4 !important;
    }

    .contact-card {
        background: rgba(44, 82, 130, 0.3) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 8px !important;
        padding: 10px 6px !important;
        min-height: 90px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    }

    .contact-card:hover {
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        background: rgba(44, 82, 130, 0.4) !important;
    }

    .contact-card i {
        font-size: 1.2rem !important;
        margin-bottom: 5px !important;
        display: block !important;
    }

    .contact-details strong {
        font-size: 0.75rem !important;
        margin-bottom: 2px !important;
        color: white !important;
        font-weight: 600 !important;
        display: block !important;
        line-height: 1.1 !important;
    }

    .contact-details p {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        margin: 0 !important;
        word-wrap: break-word !important;
    }

    .contact-form {
        padding: 20px 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 18px;
        font-weight: 500;
        gap: 8px;
    }

    .logo-img {
        width: 38px;
        height: 38px;
        border-radius: 5px;
    }

    .logo span {
        display: none;
    }
}

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

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 15px;
        z-index: 1;
    }

    .hero-contact-form-center {
        padding: 15px 12px;
        max-width: 280px;
        width: 70%;
    }

    .hero-contact-form-center h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .hero-contact-form-center p {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .country-code {
        padding: 8px 10px;
        font-size: 11px;
    }

    .country-code-select {
        padding: 8px 5px;
        font-size: 10px;
        min-width: 50px;
        max-width: 50px;
        flex-shrink: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 2px center;
        background-size: 8px;
        padding-right: 12px;
    }

    .phone-input-container input {
        padding: 8px 10px;
        font-size: 11px;
    }

    .quick-contact-form .form-row {
        margin-bottom: 10px;
    }

    .quick-contact-form input,
    .quick-contact-form select {
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* ===== TABLET LANDSCAPE (769px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Service Pages Tablet */
    .service-detail-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }
    
    .service-main {
        padding: 40px 30px;
    }
    
    .clinic-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        padding: 25px;
        background: rgba(44, 82, 130, 0.05);
        border-radius: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .techniques-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Homepage Tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-intro {
        grid-column: span 2;
        margin-bottom: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .about-content {
        flex-direction: row;
        gap: 40px;
        align-items: center;
    }
    
    .about-text {
        flex: 1;
    }
    
    .about-image {
        flex: 1;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Gallery Tablet */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .filter-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .filter-btn {
        width: auto;
        min-width: 120px;
    }
    
    .testimonial-highlight {
        flex-direction: row;
        gap: 40px;
        align-items: center;
    }
    
    .testimonial-content {
        flex: 1;
    }
    
    .testimonial-video {
        flex: 1;
        width: auto;
    }
    
    /* General Layout */
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 40px;
        z-index: 1;
    }

    .hero-contact-form-center {
        max-width: 380px;
        padding: 28px 22px;
        width: 85%;
    }

    .hero-contact-form-center h3 {
        font-size: 1.6rem;
    }

    .country-code {
        padding: 12px 15px;
        font-size: 14px;
    }

    .country-code-select {
        padding: 12px 8px;
        font-size: 13px;
        min-width: 65px;
        max-width: 65px;
        flex-shrink: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 3px center;
        background-size: 10px;
        padding-right: 16px;
    }

    .phone-input-container input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .services-intro {
        grid-column: span 2;
        margin-bottom: 25px;
        padding: 30px 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card-modern {
        height: 350px;
    }

    .service-overlay h3 {
        font-size: 1.8rem;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1200px;
    }

    .contact-card {
        padding: 25px 20px;
        min-height: 150px;
        word-wrap: break-word;
        word-break: break-all;
    }

    .contact-card i {
        font-size: 1.6rem;
    }

    .contact-details strong {
        font-size: 0.9rem;
    }

    .contact-details p {
        font-size: 0.8rem;
        word-wrap: break-word;
        word-break: break-all;
    }
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float,
    .back-to-top,
    .mobile-menu-toggle,
    .hero-contact-form-center {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 50px 0;
        color: black;
        background: white;
    }

    .hero-overlay,
    .hero-video-bg {
        display: none;
    }

    .service-card,
    .testimonial-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .footer {
        background: white;
        color: black;
    }
}

/* Services */

.form-grid,
.form-grid.single-row {
    grid-template-columns: 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    font-size: 13px;
    margin-bottom: 6px;
}

.contact-form h3 {
    font-size: 1.5rem;
}

.contact-form p {
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* Contact - Mobile */
.contact .section-title {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-content {
    display: block;
    margin-bottom: 40px;
}

.contact .contact-form {
    margin-top: 20px;
}

.contact-form {
    padding: 25px 20px;
    margin-top: 20px;
}

/* Desktop - Ajustement de position du formulaire de contact hero */
/* Tablet breakpoint için hero promo center */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-promo-center {
        max-width: 700px;
        width: 90%;
        padding: 18px 40px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(8px);
        box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.08),
            0 0 0 2px rgba(0, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
        border: 2px solid rgba(0, 0, 0, 0.05);
    }
    
    .hero-promo-center h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1f2937;
    }
    
    .cta-button.whatsapp,
    .cta-button.email {
        padding: 10px 16px;
        font-size: 13px;
        font-weight: 500;
        max-width: 140px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .promo-badge {
        font-size: 13px;
        font-weight: 600;
        padding: 9px 20px;
        background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
        border-radius: 22px;
        border: 2px solid rgba(255, 255, 255, 0.6);
    }
    
    .promo-urgency {
        font-size: 12px;
        font-weight: 500;
        padding: 7px 14px;
        color: #16a34a;
        background: rgba(34, 197, 94, 0.1);
        border: 1px solid rgba(34, 197, 94, 0.3);
    }
}

@media (min-width: 1025px) {
    .hero .hero-content .hero-contact-form-center {
        transform: translateY(-10px) !important;
    }
    
    .hero-promo-center {
        max-width: 800px;
        padding: 20px 60px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(8px);
        box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.08),
            0 0 0 2px rgba(0, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
        border: 2px solid rgba(0, 0, 0, 0.05);
    }
    
    .hero-promo-center h2 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: #1f2937;
    }
    
    .promo-badge {
        font-size: 14px;
        font-weight: 600;
        padding: 10px 24px;
        margin-bottom: 12px;
        background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
        border-radius: 25px;
        border: 2px solid rgba(255, 255, 255, 0.6);
    }
    
    .promo-urgency {
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 14px;
        color: #16a34a;
        background: rgba(34, 197, 94, 0.1);
        border: 1px solid rgba(34, 197, 94, 0.3);
    }
    
    .cta-button.whatsapp,
    .cta-button.email {
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 500;
        max-width: 160px;
        white-space: nowrap;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Largeur spéciale pour les cartes de contact sur PC */
    .contact-grid {
        max-width: 1800px;
        gap: 30px;
    }
    
    .contact-card {
        padding: 30px 25px;
        min-height: 170px;
        word-wrap: break-word;
        word-break: break-all;
        background: rgba(44, 82, 130, 0.5) !important;
    }
    
    /* Desktop specific text visibility */
    .contact .contact-info .contact-grid .contact-card .contact-details strong {
        color: #ffffff !important;
        font-weight: 700 !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10 !important;
    }
    
    .contact .contact-info .contact-grid .contact-card .contact-details p {
        color: rgba(255, 255, 255, 1) !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10 !important;
    }
    
    .contact .contact-info .contact-grid .contact-card:hover {
        background: rgba(44, 82, 130, 0.7) !important;
    }
    
    /* Desktop kart yapıları düzeltmeleri */
    .clinic-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 30px 0;
        padding: 30px;
        background: rgba(44, 82, 130, 0.05);
        border-radius: 15px;
    }
    
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-top: 30px;
    }
    
    .benefit-item {
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }
}

/* Desktop - Espacement entre contact-info et contact-form */
@media (min-width: 769px) {
    .contact .contact-form {
        margin-top: 80px;
    }
}

/* ===== ADDITIONAL RESPONSIVE FIXES ===== */

/* Fix for all images to be responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Fix for videos to be responsive */
video {
    max-width: 100%;
    height: auto;
}

/* Ensure all containers are responsive */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fix for buttons on mobile */
@media (max-width: 768px) {
    .btn, .cta-button, .service-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .btn:last-child, .cta-button:last-child, .service-btn:last-child {
        margin-bottom: 0;
    }
}

/* Fix for forms on mobile */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
    }
    
    input, textarea, select {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Fix for tables on mobile */
@media (max-width: 768px) {
    table {
        font-size: 14px;
    }
    
    th, td {
        padding: 8px 4px;
    }
}

/* Ensure text is readable on small screens */
@media (max-width: 480px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
    
    h5, h6 {
        font-size: 1rem;
    }
    
    p {
        font-size: 14px;
    }
}

/* Fix for overflow issues */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* Ensure all sections have proper spacing */
section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 30px 0;
    }
}

/* ===== MODERN TIMELINE STYLES ===== */

/* Modern Timeline Container */
.modern-timeline {
    position: relative;
    padding: 40px 0;
    margin: 40px 0;
}

/* Timeline Line */
.modern-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2c5282 0%, #4299e1 50%, #63b3ed 100%);
    border-radius: 2px;
    z-index: 1;
}

/* Timeline Step */
.timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-left: 120px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Step Circle */
.step-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.3);
    z-index: 2;
    border: 4px solid white;
}

.step-number {
    color: white;
    font-size: 28px;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    height: 100%;
}

/* Step Card */
.step-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #4299e1;
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
}

/* Speech Bubble Arrow */
.step-card::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
    filter: drop-shadow(-2px 0 3px rgba(0,0,0,0.1));
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.step-card h4 {
    color: #2c5282;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    color: #2d3748;
    font-size: 0.95rem;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.step-features li:last-child {
    border-bottom: none;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #4299e1;
    font-weight: bold;
    font-size: 1rem;
}

.step-features li:hover {
    color: #2c5282;
    padding-left: 30px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .modern-timeline::before {
        left: 30px;
    }
    
    .timeline-step {
        padding-left: 100px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        font-size: 22px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
        height: 100%;
    }
    
    .step-card {
        padding: 25px;
    }
    
    .step-card::before {
        left: -12px;
        top: 25px;
        border-right-width: 12px;
        border-top-width: 12px;
        border-bottom-width: 12px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-timeline {
        padding: 30px 0;
        margin: 30px 0;
    }
    
    .modern-timeline::before {
        left: 25px;
        width: 3px;
    }
    
    .timeline-step {
        padding-left: 80px;
        margin-bottom: 40px;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }
    
    .step-number {
        font-size: 18px !important;
        font-weight: 800 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 100% !important;
        line-height: 1 !important;
    }
    
    .step-card {
        padding: 20px;
        border-left-width: 3px;
    }
    
    .step-card::before {
        left: -10px;
        top: 20px;
        border-right-width: 10px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
    
    .step-card h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .step-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .step-features li {
        font-size: 0.85rem;
        padding: 6px 0;
        padding-left: 20px;
    }
    
    .step-features li::before {
        font-size: 0.9rem;
        top: 6px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .timeline-step {
        padding-left: 70px;
    }
    
    .step-circle {
        width: 45px;
        height: 45px;
    }
    
    .step-number {
        font-size: 16px !important;
    }
    
    .step-card {
        padding: 15px;
    }
    
    .step-card h4 {
        font-size: 1.1rem;
    }
    
    .step-card p {
        font-size: 0.85rem;
    }
    
    .step-features li {
        font-size: 0.8rem;
        padding-left: 18px;
    }
}

/* ===== MOBILE RESPONSIVE FIXES ===== */

/* Force equal CTA button sizes on all mobile devices */
@media (max-width: 768px) {
    .hero-promo-center .cta-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        justify-content: center !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }
    
    .hero-promo-center .cta-buttons .cta-button.whatsapp,
    .hero-promo-center .cta-buttons .cta-button.email {
        flex: 1 1 50% !important;
        min-width: 0 !important;
        max-width: none !important;
        width: auto !important;
        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;
        padding: 0 16px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 46px !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        border-radius: 23px !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        vertical-align: middle !important;
        position: relative !important;
        top: 0 !important;
        bottom: 0 !important;
    }
    
    .hero-promo-center .cta-buttons .cta-button.whatsapp i,
    .hero-promo-center .cta-buttons .cta-button.email i {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
        vertical-align: middle !important;
    }
}

@media (max-width: 480px) {
    .hero-promo-center .cta-buttons {
        gap: 10px !important;
        padding: 0 8px !important;
    }
    
    .hero-promo-center .cta-buttons .cta-button.whatsapp,
    .hero-promo-center .cta-buttons .cta-button.email {
        height: 44px !important;
        min-height: 44px !important;
        max-height: 44px !important;
        padding: 0 14px !important;
        font-size: 12px !important;
        line-height: 44px !important;
        gap: 6px !important;
        border-radius: 22px !important;
    }
}

@media (max-width: 360px) {
    .hero-promo-center .cta-buttons {
        gap: 8px !important;
        padding: 0 6px !important;
    }
    
    .hero-promo-center .cta-buttons .cta-button.whatsapp,
    .hero-promo-center .cta-buttons .cta-button.email {
        height: 42px !important;
        min-height: 42px !important;
        max-height: 42px !important;
        padding: 0 12px !important;
        font-size: 11px !important;
        line-height: 42px !important;
        gap: 5px !important;
        border-radius: 21px !important;
    }
}


