/* ===== GENEL STILLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

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

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: #e63946;
    font-weight: 800;
}

.testimonial-slide {
    text-align: center;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #6c757d;
}

.section-header.light h2,
.section-header.light p {
    color: #fff;
}

/* ===== BUTONLAR ===== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.primary-btn {
    background-color: #e63946;
    color: #fff;
    border: 2px solid #e63946;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: #e63946;
    border: 2px solid #e63946;
}

.secondary-btn:hover {
    background-color: #e63946;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
    height: 70px;
    border-bottom: none;
    box-shadow: none;
}

header.scrolled {
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

header.scrolled .logo img {
    height: 40px;
}

header.scrolled .nav-links a {
    color: #333;
}

header.scrolled .nav-links a.active,
header.scrolled .nav-links a:hover {
    color: #e63946;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    max-width: 1400px;
    height: 100%;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

.nav-links ul {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #fff;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-links a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e63946;
    transition: all 0.3s ease;
}

.nav-links a:hover:before,
.nav-links a.active:before {
    width: 100%;
}

.nav-links a.active,
.nav-links a:hover {
    color: #e63946;
}

.language-selector {
    position: relative;
}

.language-selector select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 5px 25px 5px 10px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.language-selector::after {
    content: '▼';
    font-size: 10px;
    color: #fff;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.language-selector select:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.language-selector select option {
    background-color: #333;
    color: #fff;
    padding: 10px;
}

header.scrolled .language-selector select {
    border-color: rgba(51, 51, 51, 0.5);
    color: #333;
    background-color: rgba(51, 51, 51, 0.05);
}

header.scrolled .language-selector::after {
    color: #333;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
}

header.scrolled .mobile-menu-btn span {
    background-color: #333;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    color: #fff;
    margin-top: -1px; /* Beyaz çizgiyi kaldırmak için */
}

.stadium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/stadium-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 0;
}

.hero-spacer {
    height: 70px;
    width: 100%;
    background-color: transparent;
    border: none;
    display: block;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding-top: 80px;
}

.hero-text-container {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    margin-top: 0;
}

.hero-text-container h1 {
    font-size: 4rem;
    margin-top: 0;
    display: block;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.title-line {
    display: block;
    line-height: 1.2;
}

.hero-text-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-text-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin: 0;
}

.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-btn img {
    height: 40px;
    width: 135px;
    object-fit: contain;
}

.phone-mockup {
    position: relative;
    margin-top: 30px;
}

.phone {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    border-radius: 40px;
    background-color: #000;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

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

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

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: #fff;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/noise.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* ===== FEATURES SECTION ===== */
.features {
    background-color: #fff;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    z-index: -1;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: #e63946;
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2.5rem;
    color: #e63946;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: #fff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

.feature-card .learn-more {
    color: #e63946;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.feature-card .learn-more:after {
    content: '→';
    margin-left: 5px;
    transition: all 0.3s ease;
}

.feature-card:hover .learn-more:after {
    margin-left: 10px;
}

/* ===== DEMO VIDEO SECTION ===== */
.demo {
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.demo:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://via.placeholder.com/100x100/333/444?text=Pattern');
    opacity: 0.1;
}

.demo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    gap: 40px;
}

.demo-text {
    flex: 1;
    padding-right: 30px;
}

.demo-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.demo-text p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.demo-video {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.demo-video:before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.demo-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.5);
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.7);
}

