/* ================================
   Thailand Visa Website - Main Styles
   Version: 2.0 - MOBILE IMPROVED
   Desktop: UNCHANGED ✅
   Mobile: OPTIMIZED 📱
   ================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --thai-blue: #0033A0;
    --thai-red: #DA291C;
    --thai-white: #FFFFFF;
    --text-dark: #2D2A4A;
    --text-light: #6B7280;
    --bg-gray: #F9FAFB;
    --accent-green: #00A651;
    --border-light: #E5E7EB;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ================================
   HEADER SECTION
   ================================ */
header {
    background: var(--thai-white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--thai-blue);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.lang-selector {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    flex-wrap: wrap;
    max-width: 400px;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: 2px solid var(--thai-blue);
    background: white;
    color: var(--thai-blue);
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.lang-btn:hover, .lang-btn.active {
    background: var(--thai-blue);
    color: white;
}

.whatsapp-header {
    background: #25D366;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.whatsapp-header:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    background: linear-gradient(135deg, var(--thai-blue) 0%, #0055CC 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--thai-red);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #B91F1C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 41, 28, 0.3);
}

.cta-green {
    background: var(--accent-green) !important;
}

.cta-green:hover {
    background: #00874A !important;
    box-shadow: 0 5px 15px rgba(0, 134, 74, 0.3) !important;
}

.cta-button-secondary {
    background: #6B7280;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-left: 1rem;
}

.cta-button-secondary:hover {
    background: #4B5563;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 85, 99, 0.3);
}

/* ================================
   CALCULATOR SECTION
   ================================ */
.calculator {
    max-width: 1200px;
    margin: -3rem auto 4rem;
    padding: 0 2rem;
    position: relative;
}

.calculator-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 3rem;
}

.calculator-card h2 {
    color: var(--thai-blue);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.calculator-card .subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.quiz-container {
    display: none;
}

.quiz-container.active {
    display: block;
}

.question {
    margin-bottom: 2rem;
}

.question h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.option-btn {
    padding: 1.5rem;
    border: 2px solid #E5E7EB;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.option-btn:hover {
    border-color: var(--thai-blue);
    background: #F0F5FF;
}

.option-btn.selected {
    border-color: var(--thai-blue);
    background: var(--thai-blue);
    color: white;
}

.option-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.option-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.result-section {
    display: none;
    background: #F0F7FF;
    padding: 2rem;
    border-radius: 10px;
}

#result {
    display: none;
}

.result-section h3 {
    color: var(--thai-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.visa-details {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--thai-blue);
    font-weight: 500;
}

/* ================================
   TRUST INDICATORS
   ================================ */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ================================
   CREDIBILITY SECTION
   ================================ */
.credibility {
    padding: 3rem 2rem;
    background: white;
    border-bottom: 1px solid var(--border-light);
}

.credibility-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.credibility-title {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cert-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-gray);
}

.cert-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--thai-blue);
}

.cert-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ================================
   PROCESS SECTION
   ================================ */
.process {
    padding: 5rem 2rem;
    background: white;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--thai-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--thai-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    padding: 5rem 2rem;
    background: var(--bg-gray);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    color: var(--thai-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.visa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.visa-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 1px solid var(--border-light);
}

.visa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: var(--thai-blue);
}

.visa-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.visa-card h3 {
    color: var(--thai-blue);
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
}

