/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    min-width: 100%;
    max-width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #2C3E50;
    color: #ECF0F1;
    line-height: 1.6;
    padding-top: 64px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(0, 0, 0, 0.1);
    height: 64px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo-image {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    position: fixed;
    right: -100%;
    top: 64px;
    flex-direction: column;
    background-color: #2C3E50;
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 999;
}

.nav-links a {
    color: #ECF0F1;
    text-decoration: none;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.9;
    white-space: nowrap;
}

.nav-links a i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.nav-links a:hover {
    color: #3498DB;
    opacity: 1;
}

.nav-links a:hover i {
    opacity: 1;
}

/* Updated Hero section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5% 8rem 5%;
    min-height: auto;
    position: relative;
    overflow: hidden;
    gap: 6rem;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.95));
    z-index: -1;
}

.hero-content {
    flex: 1;
    padding-right: 0;
    max-width: 640px;
    text-align: left;
}

.hero-content h1 {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.5rem;
    color: #BDC3C7;
    margin-bottom: 3rem;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.app-store-button {
    height: 72px;
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.app-store-link {
    display: inline-block;
    text-decoration: none;
}

.app-store-button:hover {
    transform: translateY(-2px);
}

.app-badge-hint {
    font-size: 0.875rem;
    color: #BDC3C7;
    margin-left: 0;
    opacity: 0.8;
}

/* Updated Hero Image */
.hero-image .phone-frame {
    width: 375px;
}

.hero-image .phone-frame img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    position: relative; /* Not absolute for hero image */
}

/* Features phone styles */
.features-phone {
    position: relative;
    max-width: 375px;
    margin: 0 auto;
}

.features-phone .phone-frame {
    position: relative;
    width: 100%;
}

.features-phone .phone-frame img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.phone-default {
    position: relative !important;
}

.phone-feature {
    opacity: 0;
}

.phone-feature.hidden {
    opacity: 0;
}

.phone-feature.visible {
    opacity: 1;
}

