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

:root {
    /* Colors */
    --primary-blue: #0088FF;
    --primary-teal: #00D4AA;
    --primary-orange: #FFA500;
    --primary-purple: #A855F7;
    --primary-red: #EF4444;
    --charcoal: #2D3748;
    --dark-gray: #1A202C;
    --light-gray: #F7FAFC;
    --white: #FFFFFF;
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --border-color: #E2E8F0;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: 'Rubik', sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body[dir="ltr"] {
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== Language Switcher ===== */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

[dir="ltr"] .language-switcher {
    right: auto;
    left: 20px;
}

.language-switcher button {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 136, 255, 0.1);
}

.language-switcher button:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.3);
}

[dir="ltr"] .lang-he {
    display: inline;
}

[dir="ltr"] .lang-en {
    display: none;
}

[dir="rtl"] .lang-he {
    display: none;
}

[dir="rtl"] .lang-en {
    display: inline;
}

/* ===== Header ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

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

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

/* Responsive logo */
@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--primary-blue);
}

.nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-button:hover {
    background: #0066CC;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 255, 0.3);
}

/* ===== Hero Section ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.1) 0%, rgba(0, 136, 255, 0) 70%);
}

.hero-circle-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}

[dir="ltr"] .hero-circle-1 {
    right: auto;
    left: -100px;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -50px;
}

[dir="ltr"] .hero-circle-2 {
    left: auto;
    right: -50px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--primary-teal);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.star {
    font-size: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-title .highlight {
    color: var(--primary-blue);
    display: block;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: #0066CC;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 255, 0.3);
}

.btn-primary .arrow {
    transition: var(--transition);
}

[dir="rtl"] .btn-primary .arrow {
    transform: rotate(180deg);
}

.btn-primary:hover .arrow {
    transform: translateX(-3px);
}

[dir="rtl"] .btn-primary:hover .arrow {
    transform: rotate(180deg) translateX(-3px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 255, 0.2);
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.feature-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Hero Image - Laptop Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-mockup {
    width: 100%;
    max-width: 500px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.laptop-screen {
    background: #2D3748;
    border-radius: 15px 15px 0 0;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.laptop-screen::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 15px;
    background: linear-gradient(to bottom, #2D3748, #1A202C);
    border-radius: 0 0 10px 10px;
}

.mockup-content {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.mockup-header {
    background: #EDF2F7;
    padding: 12px;
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E0;
}

.mockup-dots span:nth-child(1) {
    background: #FC8181;
}

.mockup-dots span:nth-child(2) {
    background: #F6E05E;
}

.mockup-dots span:nth-child(3) {
    background: #68D391;
}

.mockup-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-element {
    border-radius: 6px;
    animation: pulse 2s ease-in-out infinite;
}

.mockup-nav {
    height: 15px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
}

.mockup-hero {
    height: 60px;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E0 100%);
}

.mockup-content-1 {
    height: 30px;
    width: 70%;
    background: #EDF2F7;
}

.mockup-content-2 {
    height: 30px;
    width: 50%;
    background: #F7FAFC;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.service-icon svg {
    width: 35px;
    height: 35px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== Portfolio Section ===== */
.portfolio {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
    display: none;
}

.portfolio-overlay {
    display: none;
}

.btn-view {
    display: none;
}

.portfolio-info {
    padding: 0;
}

.portfolio-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.portfolio-info p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.portfolio-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F7FAFC 0%, #FFFFFF 100%);
}

