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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1a1a2e;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: #fff;
}

ul {
    list-style: none;
}

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

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

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}

/* Header & Navigation */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: rgba(26, 26, 46, 0.9);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 10px;
    background: rgba(255, 107, 53, 0.1);
    position: relative;
    width: auto;
    height: 50px;
    gap: 10px;
}

.logo svg {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.logo h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 5px 12px;
    border-radius: 8px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF6B35;
}

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

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

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

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    position: relative;
    background: linear-gradient(180deg, #1a1a2e, #16213e);
    overflow: hidden;
}

.hero::before {
    content: '';
    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="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="1" fill="%23FF6B35" opacity="0.2"/></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="40" y="40" width="20" height="20" fill="%23F7931E" opacity="0.1" transform="rotate(45 50 50)"/></svg>');
    background-position: 0 0, 50px 50px;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.app-buttons {
    display: flex;
    gap: 1rem;
}

.btn-app {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #FF6B35;
    color: #1a1a2e;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-app:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    background-color: #F7931E;
}

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

.btn-app.secondary:hover {
    background-color: #FF6B35;
    color: #1a1a2e;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    max-width: 80%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

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

.stats {
    margin-top: 80px;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stats .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #16213e, #1a1a2e);
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 4rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FF6B35;
}

.feature-content p {
    opacity: 0.8;
    line-height: 1.8;
}

.feature-image {
    flex: 1;
    position: relative;
}

.feature-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 165, 0, 0.4));
    filter: blur(60px);
    z-index: -1;
}

.feature-item:nth-child(2) .feature-image::before {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.4), rgba(255, 215, 0, 0.4));
}

.feature-item:nth-child(3) .feature-image::before {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.4), rgba(255, 215, 0, 0.4));
}

/* App Screens Section */
.app-screens {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e, #16213e);
    position: relative;
    overflow: hidden;
}

.screens-slider {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.screens-slider img {
    height: 500px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.screens-slider img:nth-child(3) {
    transform: scale(1.1);
    z-index: 2;
}

.screens-slider img:hover {
    transform: translateY(-10px);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #FF6B35;
    transform: scale(1.3);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #16213e, #1a1a2e);
}

.testimonials-avatars {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.avatar.active {
    border-color: #FF6B35;
    transform: scale(1.2);
}

/* FAQ Section */
.faq {
    padding: 100px 0 50px;
    background: linear-gradient(180deg, #1a1a2e, #16213e);
    position: relative;
}

.faq .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.faq-content {
    flex: 1;
}

.accordion {
    margin-top: 30px;
}

.accordion-item {
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

.accordion-content {
    padding: 0 20px 20px;
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .icon i {
    transform: rotate(180deg);
}

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

.faq-image img {
    max-width: 80%;
}

.faq-cta {
    margin-top: 80px;
}

.cta-box {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: #1a1a2e;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* News Section */
.news {
    padding: 100px 0;
    background: linear-gradient(180deg, #16213e, #1a1a2e);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.news-content p {
    opacity: 0.8;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FF6B35" fill-opacity="0.1" d="M0,224L60,229.3C120,235,240,245,360,240C480,235,600,213,720,213.3C840,213,960,235,1080,229.3C1200,224,1320,192,1380,176L1440,160L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.download .app-buttons {
    justify-content: center;
}

/* Contact Us Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #16213e, #1a1a2e);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    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="30" height="30" viewBox="0 0 30 30"><circle cx="15" cy="15" r="1" fill="%23FFD700" opacity="0.1"/></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><polygon points="30,5 35,25 55,30 35,35 30,55 25,35 5,30 25,25" fill="%23FFA500" opacity="0.05"/></svg>');
    background-position: 0 0, 100px 100px;
    pointer-events: none;
}

.contact-modal {
    background-color: rgba(42, 42, 68, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-description {
    margin-bottom: 30px;
    color: #ccc;
    max-width: 80%;
    line-height: 1.6;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group.full-width {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF6B35;
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
    resize: none;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #ccc;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(255, 255, 255, 0.1);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #FF6B35;
    border-color: #FF6B35;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #1a1a2e;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    line-height: 20px;
}

.terms-link {
    color: #FF6B35;
    text-decoration: underline;
}

.submit-btn {
    background-color: #FF6B35;
    color: #1a1a2e;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #F7931E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background-color: #0f0f1a;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.company-name {
    font-size: 1.1rem;
    margin-top: 15px;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #FF6B35;
}

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

.footer-column ul li a {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: #FF6B35;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-info li i {
    margin-right: 10px;
    color: #FF6B35;
    min-width: 20px;
    margin-top: 3px;
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

footer .social-icons {
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
        margin-top: 40px;
    }
    
    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .screens-slider {
        overflow-x: auto;
        padding-bottom: 20px;
    }
    
    .screens-slider img {
        height: 400px;
    }
    
    .faq .container {
        flex-direction: column;
    }
    
    .faq-image {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .screens-slider img {
        height: 350px;
    }
    
    .stats .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-column {
        flex: 100%;
        text-align: center;
    }

    .company-name {
        font-size: 1rem;
    }

    .contact-info li {
        justify-content: center;
    }

    footer .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .screens-slider img {
        height: 300px;
    }
    
    .screens-slider img:nth-child(3) {
        transform: scale(1);
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .company-name {
        font-size: 0.9rem;
    }

    .contact-info li {
        font-size: 0.9rem;
    }
} 