:root {
    /* Modern, vibrant color palette - Updated with more vibrant colors */
    --primary-color: #5e60ce;
    --secondary-color: #6930c3;
    --accent-color: #64dfdf;
    --accent-secondary: #fb5607;
    --text-color: #2b2d42;
    --light-text: #ffffff;
    --background-color: #f8f9fa;
    --light-gray: #e9ecef;
    --dark-gray: #495057;
    
    /* Enhanced UI elements with more modern touches */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-shadow: 0 15px 35px rgba(94, 96, 206, 0.1);
    --hover-shadow: 0 20px 40px rgba(94, 96, 206, 0.15);
    --border-radius: 16px;
    --button-radius: 50px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --gradient-primary: linear-gradient(135deg, #5e60ce 0%, #6930c3 100%);
    --gradient-accent: linear-gradient(135deg, #64dfdf 0%, #fb5607 100%);
    --gradient-light: linear-gradient(120deg, rgba(94, 96, 206, 0.1) 0%, rgba(251, 86, 7, 0.1) 100%);
    --glass-effect: rgba(255, 255, 255, 0.25);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --glass-blur: blur(10px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.8;
    direction: rtl;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
}

p {
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Enhanced Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

/* Enhanced Logo Styling */
.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-img {
    width: 45px;
    height: 45px;
    margin-left: 12px;
    border-radius: 8px;
}

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

.logo h1 {
    color: var(--primary-color);
    margin: 0;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo p {
    color: var(--secondary-color);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 15px;
    border-radius: var(--button-radius);
    position: relative;
    overflow: hidden;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    transform: translateX(-100%);
    transition: var(--transition);
}

nav ul li a:hover::after, nav ul li a.active::after {
    transform: translateX(0);
}

/* Modern Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-text) !important;
    padding: 14px 32px;
    border-radius: var(--button-radius);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(94, 96, 206, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(94, 96, 206, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary.loading {
    position: relative;
    color: transparent !important;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 2px solid var(--light-text);
    animation: spin 0.8s linear infinite;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color) !important;
    padding: 12px 28px;
    border-radius: var(--button-radius);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    margin-right: 15px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text) !important;
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
}

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

/* Enhanced Hero Section */
.hero {
    padding: 180px 0 120px;
    background: var(--gradient-primary);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><defs><pattern id="pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,128L48,133.3C96,139,192,149,288,176C384,203,480,245,576,229.3C672,213,768,139,864,128C960,117,1056,171,1152,186.7C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: top;
    z-index: 2;
}

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

.hero-content {
    max-width: 600px;
    position: relative;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 0;
    animation: float 6s infinite ease-in-out;
}

.float-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.float-2 {
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: 20px;
    animation-delay: 1s;
}

.float-3 {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 60px;
    animation-delay: 2s;
}

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

/* Enhanced Hero Text Layout */
.tagline {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    padding: 5px 0;
}

.tagline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    animation: slide-in 1.5s forwards ease-out;
}

@keyframes slide-in {
    100% {
        transform: translateX(0);
    }
}

.main-title {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    font-weight: 400;
    opacity: 0.95;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero Graphics */
.graphic-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(0, -50%);
    width: 50%;
    height: 400px;
}

.hero-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

.chart-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background: var(--accent-secondary);
    top: 60px;
    right: 30px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    bottom: 50px;
    left: 40px;
    animation: float 7s ease-in-out infinite 1s;
}

.circle-3 {
    width: 180px;
    height: 180px;
    background: var(--accent-color);
    top: 150px;
    right: 180px;
    animation: float 9s ease-in-out infinite 0.5s;
}

.chart-label {
    position: absolute;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.label-1 {
    top: 20px;
    right: 50px;
}

.label-2 {
    bottom: 30px;
    left: 50px;
}

.label-3 {
    top: 100px;
    left: 100px;
}

.hero-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(0, -50%);
    max-width: 500px;
    width: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.2));
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.highlight:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 5px;
    left: 0;
    background-color: rgba(76, 201, 240, 0.3);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
    z-index: -1;
}

.highlight.animated:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Circle Background Elements */
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    right: -100px;
    top: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    left: -50px;
    bottom: -50px;
}