/* Updated CTA Button */
.cta-button {
    background-color: #3498DB;
    color: #ECF0F1;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background-color: #2980B9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Features section */
.features {
    padding: 8rem 0;
    background-color: rgba(255, 255, 255, 0.02);
}

.features-container {
    display: flex;
    gap: 6rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    padding: 0 5%;
}

.features-content {
    flex: 1;
    max-width: 640px;
}

.features h2 {
    text-align: left;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    cursor: pointer;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #3498DB;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ECF0F1;
    letter-spacing: -0.01em;
}

.feature-text p {
    color: #BDC3C7;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 640px;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.1);
    color: #BDC3C7;
}

/* Update responsive design */
@media (max-width: 1400px) {
    .features-phone {
        margin-left: 0;
    }
}

@media (max-width: 968px) {
    .features {
        padding: 6rem 0;
    }

    .features-container {
        padding: 0 5%;
    }

    .features-phone {
        margin-left: auto;
        margin-right: auto;
    }

    .features-content {
        max-width: 100%;
    }

    .features h2 {
        text-align: center;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .features {
        padding: 4rem 5%;
    }

    .features h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .feature-item {
        gap: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 1.25rem;
    }

    .feature-text h3 {
        font-size: 1.3rem;
    }

    .feature-text p {
        font-size: 1rem;
    }

    .nav-links {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .nav-links a {
        margin: 0.5rem 0;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 5% 0 5%; /* Remove top/bottom padding */
        min-height: 100vh; /* Full viewport height */
        display: flex;
        align-items: center; /* Center vertically */
        justify-content: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4rem 0; /* Add padding to content instead */
    }

    .hero-content h1 {
        font-size: 3.5rem !important;
        margin-bottom: 1rem;
        line-height: 1.1;
        text-align: center;
    }

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

    .app-store-button {
        height: 56px;
    }

    .features {
        padding: 4rem 0;
    }

    .features-container {
        padding: 0 5%;
    }

    .feature-item {
        gap: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 1.25rem;
    }

    .feature-text h3 {
        font-size: 1.3rem;
    }

    .feature-text p {
        font-size: 1rem;
    }
}

/* Call to action section */
.cta-section {
    padding: 8rem 5%;
    background-color: #2C3E50;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.95));
    z-index: 0;
}

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

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #ECF0F1;
}

.cta-section p {
    font-size: 1.4rem;
    color: #BDC3C7;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.cta-section .app-store-button {
    height: 72px;
    width: auto;
    transition: transform 0.3s ease;
}

.cta-section .app-store-button:hover {
    transform: translateY(-2px);
}

/* Update responsive styles */
@media (max-width: 768px) {
    .cta-section {
        padding: 6rem 5%;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .cta-section .app-store-button {
        height: 64px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 4rem 5%;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .cta-section .app-store-button {
        height: 56px;
    }
}

/* Support Hero Section */
.support-hero {
    padding: 6rem 5%;
    background-color: #2C3E50;
    position: relative;
    text-align: center;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
}

.support-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.support-hero p {
    font-size: 1.5rem;
    color: #BDC3C7;
    line-height: 1.4;
}

/* Support Section */
.support-section {
    padding: 6rem 5%;
    background-color: rgba(255, 255, 255, 0.02);
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.support-card {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.support-icon i {
    font-size: 1.8rem;
    color: #3498DB;
}

.support-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ECF0F1;
}

.support-card p {
    color: #BDC3C7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.support-link {
    color: #3498DB;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #2980B9;
}

/* Update Contact Section */
.contact-section {
    padding: 6rem 5%;
    background-color: #2C3E50;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-section p {
    text-align: center;
    color: #BDC3C7;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.email-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.3rem;
}

.email-contact i {
    color: #3498DB;
    font-size: 1.5rem;
}

.email-contact a {
    color: #3498DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-contact a:hover {
    color: #2980B9;
}

/* Remove old contact form styles */
.contact-form,
.form-group,
.submit-button {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 3rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .support-hero h1 {
        font-size: 2.5rem;
    }

    .support-hero p {
        font-size: 1.2rem;
    }

    .support-card {
        padding: 1.5rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 6rem 5%;
    background-color: #2C3E50;
    transition: all 0.3s ease;
    max-height: 2000px;
    overflow: hidden;
}

.faq-section.hidden {
    max-height: 0;
    padding: 0 5%;
    opacity: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #ECF0F1;
}

.faq-question i {
    color: #3498DB;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem 2rem 2rem 2rem;
    color: #BDC3C7;
    font-size: 1.1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Add this to your responsive styles */
@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        padding: 1.5rem 1.5rem 2rem 1.5rem;
    }
}

/* Add these new styles for the privacy page */
.privacy-hero {
    padding: 6rem 5%;
    background-color: #2C3E50;
    position: relative;
    text-align: center;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.privacy-hero p {
    font-size: 1.2rem;
    color: #BDC3C7;
    line-height: 1.4;
}

.privacy-section {
    padding: 6rem 5%;
    background-color: rgba(255, 255, 255, 0.02);
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.privacy-item {
    color: #ECF0F1;
}

.privacy-item h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ECF0F1;
    letter-spacing: -0.01em;
}

.privacy-item p {
    color: #BDC3C7;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-email {
    color: #3498DB !important;
    font-size: 1.2rem !important;
    margin-top: 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 3rem;
    }

    .privacy-item h2 {
        font-size: 1.5rem;
    }

    .privacy-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-section {
        padding: 4rem 5%;
    }

    .privacy-container {
        gap: 3rem;
    }
}

/* Update responsive sizes too */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

/* Add these styles to your existing styles.css */

.coming-soon {
    min-height: calc(100vh - 160px); /* Account for nav and footer */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background-color: #2C3E50;
}

.coming-soon-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    color: #3498DB;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.coming-soon h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.coming-soon p {
    font-size: 1.4rem;
    color: #BDC3C7;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498DB;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: #2980B9;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .coming-soon h1 {
        font-size: 2.8rem;
    }

    .coming-soon p {
        font-size: 1.2rem;
    }

    .coming-soon-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .coming-soon h1 {
        font-size: 2.2rem;
    }

    .coming-soon p {
        font-size: 1.1rem;
    }

    .coming-soon-icon {
        font-size: 2.5rem;
    }
}

/* Update hero section responsive styles */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 5%;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-group {
        align-items: center;
    }

    .hero-image {
        max-width: 375px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-image .phone-frame {
        width: 100%;
    }
}

/* Update features section responsive styles */
@media (max-width: 1024px) {
    .features-container {
        flex-direction: column-reverse;
        gap: 4rem;
    }

    .features-phone {
        max-width: 375px;
        width: 100%;
    }

    .features-content {
        text-align: center;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Update navigation responsive styles */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
    }

    .nav-links {
        padding: 0 0.5rem;
    }

    .nav-links a {
        margin-left: 1rem;
        font-size: 0.8rem;
    }

    .nav-links a i {
        font-size: 0.8rem;
    }
    .cta-group {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .app-store-button {
        height: 80px; /* Increase size */
        width: auto;
    }
    .hero-image .phone-frame img:nth-child(2) { /* Adjust if the second image is in another element */
        display: none;
    }
    .hero-content {
        text-align: center; /* Center text */
        display: flex;
        font-size: 5.5rem;
        flex-direction: column;
        align-items: center;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        align-items: center;
    }

    .hero-content p {
        font-size: 2.1rem;
        margin-bottom: 2rem;
        align-items: center;
    }

    .features h2 {
        font-size: 2rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-text h3 {
        font-size: 1.2rem;
    }

    .feature-text p {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
        align-items: center;
    }

    .cta-section p {
        font-size: 1rem;
        align-items: center;
    }

    .app-store-button {
        height: 48px;
        align-items: center;
    }

    footer p {
        font-size: 0.9rem;
    }
}

/* Add smooth transitions for responsive changes */
.hero,
.hero-content,
.features-container,
.feature-item {
    transition: all 0.3s ease-in-out;
}

/* Mobile-specific styles */
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 4rem 5% 2rem;
        gap: 2rem;
    }

    .hero-content {
        padding: 0;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-image .phone-frame {
        width: 100%;
    }

    .main-screenshot {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    .features-container {
        padding: 0 5%;
    }

    .features-phone {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .feature-item {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .feature-text {
        align-items: flex-start;
    }

    .feature-text h3 {
        text-align: left;
    }

    .feature-text p {
        text-align: left;
    }

    .cta-group {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .app-store-button {
        width: 100%;
        height: auto;
        max-height: 60px;
        object-fit: contain;
    }

    /* Navigation improvements for mobile */
    .navbar {
        padding: 0.75rem 4%;
        height: auto;
        min-height: 60px;
    }

    .logo-image {
        height: 28px;
    }

    .nav-links {
        gap: 0.75rem;
        padding: 0;
    }

    .nav-links a {
        font-size: 0.8rem;
        margin-left: 0.75rem;
        padding: 0.5rem 0;
    }

    .nav-links a i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .features h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .feature-item {
        padding: 0.75rem;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-text h3 {
        font-size: 1.2rem;
    }

    .feature-text p {
        font-size: 0.95rem;
    }

    .nav-links a {
        font-size: 0.75rem;
    }

    .nav-links a i {
        font-size: 0.8rem;
    }
}

/* Improve feature image transitions on mobile */
@media (hover: none) {
    .feature-item:active .phone-feature {
        opacity: 1;
    }
}

/* Ensure smooth image transitions */
.phone-frame img {
    transition: opacity 0.3s ease;
}

/* Optimize performance for mobile */
@media (prefers-reduced-motion: reduce) {
    .hero,
    .hero-content,
    .features-container,
    .feature-item,
    .phone-frame img {
        transition: none;
    }
}

/* Add these new styles after the navbar styles */
.hamburger {
    display: block;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    margin-left: auto;
    background: none;
    border: none;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #ECF0F1;
    transition: all 0.3s ease-in-out;
}

.nav-links.active {
    right: 0;
    overflow-y: hidden;
}

/* Add this new media query for landscape phones */
@media (max-height: 480px) and (orientation: landscape) {
    html, body {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hero {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 4rem 5% 8rem 5%;
        min-height: 100vh;
    }
    
    .hero::before {
        width: 100vw;
        left: 0;
        right: 0;
    }
    
    .navbar {
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .hero-content h1 {
        font-size: 3.5rem !important;
    }
} 