.play-btn i {
    color: #fff;
    font-size: 2rem;
    margin-left: 5px;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.steps-container {
    position: relative;
    margin-top: 70px;
}

.timeline {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #e9ecef;
    z-index: 1;
}

.step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-content {
    width: 45%;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

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

.step:nth-child(even) .step-content {
    margin-left: auto;
}

.step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: #e63946;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.step-content p {
    color: #6c757d;
    margin-bottom: 0;
}

.step-image {
    width: 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.step:nth-child(even) .step-image {
    order: -1;
}

/* ===== STATS SECTION ===== */
.stats {
    background-color: #e63946;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-light.png');
    opacity: 0.05;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number .counter {
    margin-right: 5px;
}

.stat-number .symbol {
    font-size: 2rem;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: #fff;
    position: relative;
}

.testimonial-slider {
    position: relative;
    margin-top: 50px;
    padding: 30px 0;
}

.testimonial-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-item:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(230, 57, 70, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials {
    background-color: #f8f9fa;
    position: relative;
    padding: 80px 0;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://via.placeholder.com/100x100/333/444?text=Pattern');
    opacity: 0.05;
}

.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    padding: 20px;
}

.testimonial-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote {
    margin-bottom: 30px;
    font-style: italic;
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    padding-left: 30px;
}

.quote:before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 3rem;
    color: rgba(230, 57, 70, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.author-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-logo {
    position: absolute;
    bottom: 40px;
    right: 40px;
    height: 30px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.testimonial-item:hover .testimonial-logo {
    opacity: 1;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.testimonial-controls button {
    background-color: rgba(230, 57, 70, 0.1);
    border: 1px solid #e63946;
    color: #e63946;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.testimonial-controls button:hover {
    background-color: rgba(230, 57, 70, 0.1);
    color: #e63946;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: #e63946;
    transform: scale(1.2);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e9ecef;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #e63946;
    transform: scale(1.2);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: #f8f9fa;
    position: relative;
    padding: 80px 0;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: #e63946;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control, input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: #e63946;
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

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

.social-links {
    display: flex;
    margin-top: 20px;
    justify-content: flex-start;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background-color: #e63946;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.social-links a:hover {
    transform: translateY(-5px);
    background-color: #333;
}

/* ===== CTA SECTION ===== */
.cta {
    background-color: #1a1a1a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/stadium-crowd.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-buttons .btn {
    margin: 0 10px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: #f8f9fa;
    position: relative;
}

.contact-content {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #e63946;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: #6c757d;
    margin-bottom: 0;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    color: #28a745;
}

.form-status.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
}

.form-control:focus {
    border-color: #e63946;
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: right;
}

/* ===== FOOTER ===== */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #ccc;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e63946;
    transform: translateY(-5px);
}

.social-link i {
    color: #fff;
    font-size: 1.2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-col:first-child {
    flex: 2;
    min-width: 300px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #e63946;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: #ccc;
    transition: all 0.3s ease;
    display: block;
}

.footer-col ul li a:hover {
    color: #e63946;
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0;
}

.copyright p {
    color: #ccc;
    font-size: 0.9rem;
}

.copyright p::before {
    content: '©';
    margin-right: 5px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    opacity: 0;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.mobile-menu li {
    margin: 15px 0;
    list-style: none;
}

.mobile-menu a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #e63946;
}

.mobile-language-selector {
    margin-top: 30px;
}

.mobile-language-selector select {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-text-container h1 {
        font-size: 3.5rem;
    }
    
    .hero-text-container h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }
    
    .stat-item:nth-child(even):after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .demo-content {
        flex-direction: column;
    }
    
    .demo-text,
    .demo-video {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .demo-video {
        display: block;
        margin-top: 20px;
    }
    
    .contact-content {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .contact-form {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .step {
        flex-direction: column;
        margin-bottom: 50px;
    }
    
    .step-content,
    .step-image {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .step:nth-child(even) .step-image {
        order: 0;
    }
    
    .timeline {
        left: 20px;
    }
    
    .step-number {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-text-container h1 {
        font-size: 2.5rem;
    }
    
    .hero-text-container h2 {
        font-size: 1.3rem;
    }
    
    .hero-spacer {
        height: 60px;
    }
    
    .hero-text-container {
        padding: 60px 15px 0;
    }
    
    .hero-buttons .btn {
        margin: 5px;
        display: inline-block;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
    
    .stat-item:after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}

@media (max-width: 576px) {
    .hero-spacer {
        height: 70px;
    }
    
    .hero-container {
        padding-top: 0;
    }
    
    .hero-text-container {
        padding: 0 15px;
        margin-top: 180px;
    }
    
    .hero-text-container h1 {
        font-size: 2rem;
        margin-bottom: 10px;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .title-line {
        display: block;
        margin-bottom: 5px;
        font-size: 1.8rem;
    }
    
    .title-line.highlight {
        font-size: 2.2rem;
    }
    
    .hero-text-container h2 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .hero-text-container p {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        margin: 5px 0;
        width: 200px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-control {
        padding: 12px;
    }
    
    header .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 30px;
    }
}