.visa-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more {
    color: var(--thai-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.learn-more:hover {
    gap: 0.8rem;
}

/* ================================
   WHY CHOOSE US
   ================================ */
.why-us {
    padding: 5rem 2rem;
    background: var(--bg-gray);
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--thai-blue);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
}

/* ================================
   FAQ SECTION
   ================================ */
.faq {
    padding: 5rem 2rem;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 2rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--thai-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
    margin-left: 2rem;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--thai-blue) 0%, #0055CC 100%);
    color: white;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-container p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* ================================
   FOOTER
   ================================ */
footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* ================================
   WHATSAPP FLOATING BUTTON
   ================================ */
.whatsapp-float {
    position: relative;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s;
    text-decoration: none;
    z-index: 999;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 3px 15px rgba(0,0,0,0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* ================================
   RESPONSIVE DESIGN - TABLET
   ================================ */
@media (max-width: 768px) {
    /* Header Navigation - More compact */
    nav {
        padding: 0.8rem 1rem;
        flex-wrap: wrap;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo svg {
        width: 22px;
        height: 22px;
    }
    
    .nav-menu {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    /* Language selector - Compact version */
    .lang-selector {
        max-width: 200px;
        gap: 0.2rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .whatsapp-header {
        padding: 0.5rem 0.9rem;
        font-size: 0.9rem;
    }
    
    .whatsapp-header svg {
        width: 16px;
        height: 16px;
    }
    
    /* Hero Section */
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
    }
    
    /* CTA Buttons */
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .cta-button-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
        margin-left: 0.5rem;
    }
    
    /* Calculator */
    .calculator {
        margin: -2rem auto 3rem;
        padding: 0 1rem;
    }
    
    .calculator-card {
        padding: 2rem 1.5rem;
    }
    
    .calculator-card h2 {
        font-size: 1.6rem;
    }

    /* Trust Indicators - 2 columns */
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 2rem auto 0;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .trust-label {
        font-size: 0.9rem;
    }
    
    /* Certifications - 2 columns */
    .certifications {
        gap: 2rem;
    }
    
    .cert-item {
        min-width: 120px;
    }
    
    /* Process Steps - 1 column */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Visa Grid - 1 column */
    .visa-grid {
        grid-template-columns: 1fr;
    }
    
    /* Options - 1 column */
    .options {
        grid-template-columns: 1fr;
    }
    
    /* Features - 1 column */
    .features {
        grid-template-columns: 1fr;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* FAQ */
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
        margin-left: 1.5rem;
    }
}
/* ================================
   RESPONSIVE DESIGN - MOBILE SMALL (<480px)
   🔥 NUEVAS MEJORAS ESPECÍFICAS PARA MÓVILES PEQUEÑOS
   ================================ */
@media (max-width: 480px) {
    /* Header - Ultra compact */
    nav {
        padding: 0.6rem 0.8rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo svg {
        width: 20px;
        height: 20px;
    }
    
    .logo span {
        font-size: 1rem !important;
    }
    
    /* Language Selector - Show only EN + 2 more */
    .lang-selector {
        max-width: 150px;
        overflow: hidden;
    }
    
    .lang-btn {
        padding: 0.25rem 0.4rem;
        font-size: 0.7rem;
        border-width: 1px;
    }
    
    /* Hide less important language buttons on very small screens */
    .lang-btn:nth-child(n+4) {
        display: none;
    }
    
    .whatsapp-header {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .whatsapp-header svg {
        width: 14px;
        height: 14px;
    }
    
    /* Hero Section - Extra compact */
    .hero {
        padding: 2.5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content h1 br {
        display: none; /* Remove line breaks on very small screens */
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    /* CTA Buttons - Stack vertically */
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-button-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        margin-left: 0;
        margin-top: 0.8rem;
        display: block;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Calculator */
    .calculator {
        margin: -1.5rem auto 2rem;
        padding: 0 0.8rem;
    }
    
    .calculator-card {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }
    
    .calculator-card h2 {
        font-size: 1.4rem;
    }
    
    .calculator-card .subtitle {
        font-size: 0.9rem;
    }
    
    .question h3 {
        font-size: 1.05rem;
    }
    
    .option-btn {
        padding: 1.2rem 1rem;
    }
    
    .option-title {
        font-size: 0.95rem;
    }
    
    .option-desc {
        font-size: 0.85rem;
    }
    
    /* Trust Indicators - Stack to 1 column on tiny screens */
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem auto 0;
        padding: 0 1rem;
    }
    
    .trust-number {
        font-size: 1.8rem;
    }
    
    .trust-label {
        font-size: 0.85rem;
    }
    
    /* Credibility Section */
    .credibility {
        padding: 2rem 1rem;
    }
    
    .credibility-title {
        font-size: 1.1rem;
    }
    
    /* Certifications - 1 column for very small screens */
    .certifications {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cert-item {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .cert-icon {
        width: 50px;
        height: 50px;
    }
    
    .cert-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .cert-text {
        font-size: 0.85rem;
        text-align: left;
    }
    
    /* Process Section */
    .process {
        padding: 3rem 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
    
    /* Services Section */
    .services {
        padding: 3rem 1rem;
    }
    
    .visa-card {
        padding: 1.5rem;
    }
    
    .visa-icon {
        width: 40px;
        height: 40px;
    }
    
    .visa-card h3 {
        font-size: 1.15rem;
    }
    
    .visa-card p {
        font-size: 0.9rem;
    }
    
    /* Why Choose Us */
    .why-us {
        padding: 3rem 1rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    /* FAQ Section */
    .faq {
        padding: 3rem 1rem;
    }
    
    .faq-item {
        padding: 1.5rem 0;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        margin-left: 1rem;
        line-height: 1.6;
    }
    
    /* Contact Section */
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact-container h2 {
        font-size: 1.6rem;
    }
    
    .contact-container p {
        font-size: 1rem;
    }
    
    /* Footer */
    footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-content p {
        font-size: 0.85rem;
    }
    
    /* WhatsApp Floating Button - Smaller and better positioned */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px !important;
        right: 15px !important;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    /* Powered by WhatsIA badge - Smaller */
    .whatsapp-float + a {
        font-size: 10px !important;
        padding: 3px 6px !important;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    /* Result Section */
    .result-section {
        padding: 1.5rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }
    
    .detail-label {
        font-size: 0.9rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
        font-weight: 600;
    }
}

/* ================================
   LANDSCAPE MODE FIXES FOR MOBILE
   ================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .calculator {
        margin: -1rem auto 2rem;
    }
    
    .trust-indicators {
        margin: 1rem auto 0;
    }
}

/* ================================
   WHATSAPP FLOATING BUTTON FIXES
   🔥 Sobrescribe estilos inline del HTML para responsive
   ================================ */

/* Target the WhatsApp container div with inline styles */
div[style*="position: fixed"][style*="bottom"][style*="right"] {
    /* Desktop mantiene los valores del HTML inline */
}

/* Tablet adjustments */
@media (max-width: 768px) {
    /* Ajustar posición del contenedor de WhatsApp */
    div[style*="position: fixed"][style*="bottom"][style*="right"] {
        bottom: 25px !important;
        right: 15px !important;
        gap: 28px !important;
    }
    
    /* Botón WhatsApp - Tamaño intermedio */
    .whatsapp-float {
        width: 55px !important;
        height: 55px !important;
    }
    
    .whatsapp-float svg {
        width: 32px !important;
        height: 32px !important;
    }
    
    /* Badge "Powered by WhatsIA" - Más pequeño */
    div[style*="position: fixed"] > a[href*="whatsia"] {
        padding: 3px 7px !important;
        font-size: 11px !important;
    }
}

/* Mobile small adjustments */
@media (max-width: 480px) {
    /* Ajustar posición del contenedor de WhatsApp - Más pegado */
    div[style*="position: fixed"][style*="bottom"][style*="right"] {
        bottom: 15px !important;
        right: 10px !important;
        gap: 20px !important;
    }
    
    /* Botón WhatsApp - Más pequeño */
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
    }
    
    .whatsapp-float svg {
        width: 28px !important;
        height: 28px !important;
    }
    
    /* Badge "Powered by WhatsIA" - Mini */
    div[style*="position: fixed"] > a[href*="whatsia"] {
        padding: 2px 5px !important;
        font-size: 9px !important;
        border-radius: 8px !important;
    }
    
    div[style*="position: fixed"] > a[href*="whatsia"] span {
        font-size: 9px !important;
    }
}

/* Extra small screens - Ultra compact */
@media (max-width: 380px) {
    div[style*="position: fixed"][style*="bottom"][style*="right"] {
        bottom: 12px !important;
        right: 8px !important;
        gap: 18px !important;
    }
    
    .whatsapp-float {
        width: 45px !important;
        height: 45px !important;
    }
    
    .whatsapp-float svg {
        width: 25px !important;
        height: 25px !important;
    }
}

/* Landscape mode - Keep it compact */
@media (max-height: 500px) and (orientation: landscape) {
    div[style*="position: fixed"][style*="bottom"][style*="right"] {
        bottom: 10px !important;
        right: 10px !important;
        gap: 15px !important;
    }
    
    .whatsapp-float {
        width: 45px !important;
        height: 45px !important;
    }
}
