/* ═══════════════════════════════════════════════════════════
   HOMECARE FERAY - COMPLETE INTEGRATED STYLE.CSS
   Met Language Switcher V3.0 Professional geïntegreerd
   ═══════════════════════════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e5f8e;
    --primary-light: #2b7bb9;
    --primary-dark: #164a6f;
    --secondary: #52b788;
    --accent: #f77f00;
    --dark: #0a1628;
    --text: #2d3436;
    --text-secondary: #636e72;
    --text-light: #95a5a6;
    --bg-light: #f8fafb;
    --bg-white: #ffffff;
    --border: #e1e8ed;
    --border-light: #f1f3f5;
    --gradient-primary: linear-gradient(135deg, #1e5f8e 0%, #2b7bb9 100%);
    --gradient-secondary: linear-gradient(135deg, #52b788 0%, #74c69d 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-x: hidden;
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

a {
    pointer-events: auto;
}

a img {
    pointer-events: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

/* Professional Icons */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* ═══════════════════════════════════════════════════════════
   LANGUAGE SWITCHER - DESKTOP
   ═══════════════════════════════════════════════════════════ */

.language-switcher-pro {
    position: relative;
    display: inline-block;
}

.lang-btn-pro {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.lang-btn-pro:hover {
    border-color: #2c5f7d;
    box-shadow: 0 4px 12px rgba(44, 95, 125, 0.15);
}

.lang-btn-pro .globe-icon {
    width: 20px;
    height: 20px;
    color: #2c5f7d;
}

.lang-btn-pro .current-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.lang-btn-pro .flag-emoji {
    font-size: 18px;
}

.lang-btn-pro .chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.lang-btn-pro.active .chevron {
    transform: rotate(180deg);
}

.lang-dropdown-pro {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown-pro.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option-pro {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.lang-option-pro:last-child {
    border-bottom: none;
}

.lang-option-pro:hover {
    background: #f9fafb;
    color: #2c5f7d;
}

.lang-option-pro.active {
    background: #eff6ff;
    color: #2c5f7d;
    font-weight: 600;
}

.lang-option-pro .flag-emoji {
    font-size: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 6px;
}

.lang-option-pro.active .flag-emoji {
    background: #dbeafe;
}

.lang-option-pro .lang-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-option-pro .lang-name {
    font-size: 14px;
    font-weight: 500;
}

.lang-option-pro .lang-native {
    font-size: 12px;
    color: #6b7280;
}

.lang-option-pro.active .lang-native {
    color: #2c5f7d;
}

.lang-option-pro .checkmark {
    margin-left: auto;
    width: 18px;
    height: 18px;
    color: #2c5f7d;
    opacity: 0;
}

.lang-option-pro.active .checkmark {
    opacity: 1;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: rgba(255, 255, 255, 1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo.has-image .logo-emoji {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:not(.btn-contact):hover {
    color: var(--primary);
}

.nav-links a:not(.btn-contact):hover::after {
    width: 80%;
}

.btn-contact {
    background: var(--gradient-primary) !important;
    color: var(--bg-white) !important;
    padding: 0.85rem 2rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(30, 95, 142, 0.2);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 95, 142, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    margin: -10px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
    border-radius: 3px;
}

/* Captcha Styling */
.captcha-group {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
}

.captcha-container {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
}

.captcha-question {
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    border: 2px solid var(--primary-light);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-question .loading {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
}

.captcha-container input[type="number"] {
    max-width: 120px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.captcha-refresh {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border: none;
    padding: 0.85rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 56px;
}

.captcha-refresh:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(30, 95, 142, 0.3);
}

.captcha-help {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 200px 3rem 120px;
    margin-top: 72px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotate(45deg);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-white) 100%);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--dark) 0%, #1a365d 100%);
    color: var(--bg-white);
    padding: 5rem 3rem;
    position: relative;
    margin-top: -50px;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
section {
    padding: 120px 3rem;
    position: relative;
}

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

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

.section-label {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding: 0 2rem;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25px;
    height: 2px;
    background: var(--secondary);
    transform: translateY(-50%);
}

.section-label::before {
    left: 0;
}

.section-label::after {
    right: 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text);
    margin: 1rem 0 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px solid rgba(30, 95, 142, 0.1);
    border-radius: 12px;
}

.about-image svg {
    width: 250px;
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 95, 142, 0.3);
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 600;
    font-size: 1.05rem;
}

.feature p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: var(--bg-light);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--bg-white) 0%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-white);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--bg-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(30, 95, 142, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text);
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card .learn-more:hover {
    gap: 0.75rem;
}

/* FAQ Section */
.faq {
    background: var(--bg-white);
    position: relative;
}

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

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:focus {
    outline: none;
}

button:focus-visible,
a:focus-visible,
.faq-question:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: -2px;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    outline: none;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
}

