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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
    background: #ffffff;
    position: relative;
}

/* Enhanced background animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
    animation: gentleColorFlow 25s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes gentleColorFlow {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-10px) scale(0.95);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) scale(1.02);
        opacity: 0.25;
    }
}

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

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.scroll-animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scroll-animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.brand-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.2);
    opacity: 1 !important;
}

.brand-logo img:hover {
    filter: brightness(1.4);
    transform: scale(1.05);
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: #ffa500;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.7);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffa500, #ff6347);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-btn {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.lang-btn:hover {
    background: rgba(255, 165, 0, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
}

.lang-btn.active {
    background: #ffa500;
    color: #000;
    border-color: #ffa500;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
}

/* Theme Switcher */
.theme-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    width: 50px;
    height: 28px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2px;
}

.theme-toggle:hover {
    background: rgba(255, 165, 0, 0.2);
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3);
}

.theme-toggle-slider {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border-radius: 50%;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1);
    left: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-icon {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: #333;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.6s ease;
    opacity: 1;
    transform: rotate(0deg);
}

.theme-icon.moon-icon {
    opacity: 0;
    position: absolute;
    transform: rotate(-180deg);
}

.theme-icon.sun-icon {
    opacity: 1;
    position: absolute;
    transform: rotate(0deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Dark Theme */
[data-theme="dark"] {
    color-scheme: dark;
}

[data-theme="dark"] body {
    background: #121212;
    color: #ffffff;
}

[data-theme="dark"] body::before {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
}

[data-theme="dark"] .navbar {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .brand-logo img {
    filter: brightness(1.4);
}

[data-theme="dark"] .nav-link {
    color: #fff;
}

[data-theme="dark"] .nav-link:hover {
    color: #ffa500;
}

[data-theme="dark"] .nav-link::after {
    background: linear-gradient(90deg, #ffa500, #ff6347);
}

[data-theme="dark"] .lang-btn {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: #fff;
}

[data-theme="dark"] .lang-btn:hover {
    background: rgba(255, 165, 0, 0.2);
}

[data-theme="dark"] .lang-btn.active {
    background: #ffa500;
    color: #000;
}

[data-theme="dark"] .theme-toggle {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.4);
}

[data-theme="dark"] .theme-toggle-slider {
    left: 27px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

[data-theme="dark"] .theme-icon.sun-icon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .theme-icon.moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

[data-theme="dark"] .theme-icon {
    stroke: #fff;
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 165, 0, 0.2);
}

[data-theme="dark"] .language-switcher {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .theme-switcher {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .hamburger span {
    background: #fff;
}

[data-theme="dark"] .partners-hero {
    background: #121212;
    color: #ffffff;
}

[data-theme="dark"] .page-title {
    color: #ffffff;
}

[data-theme="dark"] .page-subtitle {
    color: #cccccc;
}

[data-theme="dark"] .partners-intro h2 {
    color: #ffffff;
}

[data-theme="dark"] .partners-intro p {
    color: #cccccc;
}

[data-theme="dark"] .partner-card {
    background: rgba(30, 30, 30, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .partner-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .partner-info h4 {
    color: #ffffff;
}

[data-theme="dark"] .partner-info p {
    color: #cccccc;
}

[data-theme="dark"] .benefits-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

[data-theme="dark"] .section-title {
    color: #ffffff;
}

[data-theme="dark"] .benefit-card {
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .benefit-card h3 {
    color: #ffffff;
}

[data-theme="dark"] .benefit-card p {
    color: #cccccc;
}

/* Partners Hero Section */
.partners-hero {
    padding: 150px 0 100px;
    background: #ffffff;
    color: #000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #000;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #333;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: transparent;
}

.partners-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-intro h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.partners-intro p {
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.partner-card {
    background: rgba(248, 248, 248, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.12);
}

.partner-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.partner-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.partner-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    text-align: center;
}

.partner-info p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.partner-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    margin-top: auto;
}

.partner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-button svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.whatsapp-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0) translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-chat.active {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.whatsapp-header {
    background: #075E54;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.whatsapp-info h4 {
    margin: 0;
    font-size: 16px;
}

.whatsapp-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.whatsapp-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.whatsapp-messages {
    height: 300px;
    padding: 20px;
    overflow-y: auto;
    background: #ECE5DD;
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
}

.message.bot {
    align-self: flex-start;
}

.message.user {
    align-self: flex-end;
    margin-left: auto;
}

.message-bubble {
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.message.bot .message-bubble {
    background: white;
    border-bottom-left-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message.user .message-bubble {
    background: #DCF8C6;
    border-bottom-right-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-input {
    padding: 15px 20px;
    background: #f0f0f0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.whatsapp-input input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    background: white;
}

.whatsapp-send {
    width: 40px;
    height: 40px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-send:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.whatsapp-send svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Enhanced AI FAQ Widget */
.ai-faq-widget {
    position: fixed;
    bottom: 20px;
    right: 100px;
    z-index: 9999;
}

.ai-faq-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    animation: aiFaqPulse 3s infinite;
    position: relative;
    overflow: hidden;
}

.ai-faq-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.ai-faq-button.expanded {
    width: 400px;
    height: auto;
    min-height: 500px;
    border-radius: 20px;
    bottom: 20px;
    right: 20px;
    animation: none;
}

.ai-faq-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: 2;
}

.ai-faq-button.expanded .ai-faq-icon {
    top: 20px;
    left: 20px;
    transform: none;
    width: 30px;
    height: 30px;
}

.ai-faq-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
    transition: all 0.3s ease;
}

.ai-faq-button.expanded .ai-faq-icon svg {
    width: 20px;
    height: 20px;
}

@keyframes aiFaqPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(102, 126, 234, 0.7);
    }
}

.ai-faq-content-inside {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 60px 20px 20px 20px;
    height: 100%;
    overflow-y: auto;
}

.ai-faq-button.expanded .ai-faq-content-inside {
    opacity: 1;
    visibility: visible;
}

.ai-faq-header-inside {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.ai-faq-header-inside h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.ai-faq-header-inside p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* AI Message Input */
.ai-message-input {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
}

.ai-message-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.ai-message-input input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.ai-send-btn {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ai-send-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* AI Suggestions */
.ai-suggestions {
    margin-bottom: 15px;
}

.suggestion-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.suggestion-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suggestion-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 12px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.suggestion-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* AI Response Area */
.ai-response-area {
    margin-top: 15px;
    min-height: 100px;
}

.ai-response {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
}

.ai-response.show {
    display: block;
    animation: fadeInResponse 0.5s ease-out;
}

@keyframes fadeInResponse {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        gap: 1.5rem;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: #333;
        font-size: 1.2rem;
        padding: 0.5rem 0;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-menu.active .lang-btn {
        color: #333;
        border-color: rgba(51, 51, 51, 0.3);
        background: rgba(51, 51, 51, 0.1);
    }

    .nav-menu.active .lang-btn.active {
        background: #ffa500;
        color: white;
        border-color: #ffa500;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .language-switcher {
        padding-left: 0;
        border-left: none;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 1rem;
    }

    /* WhatsApp widget için mobil uyumluluk */
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-chat {
        width: 280px;
        height: 400px;
        right: 20px;
        bottom: 80px;
    }

    .whatsapp-messages {
        height: 280px;
    }

    /* AI FAQ widget için mobil uyumluluk */
    .ai-faq-widget {
        right: 20px;
        bottom: 90px;
    }

    .ai-faq-button {
        width: 50px;
        height: 50px;
    }

    .ai-faq-button.expanded {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
        max-height: 70vh;
    }

    .ai-faq-icon svg {
        width: 24px;
        height: 24px;
    }

    .ai-faq-button.expanded .ai-faq-icon svg {
        width: 18px;
        height: 18px;
    }

    .ai-faq-content-inside {
        padding: 50px 15px 15px 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
    
    /* AI FAQ Widget Extra Small Mobile */
    .ai-faq-widget {
        bottom: 10px;
        right: 70px;
    }
    
    .ai-faq-button {
        width: 45px;
        height: 45px;
    }
    
    .ai-faq-button.expanded {
        width: 280px;
        min-height: 350px;
        bottom: 10px;
        right: 10px;
    }
    
    .ai-faq-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .ai-faq-button.expanded .ai-faq-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .ai-faq-content-inside {
        padding: 45px 12px 12px 12px;
    }
} 