.about-container {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: column;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

[dir="ltr"] .about-container {
    flex-direction: column;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 450px;
    min-width: auto;
    flex-shrink: 0;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.about-image-badge {
    position: absolute;
    bottom: 15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

[dir="ltr"] .about-image-badge {
    right: auto;
    left: 30px;
}

.about-content {
    flex: 1;
    min-width: 0;
    padding: 0 30px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px;
    max-width: 100%;
    width: 100%;
}

[dir="rtl"] .about-content {
    flex: 1;
    min-width: 0;
    padding: 0 30px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px;
}

[dir="ltr"] .about-content {
    flex: 1;
    min-width: 0;
    padding: 0 30px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px;
}

.about-badge {
    display: inline-block;
    background: rgba(0, 136, 255, 0.1);
    color: var(--primary-blue);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center !important;
    width: 100%;
}

[dir="rtl"] .about-title {
    text-align: center !important;
}

[dir="ltr"] .about-title {
    text-align: center !important;
}

.about-title .highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-align: center !important;
    width: 100%;
    max-width: 650px;
}

[dir="rtl"] .about-description {
    text-align: center !important;
}

[dir="ltr"] .about-description {
    text-align: center !important;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 2px solid #0069f1;
    border-bottom: 2px solid #0069f1;
    width: 100%;
}

.stat-item {
    text-align: center !important;
}

[dir="rtl"] .stat-item {
    text-align: center !important;
}

.about-content .btn {
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #2D3748;
    font-weight: 600;
}

/* ===== Process Dark Section ===== */
.process-dark {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(26, 32, 44, 0.95) 100%), 
                url('img/process-background.png') center/cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

[dir="ltr"] .process-dark::before {
    right: auto;
    left: -20%;
}

.process-dark-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.process-dark-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 212, 170, 0.2);
    color: var(--primary-teal);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.process-dark-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.process-dark-title .highlight-teal {
    color: var(--primary-teal);
    display: block;
}

.process-dark-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.process-dark-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.process-dark-step {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.process-dark-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
    transform: translateX(-5px);
}

[dir="ltr"] .process-dark-step:hover {
    transform: translateX(5px);
}

.step-badge-blue {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.3);
}

.step-badge-teal {
    width: 45px;
    height: 45px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.step-dark-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.step-dark-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.process-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 8px;
}
/* desktop view */
.stat-label {
    font-size: 14px;
    color: rgba(43, 188, 255, 0.7);
}

/* Devices Mockup */
.process-dark-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.devices-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

.device-desktop {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    background: #1A202C;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.device-screen {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    height: 240px;
}

.screen-header {
    background: #EDF2F7;
    padding: 10px;
}

.screen-dots {
    display: flex;
    gap: 5px;
}

.screen-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E0;
}

.screen-dots span:nth-child(1) {
    background: #FC8181;
}

.screen-dots span:nth-child(2) {
    background: #F6E05E;
}

.screen-dots span:nth-child(3) {
    background: #68D391;
}

.screen-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.screen-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.screen-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

.screen-image {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    margin-top: 10px;
}

.device-tablet {
    position: absolute;
    bottom: 80px;
    left: 20px;
    width: 180px;
    height: 240px;
    background: #2D3748;
    border-radius: 15px;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

[dir="ltr"] .device-tablet {
    left: auto;
    right: 20px;
}

.device-screen-small {
    background: var(--white);
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.screen-content-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.device-phone {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 100px;
    height: 180px;
    background: #1A202C;
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 4;
}

[dir="ltr"] .device-phone {
    right: auto;
    left: 30px;
}

.device-screen-mobile {
    background: var(--white);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.screen-content-mobile {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.satisfaction-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.badge-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
}

.badge-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ===== About / Process Section ===== */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-text .section-title {
    text-align: right;
    margin-bottom: 0;
}

[dir="ltr"] .about-text .section-title {
    text-align: left;
}

.about-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 15px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 15px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 136, 255, 0.3);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #FFA500;
    font-size: 20px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 16px;
}

.author-role {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info .section-title {
    text-align: right;
    margin-bottom: 0;
}

[dir="ltr"] .contact-info .section-title {
    text-align: left;
}

.contact-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.contact-method:hover .method-icon {
    transform: scale(1.1);
}

.contact-method:hover .method-label,
.contact-method:hover a {
    color: var(--white);
}

.method-icon {
    font-size: 30px;
    transition: var(--transition);
}

.method-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 3px;
}

.contact-method a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.availability {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 15px;
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 14px;
}

.available-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-teal);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 136, 255, 0.1);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== CTA Section ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    max-width: 700px;
}

.cta-content p {
    font-size: 20px;
    opacity: 0.95;
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
    background: var(--white);
    color: var(--primary-blue);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    background: var(--dark-gray);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-top: 15px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li,
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===== Chat Widget ===== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

[dir="ltr"] .chat-widget {
    right: auto;
    left: 30px;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 136, 255, 0.4);
    transition: var(--transition);
    position: relative;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 136, 255, 0.5);
}