.contact-info {
    background: var(--gradient-primary);
    padding: 3.5rem;
    border-radius: 20px;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    transform: rotate(45deg);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.contact-info > p {
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
    font-size: 1rem;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.contact-info .social-links {
    justify-content: center;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-item span {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a {
    color: var(--bg-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text);
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    background: var(--bg-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(30, 95, 142, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(30, 95, 142, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(30, 95, 142, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #0d2137 100%);
    color: var(--bg-white);
    padding: 5rem 3rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.copyright a {
    color: var(--secondary);
    text-decoration: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 400px;
    }

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

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

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

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

/* ═══════════════════════════════════════════════════════════
   MOBILE & TABLET STYLES
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 140px 1.5rem 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Sections */
    section {
        padding: 80px 1.5rem;
    }

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

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 2rem 1rem;
    }

    .stat-item::after {
        display: none;
    }

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

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .captcha-container {
        grid-template-columns: 1fr;
    }
    
    .captcha-container input[type="number"] {
        max-width: 100%;
    }
    
    .captcha-refresh {
        justify-self: center;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    /* WhatsApp */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
    
    /* Buttons */
    .btn-submit {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    
    .btn-submit svg {
        display: inline-block;
        vertical-align: middle;
        margin-right: 0.75rem;
    }
    
    /* Service Cards */
    .service-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .service-icon {
        margin: 0 auto 2rem auto;
    }
    
    .service-card h3,
    .service-card p {
        text-align: center;
    }
    
    .service-card .learn-more {
        justify-content: center;
        margin: 1.5rem auto 0 auto;
    }
    
    /* ═══════════════════════════════════════════════════════════
       MOBILE LANGUAGE SWITCHER - V3.0 PROFESSIONAL
       ═══════════════════════════════════════════════════════════ */
    
    .nav-links .language-switcher-pro {
        position: relative !important;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 20px 0 15px 0;
        order: -1;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .lang-btn-pro {
        width: 75%;
        max-width: 220px;
        justify-content: center;
        margin: 0 auto;
        padding: 11px 18px;
        border: 1.5px solid rgba(44, 95, 125, 0.25);
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.2s ease;
    }
    
    .lang-btn-pro.active {
        border-color: #2c5f7d;
        background: #f8fafc;
        box-shadow: 0 4px 12px rgba(44, 95, 125, 0.12);
    }
    
    .lang-btn-pro:active {
        transform: scale(0.98);
    }
    
    .lang-btn-pro .globe-icon {
        width: 17px;
        height: 17px;
        color: #2c5f7d;
        opacity: 0.85;
    }
    
    .lang-btn-pro .current-lang {
        font-size: 13.5px;
        font-weight: 500;
        color: #1e293b;
        letter-spacing: 0.2px;
    }
    
    .lang-btn-pro .chevron {
        width: 13px;
        height: 13px;
        color: #64748b;
        opacity: 0.75;
    }
    
    .lang-btn-pro .flag-emoji {
        font-size: 19px;
        line-height: 1;
    }
    
    .lang-dropdown-pro {
        position: absolute !important;
        top: calc(100% + 6px) !important;
        right: auto !important;
        bottom: auto !important;
        transform: translateX(-50%);
        
        width: 75%;
        max-width: 220px;
        min-width: auto;
        
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        
        overflow: hidden;
        z-index: 9999 !important;
        
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        
        transition: all 0.2s ease;
    }
    
    .lang-dropdown-pro.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .lang-option-pro {
        padding: 10px 14px;
        min-height: 48px;
        display: flex;
        align-items: center;
        gap: 10px;
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        transition: all 0.15s ease;
    }
    
    .lang-option-pro:last-child {
        border-bottom: none;
    }
    
    .lang-option-pro:active,
    .lang-option-pro:hover {
        background: #f8fafc !important;
    }
    
    .lang-option-pro.active {
        background: #f0f9ff !important;
    }
    
    .lang-option-pro .flag-emoji {
        font-size: 22px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border-radius: 6px;
        flex-shrink: 0;
    }
    
    .lang-option-pro .lang-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 1px;
        min-width: 0;
    }
    
    .lang-option-pro .lang-name {
        font-size: 13.5px;
        font-weight: 600;
        color: #1e293b;
        line-height: 1.3;
    }
    
    .lang-option-pro .lang-native {
        font-size: 11px;
        color: #64748b;
        line-height: 1.3;
    }
    
    .lang-option-pro.active .lang-name {
        color: #2563eb;
    }
    
    .lang-option-pro.active .lang-native {
        color: #3b82f6;
        opacity: 0.85;
    }
    
    .lang-option-pro .checkmark {
        margin-left: auto;
        width: 16px;
        height: 16px;
        color: #2563eb;
        opacity: 0;
        transition: opacity 0.15s ease;
        flex-shrink: 0;
    }
    
    .lang-option-pro.active .checkmark {
        opacity: 1;
    }
    
    .lang-dropdown-pro.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.25);
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
        z-index: -1;
        animation: fadeIn 0.2s ease;
    }
    
    .nav-links li:not(.language-switcher-pro) {
        margin-top: 4px;
    }
    
    .nav-links li:not(.language-switcher-pro):first-of-type {
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.85rem;
    }

    section {
        padding: 60px 1rem;
    }

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

    .contact-info,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    /* Language Switcher - Extra Small Screens */
    .lang-btn-pro {
        width: 80%;
        max-width: 240px;
        padding: 10px 16px;
    }
    
    .lang-dropdown-pro {
        width: 80%;
        max-width: 240px;
    }
    
    .lang-option-pro {
        padding: 9px 12px;
        min-height: 46px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

[dir="rtl"] a[href^="tel:"],
[dir="rtl"] a[href^="mailto:"] {
    direction: ltr !important;
    unicode-bidi: embed;
}

[dir="rtl"] .footer-column .footer-links a[href^="tel:"],
[dir="rtl"] .footer-column .footer-links a[href^="mailto:"] {
    direction: ltr !important;
    unicode-bidi: embed;
    display: block;
    text-align: right;
}

[dir="rtl"] .contact-item span[dir="ltr"] {
    display: block;
    text-align: right;
}

[dir="rtl"] .contact-item span[dir="ltr"] a {
    direction: ltr !important;
    unicode-bidi: embed;
    display: inline-block;
}

[dir="rtl"] .contact-item a[href^="tel:"],
[dir="rtl"] .contact-item a[href^="mailto:"] {
    direction: ltr !important;
    unicode-bidi: embed;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .about-image {
        height: 350px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .about-image {
        height: 280px;
        border-radius: 15px;
    }
}

/* ═══════════════════════════════════════════════════════════
   END OF COMPLETE INTEGRATED STYLE.CSS
   ═══════════════════════════════════════════════════════════ */