/* Section General Styles */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-header h2::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(76, 201, 240, 0.15);
    border-radius: 50%;
    z-index: -1;
    top: -10px;
    right: -15px;
}

.divider {
    height: 5px;
    width: 80px;
    background: var(--gradient-accent);
    margin: 0 auto 25px;
    border-radius: 3px;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-gray);
}

/* About Section */
.about {
    background-color: var(--light-text);
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(76, 201, 240, 0.1);
    border-radius: 50%;
    z-index: -1;
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--dark-gray);
}

/* About Section Graphics */
.about-graphic {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    top: 20px;
    right: 20px;
    border-radius: var(--border-radius);
    opacity: 0.1;
    z-index: -1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.team-card {
    width: 160px;
    height: 160px;
    background: var(--light-text);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.team-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    top: 0;
    left: 0;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    color: var(--light-text);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover h4 {
    color: var(--light-text);
}

.team-card:hover .team-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-text);
}

.team-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-card h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    transition: var(--transition);
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 30px;
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(67, 97, 238, 0.05);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.stat-item h3 {
    color: var(--accent-secondary);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
}

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

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(67, 97, 238, 0.03), transparent);
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--hover-shadow);
    background: var(--gradient-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-accent);
    transition: var(--transition);
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--gradient-light);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--light-text);
    font-size: 2.2rem;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(105, 48, 195, 0.3);
    transform: rotate(0deg);
}

.service-card:hover .service-icon {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(251, 86, 7, 0.4);
    border-radius: 50%;
}

.service-icon i {
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    transform: rotate(-45deg);
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: inherit;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    top: -5%;
    left: -5%;
    animation: spin 20s linear infinite;
}

.service-card h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: var(--transition);
}

.service-card p {
    transition: var(--transition);
}

.service-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-secondary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 2;
}

.services-grid .service-card:first-child::after {
    content: 'המומלץ ביותר';
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-secondary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 2;
}

/* Service Features Styles */
.service-features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.service-features span {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.service-card:hover .service-features i {
    color: var(--light-text);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-secondary);
    color: var(--light-text);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 0 var(--border-radius) 0 var(--border-radius);
    z-index: 2;
    animation: pulse 2s infinite;
}

/* Why Us Section */
.why-us {
    background-color: var(--light-text);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    right: -200px;
    bottom: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(76, 201, 240, 0.05);
    z-index: 0;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature {
    flex-basis: calc(25% - 40px);
    min-width: 250px;
    text-align: center;
    padding: 40px 20px;
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(67, 97, 238, 0.05);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.feature::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    bottom: 0;
    left: 0;
    transition: var(--transition);
    z-index: -1;
    opacity: 0.05;
}

.feature:hover::before {
    height: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--light-text);
    font-size: 1.8rem;
    transform: rotate(45deg);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(76, 201, 240, 0.3);
}

.feature-icon i {
    transform: rotate(-45deg);
}

