/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f8f9fa;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: url('assets/images/amir_101.jpg') center center no-repeat;
    background-size: 101%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    color: #fff;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.5px);
    z-index: 10;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 48px;
    margin-right: 80px;
}

.nav-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu-hero {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link-hero {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.nav-link-hero:hover {
    color: #ffd700;
}

.nav-link-hero i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-link-hero:hover i {
    transform: rotate(180deg);
}

/* قائمة منسدلة */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.95);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a {
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-app-btn {
    margin-left: auto;
}

.btn-download {
    background: #fff;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-download:hover {
    background: #ffd700;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    padding: 80px 40px 50px;
    gap: 20px;
}

.hero-main-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.spend-text,
.invest-text {
    color: #fff;
    display: inline-block;
    margin-right: 20px;
    font-weight: 900;
}

.in-your-text,
.in-your-kids {
    color: #fff;
    display: inline-block;
    margin-right: 20px;
    font-weight: 400;
}

.and-text {
    color: #ffd700;
    display: inline-block;
    font-weight: 900;
}

.kids-text {
    color: #ffd700;
    display: inline-block;
    font-weight: 900;
}

.hero-quote {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 20px 25px;
    border-radius: 12px;
    margin: 0;
    max-width: 750px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.hero-quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-quote cite {
    display: block;
    text-align: left;
    font-size: 1rem;
    color: #ffd700;
    font-weight: 600;
    font-style: normal;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #f8f9fa;
    margin: 0;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.services-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 600;
}

.services-description {
    font-size: 0.95rem;
    color: #888;
    max-width: 550px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-item span {
    font-size: 12px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* App Features Section */
.app-features {
    padding: 60px 0;
    background: #000;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
}

.app-features .container {
    max-width: none;
    padding: 0;
}

.app-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
}

.features-content {
    display: grid;
    grid-template-columns: 350px 1fr 350px;
    gap: 0;
    align-items: flex-start;
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}


.features-left {
    display: flex;
    flex-direction: column;
    gap: 35px;
    height: fit-content;
    position: relative;
    z-index: 3;
}

.features-right {
    display: flex;
    flex-direction: column;
    gap: 55px;
    height: fit-content;
    position: relative;
    z-index: 2;
}

.features-left {
    padding: 20px 30px 20px 20px;
    margin-left: 0;
    justify-self: start;
}

.features-right {
    padding: 20px 20px 20px 30px;
    margin-right: 1px;
    justify-self: end;
}

/* إزاحة الكروت العلوية إلى الأعلى */
.features-left .feature-item:first-child,
.features-right .feature-item:first-child {
    transform: translateY(-15%);
}

/* إزاحة الكروت السفلية إلى الأسفل */
.features-left .feature-item:last-child,
.features-right .feature-item:last-child {
    transform: translateY(15%);
}

.features-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: fit-content;
    position: relative;
    z-index: 1;
}

.phone-mockups img {
    max-width: 150%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(255, 255, 255, 0.15));
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: left;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: fit-content;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 300px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.1);
    z-index: 4;
}

/* تأثير hover للكروت العلوية */
.features-left .feature-item:first-child:hover,
.features-right .feature-item:first-child:hover {
    transform: translateY(-15%) translateY(-5px) scale(1.02);
}

/* تأثير hover للكروت السفلية */
.features-left .feature-item:last-child:hover,
.features-right .feature-item:last-child:hover {
    transform: translateY(15%) translateY(-5px) scale(1.02);
}

.feature-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 5px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
    text-align: left;
    width: 100%;
    line-height: 1.3;
    height: 50px;
    display: flex;
    align-items: center;
}

