
:root {
    --primary-color: #000;
    --secondary-color: #d4af37;
    --accent-color: #fff;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --dark-bg: #1a1a1a;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--secondary-color) 0%, #b8941f 100%);
    --gradient-dark: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    --border-radius: 15px;
    --header-height: 80px;
    
    
    --seo-color: #3f51b5;
    --web-color: #4caf50;
    --branding-color: #ffb300;
    --social-color: #5c7cfa;
    --ads-color: #4285F4;
    --ecommerce-color: #6c63ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-bg);
    transition: var(--transition);
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


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"] .service-features li::before,
body[dir="rtl"] .benefit-item li::before {
    margin-right: 0;
    margin-left: 10px;
}

body[dir="rtl"] .faq-question::after {
    right: auto;
    left: 0;
}

body[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 10px;
}

body[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}


.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);
}


section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    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(--secondary-color);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    line-height: 1.6;
}


.services-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent-color);
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(212, 175, 55, 0.2) 100%);
    margin-top: var(--header-height);
    overflow: hidden;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.services-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5);
}

.services-hero-content {
    max-width: 900px;
    padding: 40px;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.8;
}

.floating-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.floating-icon {
    font-size: 40px;
    color: var(--secondary-color);
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.5s);
    background: rgba(0, 0, 0, 0.3);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}


.services-overview {
    background: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.service-card-icon {
    font-size: 60px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.view-details-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.view-details-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}


.service-details {
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2ff 100%);
    padding: 80px 5%;
}


.service-detail-section {
    --service-color: var(--secondary-color);
    --service-color-dark: #b8941f;
    --service-color-light: rgba(212, 175, 55, 0.1);
}

.service-detail-section#seo {
    --service-color: var(--seo-color);
    --service-color-dark: #1a237e;
    --service-color-light: #e8eaf6;
    --service-gradient: linear-gradient(135deg, #3f51b5, #1e88e5);
}

.service-detail-section#web-design {
    --service-color: var(--web-color);
    --service-color-dark: #2e7d32;
    --service-color-light: #e8f5e9;
    --service-gradient: linear-gradient(135deg, #4caf50, #2e7d32);
}

.service-detail-section#branding {
    --service-color: var(--branding-color);
    --service-color-dark: #f57c00;
    --service-color-light: #fff8e1;
    --service-gradient: linear-gradient(135deg, #ffb300, #f57c00);
}

.service-detail-section#social-media {
    --service-color: var(--social-color);
    --service-color-dark: #4267B2;
    --service-color-light: #f8f9ff;
    --service-gradient: linear-gradient(135deg, #5c7cfa, #d6336c);
}

.service-detail-section#advertising {
    --service-color: var(--ads-color);
    --service-color-dark: #2bb673;
    --service-color-light: #eef5ff;
    --service-gradient: linear-gradient(135deg, #4285F4, #2bb673);
}

.service-detail-section#ecommerce {
    --service-color: var(--ecommerce-color);
    --service-color-dark: #7B61FF;
    --service-color-light: #f4f3ff;
    --service-gradient: linear-gradient(135deg, #6c63ff, #ff7a7a);
}


.service-detail-section {
    background: white;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 70px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f4f8;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--service-gradient);
}

.service-detail-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}


.service-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f4f8;
    animation: fadeInDown 0.6s ease-out;
}

.service-detail-icon {
    background: var(--service-gradient);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(var(--service-rgb, 212, 175, 55), 0.25);
    position: relative;
    z-index: 1;
}

.service-detail-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--service-gradient);
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
    z-index: -1;
}

.service-detail-title {
    flex: 1;
}

.service-detail-title h3 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: var(--service-color-dark);
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--service-color-dark), var(--service-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-description {
    font-size: 1.2rem;
    color: #546e7a;
    line-height: 1.7;
    max-width: 900px;
}


.service-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    margin-bottom: 60px;
    align-items: start;
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 1200px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


.service-features h4 {
    font-size: 1.6rem;
    color: var(--service-color-dark);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.service-features h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--service-gradient);
    border-radius: 2px;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 16px 0;
    border-bottom: 1px solid #f0f4f8;
    color: #37474f;
    font-size: 1.1rem;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: var(--service-color-light);
    padding-left: 15px;
    border-radius: 8px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li strong {
    color: var(--service-color-dark);
    font-weight: 700;
    margin-right: 10px;
    min-width: 200px;
}

.service-features li span {
    color: #546e7a;
    flex: 1;
}


.french-specialist {
    background: linear-gradient(135deg, rgba(0, 85, 164, 0.05), rgba(0, 85, 164, 0.1));
    border-left: 4px solid #0055A4;
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
    animation: fadeInUp 0.6s ease-out;
}

.french-specialist p {
    margin: 0 0 20px 0;
    font-weight: 700;
    color: #9cf015;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    
}

.french-specialist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.french-specialist li {
    padding: 10px 0;
    color: #37474f;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.french-specialist li::before {
    content: "▸";
    color: #0055A4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.french-specialist li strong {
    color: #0055A4;
    font-weight: 600;
}


.service-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    height: fit-content;
}

.service-visual img {
    width: 100%;
    height: auto;
    transition: transform 0.7s ease;
    border-radius: 16px;
}

.service-visual:hover img {
    transform: scale(1.05);
}


.platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.platform-badge {
    background: var(--service-gradient);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(var(--service-rgb, 108, 99, 255), 0.2);
}