.feature:hover .feature-icon {
    transform: rotate(0);
    background-color: var(--accent-secondary);
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(247, 37, 133, 0.4);
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Enhanced Testimonials Section */
.testimonials {
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(76, 201, 240, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin: 0 -15px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.testimonial {
    flex: 0 0 calc(33.333% - 30px);
    margin: 0 15px;
    min-width: 320px;
    scroll-snap-align: start;
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(67, 97, 238, 0.05);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.quote {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    color: var(--dark-gray);
    line-height: 1.8;
}

.quote:before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -30px;
    right: -15px;
    color: rgba(67, 97, 238, 0.1);
    font-family: serif;
}

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

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    overflow: hidden;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 2.5rem;
}

.client-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 20px;
    border: 3px solid var(--accent-color);
    padding: 3px;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.client-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.client-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Contact Section */
.contact {
    background: var(--gradient-primary);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><defs><pattern id="pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
    z-index: 0;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 60px;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.contact-info h2, .contact-info .divider {
    color: var(--light-text);
    text-align: right;
    margin-right: 0;
}

.contact-info .divider {
    margin: 20px 0;
    background: var(--accent-color);
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-item i {
    margin-left: 20px;
    font-size: 1.3rem;
}

.contact-graphic {
    margin-top: 30px;
    text-align: center;
}

.contact-icon-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.contact-icon-container i {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-icon-container i:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-promise {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.social-media {
    display: flex;
    margin-top: 40px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    margin-left: 15px;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
    transform: translateY(-5px) rotate(10deg);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 60px;
    background-color: var(--light-text);
    color: var(--text-color);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
}

input, textarea {
    width: 100%;
    padding: 15px;
    padding-right: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

input::placeholder, textarea::placeholder {
    color: #adb5bd;
    opacity: 0.7;
}

/* Modern Form Styles */
.modern-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.floating-label {
    position: relative;
}

.floating-label input,
.floating-label textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    background-color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.floating-label input:focus,
.floating-label textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(94, 96, 206, 0.1);
    outline: none;
}

.floating-label label {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background-color: var(--light-text);
    padding: 0 5px;
    color: var(--dark-gray);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-label textarea ~ label {
    top: 25px;
}

.floating-label input:focus ~ label,
.floating-label textarea:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
    color: var(--primary-color);
    font-weight: 500;
}

.privacy-policy {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.privacy-policy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    cursor: pointer;
}

.btn-primary i {
    margin-right: 10px;
    transition: var(--transition);
}

.btn-primary:hover i {
    transform: translateX(-5px);
}

/* Contact Benefits */
.contact-benefits {
    margin: 30px 0;
}

.contact-benefit {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    margin-left: 15px;
}

.benefit-text h4 {
    margin: 0 0 5px;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.benefit-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -100px;
    width: 150%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232b2d42" fill-opacity="1" d="M0,128L48,149.3C96,171,192,213,288,234.7C384,256,480,256,576,224C672,192,768,128,864,117.3C960,107,1056,149,1152,170.7C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    transform: rotate(180deg);
}

.footer-top {
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-info {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    margin-left: 15px;
    border-radius: 8px;
}

.footer-logo-text h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--light-text);
}

.footer-logo-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.footer-links, .footer-contact, .footer-newsletter {
    flex: 1;
    min-width: 200px;
}

.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after, .footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
}

.footer-links ul, .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    transform: translateX(-5px);
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info li i {
    margin-left: 10px;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: var(--gradient-primary);
    color: var(--light-text);
    border: none;
    padding: 0 20px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gradient-accent);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Enhanced Floating Button */
.floating-button {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 65px;
    height: 65px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(247, 37, 133, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    transform-origin: center;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(247, 37, 133, 0.5);
}

/* Enhanced Tooltip */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: max-content;
    background-color: var(--secondary-color);
    color: var(--light-text);
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--secondary-color) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray); 
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    border: 3px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-secondary));
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Glass Morphism Effect */
.glass-card {
    background: var(--glass-effect);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius);
    border: var(--glass-border);
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Enhanced Cards Hover */
.enhanced-card {
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.enhanced-card:hover {
    transform: translateY(-10px);
    color: var(--light-text);
}

.enhanced-card:hover::before {
    opacity: 1;
}

.enhanced-card:hover h3,
.enhanced-card:hover h4,
.enhanced-card:hover p {
    color: var(--light-text);
}

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

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(251, 86, 7, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(251, 86, 7, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(251, 86, 7, 0);
    }
}

/* Animate on Scroll Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

/* Enhanced Responsive Styles */
@media screen and (max-width: 991px) {
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 0;
        height: 0;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        height: auto;
        padding: 30px 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 160px 0 100px;
    }

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

    .hero-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .tagline {
        font-size: 1.3rem;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    .graphic-container {
        display: none;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .about-text, .about-image {
        padding: 0;
        margin-bottom: 40px;
    }

    .team-cards {
        margin-top: 0;
    }
    
    .team-card {
        width: 120px;
        height: 120px;
    }
    
    .team-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feature {
        flex-basis: calc(50% - 40px);
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    section {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .section-header h2 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .logo {
        max-width: 75%;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo p {
        font-size: 0.8rem;
    }
    
    .footer-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .contact-icon-container {
        gap: 10px;
    }
    
    .contact-icon-container i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .feature {
        flex-basis: 100%;
    }

    .contact-info, .contact-form {
        padding: 40px 30px;
    }

    .footer-logo, .footer-links, .footer-newsletter {
        flex-basis: 100%;
        text-align: center;
    }

    .footer-links h4:after, .footer-newsletter h4:after,
    .footer-logo h3::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .footer-newsletter form {
        flex-direction: column;
    }

    .footer-newsletter input, .footer-newsletter button {
        border-radius: var(--border-radius);
    }

    .footer-newsletter button {
        margin-top: 10px;
        width: 100%;
        padding: 15px;
    }
    
    .btn-secondary {
        margin-right: 0;
        margin-top: 15px;
    }
    
    .floating-button {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
    
    .cta-banner {
        padding: 60px 0;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
    }
    
    .cta-banner p {
        font-size: 1.1rem;
    }
    
    .privacy-policy {
        align-items: flex-start;
    }
    
    .privacy-policy input[type="checkbox"] {
        margin-top: 4px;
    }
}

/* Process Timeline Styles */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding: 20px 0 60px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.process-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 40px;
    width: 4px;
    background: var(--gradient-primary);
    z-index: 0;
}

.process-step {
    display: flex;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--light-text);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(105, 48, 195, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(105, 48, 195, 0.4);
}

.process-content {
    flex: 1;
    padding: 30px;
    background: var(--glass-effect);
    margin-right: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
}

.process-step:hover .process-content {
    transform: translateX(-10px);
    box-shadow: var(--hover-shadow);
}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--light-text);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.process-step:hover .process-icon {
    background: var(--accent-secondary);
    transform: rotate(360deg);
}

.process-content h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.process-content p {
    margin: 0;
}

/* Enhanced Testimonials */
.testimonials-container {
    position: relative;
    padding: 40px 0;
}

.testimonial-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--light-text);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(105, 48, 195, 0.3);
    transition: var(--transition);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.testimonial-arrow:hover {
    background: var(--gradient-accent);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 40px;
    margin: 0 -20px;
}

.testimonial {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    scroll-snap-align: start;
    position: relative;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.testimonial-rating {
    color: #ffca28;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-result {
    background: rgba(105, 48, 195, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-right: 3px solid var(--primary-color);
}

.result-tag {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.result-value {
    font-weight: 500;
}

.testimonial-progress {
    margin-top: 30px;
    padding: 0 50px;
}

.progress-bar {
    height: 6px;
    background-color: var(--light-gray);
    border-radius: 3px;
    overflow: hidden;
}

.progress-indicator {
    height: 100%;
    width: 25%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: transform 0.3s ease;
}

/* Enhanced CTA Banner */
.cta-banner {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><defs><pattern id="pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
    pointer-events: none;
}

.cta-content {
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
}

.cta-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: var(--accent-secondary);
    color: var(--light-text);
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(251, 86, 7, 0.4);
    animation: pulse 2s infinite;
}

.cta-content h2 {
    color: var(--light-text);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content h2 span {
    display: block;
    color: var(--accent-color);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.cta-feature {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cta-feature i {
    color: var(--accent-color);
    margin-left: 10px;
}

.cta-feature span {
    color: var(--light-text);
    font-weight: 500;
}

.cta-buttons {
    margin: 30px 0;
    position: relative;
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.cta-timer {
    margin-top: 30px;
}

.timer-label {
    color: var(--light-text);
    margin-bottom: 10px;
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