.feature-text p {
    color: #ddd;
    line-height: 1.4;
    font-size: 0.8rem;
    text-align: left;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: #f8f9fa;
    margin: 0;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.works-phone {
    display: flex;
    justify-content: center;
}

.works-phone img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-item.active {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-item.active .step-number {
    background: #ffd700;
    color: #333;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Download Section */
.download-section {
    padding: 0;
    background: #333;
    color: #fff;
    margin: 20px;
    position: relative;
    z-index: 2;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px 0 20px;
    height: 200px;
}

.download-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.download-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.download-text p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #ccc;
}

.download-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
}

.footer-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.download-btn img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.download-btn:hover img {
    transform: scale(1.05);
}

.download-phones {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 45%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.download-phones img {
    width: 60%;
    height: auto;
    max-height: 280px;
    border-radius: 0;
    margin-bottom: 0;
    display: block;
    object-fit: contain;
    object-position: bottom center;
}

/* News Section */
.news-section {
    padding: 60px 0;
    background: #fff;
    margin: 0;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-date {
    background: #ffd700;
    color: #333;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.news-content h3 {
    font-size: 1.2rem;
    margin: 15px 0 10px;
    color: #333;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
    margin: 0;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.contact-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.submit-btn {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #ffd700;
    width: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu-hero {
        display: none;
    }

    .hero-main-text h1 {
        font-size: 3rem;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .hero-background .nav-container {
        justify-content: center;
    }

    .btn-download {
        padding: 10px 20px;
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .features-content,
    .works-content,
    .download-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .download-content {
        padding: 20px 15px 0 15px;
        height: auto;
        text-align: center;
    }

    .download-text {
        order: 1;
        margin-bottom: 20px;
    }

    .download-text h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .download-text p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .download-phones {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 200px;
        order: 2;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }

    .download-phones img {
        width: 70%;
        max-width: 300px;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
        transform: none;
        position: relative;
        left: auto;
        width: 100%;
        max-width: 100%;
    }

    .features-center {
        order: 1;
        padding: 10px;
        margin: 0 auto;
        max-width: 300px;
    }

    .phone-mockups img {
        max-width: 100%;
        height: auto;
        max-height: 350px;
    }

    .features-left,
    .features-right {
        order: 2;
        padding: 15px;
        margin: 0;
        justify-self: center;
        width: 100%;
        max-width: 500px;
    }

    .features-left {
        margin-bottom: 20px;
    }

    .features-right {
        margin-top: 20px;
    }

    .feature-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 15px;
        margin-bottom: 15px;
        max-width: 100%;
        width: 100%;
        gap: 15px;
        transform: none !important;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .feature-icon img {
        width: 80%;
        height: 80%;
    }

    .feature-text {
        flex: 1;
    }

    .feature-text h3 {
        font-size: 1rem;
        height: auto;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .feature-text p {
        font-size: 0.85rem;
        line-height: 1.3;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .download-buttons {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-top: 15px;
        justify-content: center;
    }

    .download-btn {
        width: auto;
        max-width: 150px;
        display: flex;
        justify-content: center;
        flex: 1;
    }

    .download-btn img {
        height: 55px;
    }

    .download-section {
        height: auto;
        min-height: 400px;
        margin: 10px;
        padding: 20px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-main-text h1 {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }

    .hero-content {
        padding: 80px 15px 30px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .service-item {
        padding: 20px 10px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-item span {
        font-size: 10px;
    }

    .services-header h2,
    .app-features h2,
    .how-it-works h2,
    .download-text h2,
    .news-section h2 {
        font-size: 2rem;
    }

    .app-features h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .features-content {
        padding: 15px 10px;
        gap: 15px;
    }

    .features-center {
        max-width: 250px;
        padding: 5px;
    }

    .phone-mockups img {
        max-height: 300px;
    }

    .features-left,
    .features-right {
        padding: 10px;
        max-width: 100%;
    }

    .feature-item {
        padding: 12px;
        margin-bottom: 12px;
        gap: 12px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-text h3 {
        font-size: 0.9rem;
    }

    .feature-text p {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .download-text h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .download-text p {
        font-size: 0.85rem;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .download-phones {
        min-height: 180px;
        margin-top: 15px;
    }

    .download-phones img {
        width: 65%;
        max-width: 250px;
    }

    .download-section {
        margin: 5px;
        min-height: 350px;
    }

    .download-content {
        padding: 15px 10px 0 10px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-quote {
        margin: 15px auto 0;
        padding: 15px 18px;
        max-width: calc(100% - 30px);
        border-radius: 10px;
    }

    .hero-quote p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .hero-quote cite {
        font-size: 0.85rem;
        text-align: center;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.service-item:hover .service-icon {
    transform: rotate(360deg);
    transition: transform 0.5s ease;
    background: linear-gradient(135deg, #333 0%, #000 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}

/* Fixed Icon */
.fixed-icon {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.fixed-icon:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.fixed-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .fixed-icon {
        width: 50px;
        height: 50px;
        right: 15px;
    }
    
    .fixed-icon img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .fixed-icon {
        width: 45px;
        height: 45px;
        right: 10px;
    }
    
    .fixed-icon img {
        width: 25px;
        height: 25px;
    }
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
}

/* Fixed navigation for mobile */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
}

.mobile-menu-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
    transform: scale(1.05);
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-side-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo img {
    height: 35px;
    width: auto;
}

.close-mobile-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.close-mobile-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

.mobile-menu-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: calc(100vh - 100px);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-dropdown {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.mobile-dropdown-toggle {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-dropdown-toggle:hover::before {
    left: 100%;
}

.mobile-dropdown-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 300px;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-dropdown-content a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-dropdown-content a:last-child {
    border-bottom: none;
}

.mobile-dropdown-content a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding-left: 35px;
}

.mobile-dropdown-content a::before {
    content: '▸';
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-dropdown-content a:hover::before {
    opacity: 1;
}

.mobile-download-section {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.mobile-btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Animations */
.mobile-side-menu.active .mobile-dropdown {
    animation: slideInFromRight 0.5s ease forwards;
    opacity: 0;
    transform: translateX(50px);
}

.mobile-side-menu.active .mobile-dropdown:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-side-menu.active .mobile-dropdown:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-side-menu.active .mobile-dropdown:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-side-menu.active .mobile-dropdown:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-side-menu.active .mobile-btn-download {
    animation: slideInFromRight 0.5s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateX(50px);
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .services {
        margin-top: 0;
    }

    .hero {
        position: relative;
        height: 70vh;
        min-height: 70vh;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        background-repeat: no-repeat;
        overflow: hidden;
    }

    .hero-background {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(0.5px);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        gap: 15px;
        padding: 20px 20px 40px;
        min-height: calc(70vh - 80px);
        text-align: left;
    }

    .hero-main-text {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-main-text h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        letter-spacing: 1px;
        text-align: left;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        margin-bottom: 0;
    }

    .hero-quote {
        margin: 0 auto;
        padding: 20px 25px;
        max-width: 90%;
        background: rgba(0, 0, 0, 0.75);
        border-radius: 15px;
        color: #fff;
        z-index: 2;
        position: relative;
    }

    .hero-quote p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .hero-quote cite {
        display: block;
        font-size: 1rem;
        text-align: right;
        color: #ffd700;
    }

    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
        box-sizing: border-box;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(15px);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-logo img {
        height: 40px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

    .spend-text {
        display: block;
        margin-bottom: 0;
    }

    .spend-text::after {
        content: " IN YOUR LAND";
        color: #ffd700;
    }

    .invest-text {
        display: block;
    }

    .invest-text::after {
        content: " IN YOUR KIDS";
        color: #ffd700;
    }

    .in-your-text,
    .and-text,
    .in-your-kids,
    .kids-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        background-size: cover;
        height: 65vh;
        min-height: 65vh;
    }

    .hero-content {
        padding: 100px 15px 30px;
        gap: 25px;
        min-height: calc(65vh - 70px);
    }

    .hero-main-text h1 {
        font-size: 1.8rem;
        line-height: 1.1;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
        margin-bottom: 0;
    }

    .hero-quote {
        padding: 12px 15px;
        max-width: 95%;
        border-radius: 8px;
    }

    .hero-quote p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .hero-quote cite {
        font-size: 0.7rem;
        text-align: center;
    }

    .nav-logo img {
        height: 35px;
    }

    .nav-container {
        padding: 12px 15px;
        border-radius: 0 0 15px 15px;
    }

    .mobile-menu-btn {
        font-size: 16px;
        padding: 10px;
    }
}

/* Chat Modal Styles */
.chat-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideInFromBottom 0.3s ease-out;
}

.chat-modal.active {
    display: flex;
}

.chat-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-modal-overlay.active {
    display: block;
    opacity: 1;
}

.chat-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header {
    background: linear-gradient(135deg, #17213c 0%, #0077ff 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.chat-close {
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.chat-close:hover {
    transform: scale(1.2);
}

.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: calc(100% - 80px);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    animation: messageSlideIn 0.3s ease-out;
}

.bot-message {
    align-items: flex-start;
}

.user-message {
    align-items: flex-end;
    align-self: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.bot-message .message-content {
    background: #e9ecef;
    color: #333;
    border-bottom-left-radius: 5px;
}

.user-message .message-content {
    background: linear-gradient(135deg, #17213c 0%, #0077ff 100%);
    color: white;
    border-bottom-right-radius: 5px;
}

.message-time {
    font-size: 0.7rem;
    color: #6c757d;
    margin-top: 5px;
    padding: 0 5px;
}

.chat-input-container {
    padding: 20px;
    background: white;
    border-top: 1px solid #dee2e6;
    display: flex;
    gap: 10px;
    align-items: center;
}

#chatInput {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

#chatInput:focus {
    border-color: #0077ff;
}

.send-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #17213c 0%, #0077ff 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.send-btn:hover {
    transform: scale(1.1);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Chat Modal Animations */
@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes messageSlideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Chat Modal Mobile Responsive */
@media (max-width: 768px) {
    .chat-modal {
        width: calc(100vw - 20px);
        height: 70vh;
        right: 10px;
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .chat-modal {
        width: calc(100vw - 10px);
        height: 75vh;
        right: 5px;
        bottom: 80px;
    }
}
