
:root {
    --primary-color: #000000;
    --secondary-color: #d4af37;
    --accent-color: #ffffff;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --dark-bg: #121212;
    --gray-light: #f1f3f5;
    --gray-medium: #adb5bd;
    --gray-dark: #495057;
    --success-color: #25D366;
    --facebook-color: #1877F2;
    --instagram-color: #E4405F;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 50px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--secondary-color) 0%, #b8941f 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-color) 0%, #2c2c2c 100%);
    --gradient-light: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    --gradient-hero: linear-gradient(135deg, #000428 0%, #004e92 100%);
    --border-radius-sm: 8px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--accent-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes pulseSoft {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    to {
        transform: scale(1) translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray-dark);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: var(--transition);
    z-index: 1002;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--dark-bg);
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
}

.mobile-nav-links.active {
    transform: translateX(0);
}

.mobile-nav-links li {
    list-style: none;
    margin-bottom: 0;
}

.mobile-nav-links a {
    display: block;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--secondary-color);
    padding-left: 10px;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}


body[dir="rtl"] {
    text-align: right;
}

body[dir="rtl"] .logo {
    flex-direction: row-reverse;
}

body[dir="rtl"] .nav-links a::after {
    left: auto;
    right: 0;
}

body[dir="rtl"] .mobile-nav-links a:hover,
body[dir="rtl"] .mobile-nav-links a.active {
    padding-left: 0;
    padding-right: 10px;
}

body[dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
}

body[dir="rtl"] .mobile-nav-links {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

body[dir="rtl"] .mobile-nav-links.active {
    transform: translateX(0);
}

body[dir="rtl"] .section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

body[dir="rtl"] .contact-form-grid {
    direction: ltr;
}

body[dir="rtl"] .contact-form-grid>* {
    direction: rtl;
}


.contact-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    margin-top: var(--header-height);
    overflow: hidden;
    padding: 0 5%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
    animation: shimmer 10s infinite linear;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out 0.3s both;
}

.hero-content h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: var(--border-radius-xl);
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease-out 1s both;
}

.hero-note i {
    color: var(--secondary-color);
}


.contact-info-section {
    padding: 120px 0 80px;
    background: var(--light-bg);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--accent-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.contact-card:nth-child(1) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(2) {
    animation-delay: 0.4s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.6s;
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card-info {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.card-info:hover {
    color: var(--primary-color);
}

.card-note {
    color: var(--gray-medium);
    font-size: 0.9rem;
    font-weight: 500;
}


.contact-form-section {
    padding: 120px 0;
    background: var(--accent-color);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.form-container {
    background: var(--accent-color);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-light);
    animation: fadeInLeft 0.8s ease-out;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--gray-dark);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--accent-color);
    color: var(--text-color);
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder {
    color: var(--gray-medium);
}

.form-select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--accent-color);
    color: var(--text-color);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.form-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--accent-color);
    color: var(--text-color);
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.form-button {
    flex: 1;
    padding: 18px;
    border-radius: var(--border-radius-xl);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-button.primary {
    background: var(--gradient-primary);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.form-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.form-button.secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.form-button.secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.form-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out;
}

.illustration-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.illustration-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.illustration-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: var(--border-radius-xl);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}



.quick-contact-section {
    padding: 80px 0 120px;
    background: var(--light-bg);
}

.quick-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.quick-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.quick-button:nth-child(1) {
    animation-delay: 0.1s;
}

.quick-button:nth-child(2) {
    animation-delay: 0.2s;
}

.quick-button:nth-child(3) {
    animation-delay: 0.3s;
}

.quick-button:nth-child(4) {
    animation-delay: 0.4s;
}

.quick-button.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: var(--accent-color);
}

.quick-button.messenger {
    background: linear-gradient(135deg, #1877F2 0%, #0D5FBB 100%);
    color: var(--accent-color);
}

.quick-button.phone {
    background: var(--gradient-primary);
    color: var(--primary-color);
}

.quick-button.email {
    background: linear-gradient(135deg, #EA4335 0%, #D14836 100%);
    color: var(--accent-color);
}

.quick-button:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.quick-button:hover .button-icon {
    transform: rotate(360deg);
}

.button-icon {
    font-size: 1.5rem;
    transition: transform 0.6s ease;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes bounceInFixed {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.quick-button.bounce-fixed {
    animation: bounceInFixed 0.8s ease forwards;
}


.quick-button {
    will-change: transform, opacity;
}


.quick-button.animate {
    animation-play-state: running;
}



.map-section {
    padding: 0 0 120px;
    background: var(--accent-color);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: fadeIn 1s ease-out;
}

#map {
    width: 100%;
    height: 500px;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 300px;
}

.map-overlay h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.map-overlay p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}


.faq-section {
    padding: 120px 0;
    background: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    animation: slideUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    background: var(--accent-color);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--accent-color);
}

.faq-answer.active {
    padding: 30px;
    max-height: 500px;
}


.final-cta-section {
    padding: 150px 0;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    filter: blur(40px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite 1s;
}

.final-cta-section h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.final-cta-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}
   
   
.seo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0055A4, #EF4135); 
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 10px 5px;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(63, 81, 181, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.seo-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(63, 81, 181, 0.3);
}

.seo-badge i {
    margin-right: 8px;
}


.services-hero { 
    opacity: 0; 
}

.services-hero.loaded { 
    animation: fadeIn 0.8s ease forwards; 
}

@keyframes fadeIn { 
    to { 
        opacity: 1; 
    } 
}


.french-specialist {
    background: rgba(0, 85, 164, 0.1);
    border-left: 4px solid #0055A4;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

     
footer {
    background: var(--gradient-dark);
    color: var(--accent-color);
    padding: 100px 5% 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding-bottom: 15px;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-about p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
    padding: 8px 0;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(10px);
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 24px;
}

.footer-contact a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    text-decoration: underline;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: #999;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}


.back-to-top {
    position: fixed;
    bottom: 130px; 
    right: 40px;
    background: #3498db; 
    background: var(--secondary-color, #3498db);
    color: white;
    color: var(--primary-color, white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    box-shadow: var(--shadow-lg, 0 5px 15px rgba(0, 0, 0, 0.2));
    z-index: 999;
    transition: all 0.3s ease;
    transition: var(--transition, all 0.3s ease);
    text-decoration: none;
    
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    
    cursor: pointer;
}


.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #2980b9; 
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    box-shadow: var(--shadow-xl, 0 10px 25px rgba(0, 0, 0, 0.3));
}


@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .contact-form-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {

    .nav-links,
    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .form-illustration {
        order: -1;
    }

    .quick-buttons {
        flex-direction: column;
        align-items: center;
    }

    .quick-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .form-container {
        padding: 30px;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-buttons {
        flex-direction: column;
    }

    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        margin: 20px;
    }

    .final-cta-section h2 {
        font-size: 2.5rem;
    }

    .final-cta-section p {
        font-size: 1.1rem;
    }

    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .hero-note {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .illustration-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .final-cta-section {
        padding: 100px 0;
    }
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}