/* Header Component */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

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

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.nav-link.active {
    opacity: 1;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-title {
    font-weight: 900;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Product Section */
.product {
    padding: 6rem 0;
    margin: 2rem 0;
}

.product-heading {
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.phone-mockup-img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

.product-info {
    padding: 2rem 0;
}

.product-logo {
    width: 120px; /* Adjustable - change this value to your preferred size */
    height: auto;
    margin-bottom: 2rem;
    display: block;
    max-width: 300px; /* Maximum size limit */
    min-width: 80px; /* Minimum size limit */
}

.product-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-primary);
}

.product-description {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.product-description strong {
    font-weight: 700;
}

.product-details,
.product-benefits {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.features {
    margin-top: 2rem;
}

.features-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.features-list {
    list-style: none;
}

.features-list li {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.2rem;
    list-style: none;
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

/* Privacy Policy Page */
.privacy-page {
    padding-top: 120px;
    min-height: 100vh;
}

.privacy-content {
    padding: 2rem 0 4rem 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-intro {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.privacy-intro p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.privacy-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

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

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.privacy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.privacy-section p {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section ul li {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-info a:hover {
    color: var(--text-primary);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    margin: 4rem 0;
}

.contact-heading {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtext {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    font-family: 'Poppins', sans-serif;
    padding: 1rem 1.5rem;
    background: var(--form-bg);
    border: 1px solid var(--form-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-submit {
    font-family: 'Poppins', sans-serif;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    min-width: 120px;
}

.form-submit:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.footer-contact p {
    margin-bottom: 0.3rem;
    color: var(--text-secondary);
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Responsive Design for Components */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .product-logo {
        margin: 0 auto 2rem auto;
    }
    
    .features {
        text-align: left;
    }
    
    .product-phones {
        order: 2;
        min-height: 300px;
    }
    
    .phone-mockup-img {
        max-height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .product, .contact {
        padding: 3rem 0;
    }
    
    .phone-mockup-img {
        max-height: 300px;
    }
    
    .product-phones {
        min-height: 200px;
    }
    
    .product-logo {
        width: 100px;
    }
    
    .features-list li {
        font-size: 0.9rem;
        padding-left: 1rem;
    }
    
    .features-list li::before {
        font-size: 0.9rem;
    }
}