.chat-bubble svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.chat-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-red);
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--white);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

[dir="ltr"] .chat-window {
    right: auto;
    left: 0;
}

.chat-window.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

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

.chat-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.chat-name {
    font-weight: 700;
    font-size: 16px;
}

.chat-status {
    font-size: 13px;
    opacity: 0.9;
}

.chat-close {
    margin-right: auto;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .chat-close {
    margin-right: 0;
    margin-left: auto;
}

.chat-body {
    padding: 20px;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
    background: var(--light-gray);
}

.chat-message {
    display: flex;
    margin-bottom: 15px;
}

.message-content {
    background: var(--white);
    padding: 12px 16px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    word-wrap: break-word;
}

.user-message {
    justify-content: flex-end;
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    color: var(--white);
}

.typing-indicator .message-content {
    display: flex;
    gap: 4px;
    padding: 12px 20px;
}

.typing-dot {
    font-size: 8px;
    animation: typing 1.4s infinite;
    opacity: 0.4;
}

.typing-dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        opacity: 0.4;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-8px);
    }
}

.chat-footer {
    padding: 15px;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    font-size: 14px;
    font-family: inherit;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.chat-send {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.chat-send:hover {
    background: #0066CC;
    transform: scale(1.05);
}

.chat-send svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-container,
    .contact-content,
    .process-dark-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    [dir="ltr"] .about-container {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        max-width: 400px;
        min-width: auto;
        margin: 0 auto;
    }
    
    .about-image img {
        height: 450px;
        width: 100%;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .process-dark-image {
        order: -1;
    }
    
    .devices-mockup {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .device-desktop {
        width: 320px;
    }
    
    .device-tablet {
        width: 150px;
        height: 200px;
    }
    
    .device-phone {
        width: 80px;
        height: 150px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title,
    .process-dark-title,
    .about-title {
        font-size: 32px;
    }
    
    .about-section {
        padding: 40px 0 50px;
    }
    
    .about-container {
        padding: 0;
        gap: 25px;
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 0 20px;
        box-sizing: border-box;
        margin-bottom: 10px;
    }
    
    .about-image img {
        height: 300px;
        width: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 15px;
    }
    
    .about-image-badge {
        right: 30px;
        bottom: 15px;
        font-size: 13px;
        padding: 10px 18px;
    }
    
    [dir="ltr"] .about-image-badge {
        left: 30px;
        right: auto;
    }
    
    .about-content {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .about-title {
        font-size: 26px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 5px;
    }
    
    [dir="ltr"] .about-title {
        text-align: center;
    }
    
    .about-description {
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 10px;
    }
    
    [dir="ltr"] .about-description {
        text-align: center;
    }
    
    .about-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin: 0 auto 10px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px 0;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
        color: #0beff7 !important;
    }
    
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .chat-window {
        width: 300px;
    }
    
    .process-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .devices-mockup {
        height: 350px;
        max-width: 350px;
    }
    
    .device-desktop {
        width: 280px;
        top: 30px;
    }
    
    .device-screen {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        top: 70px;
        right: 10px;
        z-index: 10000;
    }
    
    [dir="ltr"] .language-switcher {
        left: 10px;
        right: auto;
    }
    
    .language-switcher button {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title,
    .process-dark-title {
        font-size: 28px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 25px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .process-dark {
        padding: 60px 0;
    }
    
    .process-dark-steps {
        gap: 15px;
    }
    
    .process-dark-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .process-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .devices-mockup {
        height: 300px;
        max-width: 280px;
    }
    
    .device-desktop {
        width: 220px;
    }
    
    .device-tablet {
        width: 120px;
        height: 160px;
        bottom: 60px;
    }
    
    .device-phone {
        width: 70px;
        height: 120px;
    }
    
    .satisfaction-badge {
        padding: 10px 15px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ===== Smooth Scrolling ===== */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.portfolio-item,
.testimonial-card,
.process-step {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

/* ===== Custom Notification Toast ===== */
.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 350px;
    max-width: 450px;
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-right: 4px solid var(--primary-blue);
}

.notification-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-toast.success {
    border-right-color: #10b981;
}

.notification-toast.error {
    border-right-color: #ef4444;
}

.notification-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.notification-message {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.notification-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .notification-toast {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}