.platform-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(var(--service-rgb, 108, 99, 255), 0.3);
}


.service-benefits {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    padding: 40px;
    margin: 50px 0;
    border-left: 6px solid var(--service-color);
    animation: fadeInUp 0.7s ease-out;
}

.service-benefits h4 {
    font-size: 1.5rem;
    color: var(--service-color-dark);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.service-benefits h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--service-color);
    border-radius: 2px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item i {
    color: var(--service-color);
    margin-right: 18px;
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
    min-width: 24px;
}

.benefit-item span {
    color: #37474f;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefit-item strong {
    color: var(--service-color-dark);
    font-weight: 700;
    margin-right: 8px;
}


.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 70px 0 60px;
    gap: 30px;
    counter-reset: step-counter;
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
    }
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 16px;
    border: 2px solid #e8eaf6;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    counter-increment: step-counter;
}

.process-step::before {
    content: counter(step-counter);
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--service-gradient);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(var(--service-rgb, 212, 175, 55), 0.25);
}

.process-step:hover {
    border-color: var(--service-color);
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(var(--service-rgb, 212, 175, 55), 0.2);
}

.process-step:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--service-gradient);
}

.step-title {
    font-weight: 800;
    color: var(--service-color-dark);
    margin-bottom: 15px;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-step p {
    color: #546e7a;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.5;
}


.service-cta {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease-out;
}

@media (max-width: 768px) {
    .service-cta {
        flex-direction: column;
        align-items: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1.15rem;
    border: none;
    cursor: pointer;
    min-width: 260px;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--service-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--service-gradient);
    color: white;
    box-shadow: 0 10px 40px rgba(var(--service-rgb, 212, 175, 55), 0.3);
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(var(--service-rgb, 212, 175, 55), 0.4);
}

.btn-secondary {
    background: white;
    color: var(--service-color);
    border: 3px solid var(--service-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: white;
    color: var(--service-color-dark);
}

.btn i {
    margin-right: 15px;
    font-size: 1.3rem;
}


.seo-badge {
    display: inline-block;
    background: var(--service-gradient);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    margin: 10px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(var(--service-rgb, 63, 81, 181), 0.2);
    transition: all 0.3s ease;
}

.seo-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(var(--service-rgb, 63, 81, 181), 0.3);
}

.seo-badge i {
    margin-right: 8px;
}


.why-choose-services {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e8f7 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.reason-card {
    background: white;
    padding: 50px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--service-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.reason-card:hover::before {
    opacity: 0.05;
}

.reason-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.reason-icon {
    font-size: 60px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.reason-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.reason-card p {
    color: #666;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}


.faq-section {
    background: white;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 16px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.faq-item.active {
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    border-color: var(--secondary-color);
}

.faq-question {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
    background: white;
}

.faq-question:hover {
    color: var(--secondary-color);
    background: rgba(212, 175, 55, 0.05);
}

.faq-question::after {
    content: '›';
    font-size: 2rem;
    font-weight: 300;
    transition: all 0.3s ease;
    transform: rotate(90deg);
    color: var(--secondary-color);
}

.faq-item.active .faq-question::after {
    transform: rotate(-90deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 1000px;
}

.faq-answer p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}


.services-testimonials {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e8f7 100%);
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.6s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-item {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.testimonial-content {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-style: italic;
    position: relative;
    padding: 0 30px;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    color: var(--secondary-color);
    font-size: 3rem;
    opacity: 0.5;
    position: absolute;
    top: -20px;
    left: 0;
}

.testimonial-content::after {
    left: auto;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 700;
}

.author-info p {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-nav button {
    background: white;
    border: 3px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.testimonial-dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}



.about-final-cta {
    background: var(--gradient-dark);
    color: var(--accent-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-final-cta .section-title h2 {
    color: var(--secondary-color);
}

.about-final-cta .section-title p {
    color: #ccc;
}

.btn {
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

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) {
    .services-hero h1 {
        font-size: 3rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .service-detail-section {
        padding: 50px 40px;
    }
    
    .service-detail-title h3 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .nav-links,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .service-detail-icon {
        margin-right: 0;
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .floating-icons {
        gap: 25px;
    }
    
    .floating-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
    
    .services-grid,
    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .process-steps {
        gap: 25px;
    }
    
    .process-step {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 5%;
    }
    
    .services-hero {
        min-height: 60vh;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .service-detail-section {
        padding: 40px 30px;
    }
    
    .service-detail-title h3 {
        font-size: 1.8rem;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .back-to-top {
        bottom: 100px;
        right: 25px;
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 24px;
        bottom: 25px;
        right: 25px;
    }
    
    .testimonial-item {
        padding: 40px 30px;
    }
    
    .testimonial-content {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-detail-section {
        padding: 35px 25px;
        margin-bottom: 50px;
    }
    
    .service-content {
        gap: 40px;
    }
    
    .service-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .service-detail-title h3 {
        font-size: 1.6rem;
    }
    
    .service-features li {
        font-size: 1rem;
    }
    
    .service-features li strong {
        min-width: auto;
        display: block;
        margin-bottom: 5px;
    }
    
    .reason-card {
        padding: 40px 25px;
    }
    
    .floating-icons {
        gap: 15px;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .services-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


.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;
    }
}


.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}


@media print {
    .whatsapp-float,
    .back-to-top,
    .mobile-menu-btn,
    .testimonial-nav,
    .service-cta {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .service-detail-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}