/* Base styles and variables */
:root {
    --primary-color: #E67716; /* Оранжево с кафеникав оттенък */
    --secondary-color: #1c3d5a; /* Тъмно синьо за стабилност и елегантност */
    --light-color: #f8f9fa; /* Светло сиво-бяло за чистота и простор */
    --dark-color: #212529; /* Тъмно сиво за текстове и контраст */
    --gray-color: #6c757d; /* Нюанс на сиво за допълнителни елементи */
    --success-color: #28a745; /* Зелено за успех и потвърждение */
    --font-primary: 'Inter', sans-serif; /* Премиум шрифт за основен текст */
    --font-secondary: 'Raleway', sans-serif; /* Лек шрифт за подзаглавия и акценти */
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --max-width: 1400px; /* Maximum width for the website content */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    position: relative;
}

/* Background glow effect */
.background-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.03) 0%, rgba(255, 107, 53, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Container for max-width */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

p {
    margin-bottom: 1rem;
}

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

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

section {
    padding: 5rem 2rem;
}

/* Header and Navigation */
header {
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Намален padding за по-нисък хедър */
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0; /* Намален padding за по-нисък хедър */
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
}

@media (max-width: 768px) {
    nav.scrolled {
        padding: 0.4rem 0;
    }
}

@media (max-width: 480px) {
    nav.scrolled {
        padding: 0.3rem 0;
    }
}

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

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

.logo img {
    height: 40px; /* Намален размер на логото */
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.nav-links a:not(.cta-button):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.cta-button):hover:after {
    width: 100%;
}

.nav-links a.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.nav-links a.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.close-menu {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Buttons Styling */
.primary-button, .secondary-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
}

.primary-button {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
}

.secondary-button {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.secondary-button:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Modal Close Button */
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f5f5f5;
}

.close-modal:hover {
    color: var(--primary-color);
    background-color: #eee;
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-video {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 500px;
}

.hero-video img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.intro-video {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.hero-video:hover .intro-video,
.hero-video:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-video:hover .video-overlay {
    opacity: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trusted-by {
    margin-top: 1.5rem;
    margin-bottom: 0;
    display: inline-block;
}

.trusted-link {
    color: rgb(106, 106, 106);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.trusted-link:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: var(--transition);
}

.trusted-link:hover {
    transform: translateY(-3px);
    color:rgb(34, 34, 34);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.trusted-link:hover:after {
    transform: translateY(-50%) rotate(-180deg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.svg') repeat;
    opacity: 0.03;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero-video {
        margin-left: 0;
    }
    
    .hero-video img {
        max-width: 400px;
    }
    
    .intro-video {
        max-width: 400px;
    }
}

/* Mid-hero section */
.mid-hero {
    position: relative;
    height: 500px;
    background-image: url('../images/hero2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 4rem 0;
}

.mid-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.mid-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.mid-hero h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: white;
}

.mid-hero h2:after {
    display: none;
}

@media (max-width: 768px) {
    .mid-hero {
        height: 400px;
    }
    
    .mid-hero h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .mid-hero {
        height: 300px;
    }
    
    .mid-hero h2 {
        font-size: 1.8rem;
    }
}

/* How it works section */
.how-it-works {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.step-image {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.step:hover .step-image img {
    transform: scale(1.05);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 1.5rem;
}

.additional-info {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    font-size: 1.2rem;
}

.additional-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

@media (max-width: 1200px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step {
        padding: 1.5rem;
    }
    

}

/* Мобилен изглед за секцията "Как работи" */
@media (max-width: 768px) {
    .how-it-works {
        padding: 2rem 0;
    }
    
    .steps-container {
        display: block;
    }
    
    .step {
        margin-bottom: 3rem;
        min-height: 90vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 1.5rem;
    }
    
    .step h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }
    
    .step p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .step-image {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .step-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 70vh;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .step {
        min-height: 85vh;
        padding: 1.2rem;
    }
    
    .step h3 {
        font-size: 1.4rem;
    }
    
    .step p {
        font-size: 1rem;
    }
    
    .step-image img {
        max-height: 65vh;
    }
}

/* App Showcase Section */
.app-showcase {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.swiper-container {
    width: 100%;
    padding: 3rem 0;
    overflow: hidden;
}

.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background-color: #222;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: left;
}

.screen-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.screen-overlay p {
    font-size: 0.9rem;
    margin: 0;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.clients-swiper {
    width: 100%;
    padding-bottom: 40px;
}

.clients-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.clients-swiper .partner-logo {
    max-width: 120px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-swiper .partner-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.clients-swiper .swiper-pagination {
    bottom: 0;
}

.clients-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
}

.clients-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .clients-swiper .partner-logo {
        max-width: 100px;
    }
    
    .clients-swiper {
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .clients-swiper .partner-logo {
        max-width: 80px;
    }
    
    .clients-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* Benefits section */
.benefits {
    background-color: #f8f9fa;
    position: relative;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-icon.revenue {
    background-color: #4CAF50; /* Green */
}

.benefit-icon.speed {
    background-color: #2196F3; /* Blue */
}

.benefit-icon.staff {
    background-color: #9C27B0; /* Purple */
}

.benefit-icon.accuracy {
    background-color: #FF5722; /* Deep Orange */
}

.benefit-icon.experience {
    background-color: #FFC107; /* Amber */
}

.benefit-icon.data {
    background-color: #607D8B; /* Blue Grey */
}

.benefit-icon.multilingual {
    background-color: #3F51B5; /* Indigo */
}

.benefit-icon.tablet {
    background-color: #009688; /* Teal */
}

.benefit-content {
    text-align: left;
}

.benefit h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.benefit p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-container {
        grid-template-columns: 1fr;
    }
}

/* Features section */
.features {
    background-color: white;
    position: relative;
    padding: 5rem 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-block {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border-top: 5px solid;
}

.feature-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.order-block {
    border-color: #2196F3; /* Blue */
}

.payment-block {
    border-color: var(--primary-color); /* Orange */
}

.feedback-block {
    border-color: #4CAF50; /* Green */
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.order-block .feature-icon {
    background-color: #2196F3; /* Blue */
}

.payment-block .feature-icon {
    background-color: var(--primary-color); /* Orange */
}

.feedback-block .feature-icon {
    background-color: #4CAF50; /* Green */
}

.feature-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.order-block .feature-list li:before {
    color: #2196F3; /* Blue */
}

.payment-block .feature-list li:before {
    color: var(--primary-color); /* Orange */
}

.feedback-block .feature-list li:before {
    color: #4CAF50; /* Green */
}

.feature-description {
    margin-top: auto;
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}

/* For whom section */
.for-whom {
    background-color: #f8f9fa;
    position: relative;
    padding: 5rem 0;
}

.for-whom-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.venue-type {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.venue-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.venue-image {
    height: 200px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-type:hover .venue-image img {
    transform: scale(1.1);
}

.venue-type h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.venue-type p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .for-whom-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .for-whom-container {
        grid-template-columns: 1fr;
    }
}

/* Trust Section */
.trust-section {
    background-color: white;
    padding: 5rem 0;
    text-align: center;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
}

.partner-logo {
    max-width: 120px;
    transition: var(--transition);
    filter: grayscale(70%);
    opacity: 0.7;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-5px);
}

.partner-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partners-logos {
        gap: 1.5rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partner-logo {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-logo {
        max-width: 100%;
        min-width: auto;
    }
}

/* Premium Testimonial Section */
.testimonial-premium {
    background: linear-gradient(135deg, #f9f9f7, #fefefe);
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .testimonial-box {
    max-width: 1100px;
    width: 100%;
    padding: 60px 40px;
    position: relative;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }
  
  .testimonial-box::before {
    content: "“";
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 100px;
    color: #F97316;
    font-family: serif;
    opacity: 0.12;
    z-index: 0;
  }
  
  .testimonial-text-container {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
  }
  
  .testimonial-text,
  .testimonial-highlight {
    font-family: var(--font-primary);
    font-weight: 800;
  }
  
  .testimonial-text {
    font-size: 38px;
    line-height: 1.4;
    font-weight: 400;
    color: #000;
    letter-spacing: -0.015em;
    margin-bottom: 60px;
  }
  
  .testimonial-text strong {
    font-weight: 800;
  }
  
  .testimonial-author-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .testimonial-author {
    text-align: left;
    flex: 1;
  }
  
  .testimonial-author .author-name {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 36px;
    color: #000;
    line-height: 1.2;
  }
  
  .testimonial-author .author-title {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    margin-top: 8px;
    max-width: 480px;
  }
  
  .testimonial-logo {
    flex: 0 0 auto;
  }
  
  .testimonial-logo img {
    height: 120px;
    margin-left: 40px;
  }
  
  @media (max-width: 768px) {
    .testimonial-text {
      font-size: 28px;
    }
  
    .testimonial-author-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .testimonial-author .author-name {
      font-size: 28px;
    }
  
    .testimonial-author .author-title {
      font-size: 16px;
      max-width: 100%;
    }
  
    .testimonial-logo {
      margin-top: 30px;
      margin-left: 0;
    }
  }

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-section h2 {
    color: white;
}

.cta-section h2:after {
    background: white;
}

.cta-section .primary-button {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-section .primary-button:hover {
    background-color: transparent;
    color: white;
}

.cta-section .secondary-button {
    color: white;
    border-color: white;
}

.cta-section .secondary-button:hover {
    background-color: white;
    color: var(--primary-color);
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem; /* Намален padding отгоре */
        transition: right 0.3s ease;
        z-index: 99;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .close-menu {
        display: block;
    }
    
    .nav-links a {
        margin: 0.8rem 0;
        font-size: 1.1rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Form styles */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo {
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4:after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    margin-top: 8px;
}

.footer-column a {
    display: block;
    color: #ccc;
    margin-bottom: 0.75rem;
}

.footer-column a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

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

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

/* Success message */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero-video {
        margin-left: 0;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .phone-frame {
        width: 240px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .steps-container, 
    .benefits-container, 
    .features-container, 
    .business-types, 
    .testimonials-container,
    .partners-logos {
        grid-template-columns: 1fr;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-column {
        margin-bottom: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .step, .benefit, .feature, .business-type, .testimonial {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 5% 1rem;
        padding: 1.5rem;
    }
    
    nav {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .benefit i, .feature i, .business-type i {
        font-size: 2rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .phone-frame {
        width: 200px;
        height: 420px;
    }
    
    .screen-overlay h3 {
        font-size: 1rem;
    }
    
    .screen-overlay p {
        font-size: 0.8rem;
    }
    
    .partner-logo {
        flex: 0 0 100px;
        height: 120px;
    }
}

/* Responsive improvements */
@media (max-width: 768px) {
    /* Navigation improvements */
    .nav-container {
        padding: 1rem;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1.5rem;
        z-index: 100;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 4rem 2rem 2rem; /* Намален padding отгоре */
        transition: right 0.3s ease;
        z-index: 99;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Hero section improvements */
    .hero .container {
        flex-direction: column;
        padding: 2rem 1rem;
    }
    
    .hero-content, .hero-video {
        width: 100%;
        padding: 0;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
        margin: 1rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
    
    /* Section improvements */
    section {
        padding: 3rem 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    /* Steps section improvements */
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    /* Benefits section improvements */
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .benefit {
        margin-bottom: 1.5rem;
    }
    
    /* Features section improvements */
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .feature {
        margin-bottom: 2rem;
    }
    
    /* Business types improvements */
    .business-types-container {
        grid-template-columns: 1fr;
    }
    
    .business-type {
        margin-bottom: 1.5rem;
    }
    
    /* Partners/Clients section improvements */
    .trust-section {
        padding: 3rem 1rem;
    }
    
    .partners-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .partner-logo {
        max-width: 100%;
    }
    
    /* Testimonial section improvements */
    .testimonial-premium {
        padding: 3rem 1rem;
    }
    
    .testimonial-box {
        padding: 2rem 1rem;
    }
    
    .testimonial-text {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .testimonial-author-container {
        flex-direction: column;
    }
    
    .testimonial-author {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author .author-name {
        font-size: 28px;
        text-align: center;
    }
    
    .testimonial-author .author-title {
        font-size: 16px;
        text-align: center;
        margin: 0 auto;
    }
    
    .testimonial-logo {
        margin: 0 auto;
    }
    
    .testimonial-logo img {
        height: 100px;
        margin: 0 auto;
    }
    
    /* CTA section improvements */
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-section .cta-buttons a {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    /* Footer improvements */
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 1.5rem;
        text-align: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-text {
        font-size: 20px;
    }
    
    .testimonial-author .author-name {
        font-size: 24px;
    }
    
    .testimonial-author .author-title {
        font-size: 14px;
    }
    
    .testimonial-logo img {
        height: 80px;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}

/* Header and Navigation improvements */
@media (max-width: 768px) {
    header {
        padding-top: 60px; /* Още по-малък padding за мобилни */
    }
    
    nav {
        padding: 0.5rem 0; /* Намален padding за мобилни */
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo img {
        height: 42px; /* Още по-малко лого за мобилни */
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1.5rem;
        z-index: 100;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 4rem 2rem 2rem; /* Намален padding отгоре */
        transition: right 0.3s ease;
        z-index: 99;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .close-menu {
        display: block;
        top: 1rem; /* По-близо до горния край */
    }
    
    .nav-links a {
        margin: 0.8rem 0;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding-top: 50px; /* Още по-малък padding за малки мобилни */
    }
    
    nav {
        padding: 0.4rem 0;
    }
    
    .logo img {
        height: 28px;
    }
}

/* Специален стил за логото на Raffy */
.raffy-logo img {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 5px;
}

/* Swiper styles for clients */
.clients-swiper {
    width: 100%;
    padding-bottom: 40px;
}

.clients-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.clients-swiper .partner-logo {
    max-width: 120px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-swiper .partner-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.clients-swiper .swiper-pagination {
    bottom: 0;
}

.clients-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
}

.clients-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .clients-swiper .partner-logo {
        max-width: 100px;
    }
    
    .clients-swiper {
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .clients-swiper .partner-logo {
        max-width: 80px;
    }
    
    .clients-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* Tooltip styles */
.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.info-icon {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tooltip-container:hover .info-icon {
    color: var(--secondary-color);
}

.tooltip-text {
    visibility: hidden;
    width: 250px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 100;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
    .tooltip-text {
        width: 200px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .tooltip-text {
        width: 180px;
        font-size: 0.75rem;
    }
}

/* AOS анимации */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}