:root {
    --primary-color: #0011ff;
    --primary-dark: #003366;
    --secondary-color: #C5FFEB;
    --text-color: #333;
    --text-light: #fff;
    --white: #ffffff;
    --border-color: #f1f1f1;
    --header-height: 80px;

    /* Original palette for gradients */
    --original-primary-1: #87c0f8;
    --original-primary-2: #0011ff;
    --original-primary-3: #ff00bf;
    --original-dark-blue: #003366;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding-top: var(--header-height);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 6rem 0;
}

/* Header & Navbar */
.header {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}
.logo {
    width: 65px;
}

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

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--original-primary-1), var(--original-primary-2), var(--original-primary-3));
    text-align: center;
    padding: 8rem 0;
    color: var(--text-light);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    opacity: 0.9;
}

.iphone-mockup-img {
    max-width: 500px;
    margin-top: 2rem;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--white);
    color: var(--text-color);
}

.btn-primary:hover {
    background-color: rgb(224, 224, 224);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgb(224, 224, 224);
    transform: translateY(-3px);
}

.btn .logo {
    width: 40px;
    height: 40px;
}

/* Features Section */
.features {
    text-align: center;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: #6c757d;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature img {
    width: 60px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--original-dark-blue), #0066cc);
    color: var(--text-light);
    border-radius: 15px;
    padding: 5rem 2rem;
    text-align: center;
}

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

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

/* Footer */
.footer {
    background: var(--text-color);
    color: var(--text-light);
    text-align: center;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 0;
}

.contact-form-container {
    max-width: 700px;
    margin: 2rem auto 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    padding-bottom: 1rem;
    display: inline-block;
}

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

.contact-hero {
    background: linear-gradient(135deg, #4a90e2, #1a73e8);
    color: white;
    padding: 60px 0;
    text-align: center;
}
        
.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
        
.contact-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}
        
.contact-container {
    display: flex;
    max-width: 1200px;
    margin: -50px auto 80px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
        
.contact-form-container {
    flex: 1;
    padding: 50px;
}
        
.contact-form h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
        
.form-group {
    margin-bottom: 1.5rem;
}
        
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}
        
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}
        
.form-control:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
    outline: none;
}
        
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
        
.btn-send {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
        
.btn-send:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
}
        
.contact-info {
    background: #f8f9fa;
    padding: 50px;
    width: 350px;
}
        
.contact-info h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
        
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
        
.contact-icon {
    background: #e3f2fd;
    color: #4a90e2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
        
.contact-details h4 {
    color: #333;
    margin: 0 0 5px;
    font-size: 1rem;
}
        
.contact-details p, 
.contact-details a {
    color: #666;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}
        
.contact-details a:hover {
    color: #4a90e2;
}


/* Styles for Delete Account Page */
.page-delete-account {
    background-image: linear-gradient(to bottom right, var(--original-primary-1), var(--original-primary-2), var(--original-primary-3));
    padding-top: 40px;
    padding-bottom: 40px;
}

.page-delete-account .container {
    max-width: 800px;
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.page-delete-account header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
}

.page-delete-account h1 {
    color: var(--primary-dark, #003366);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-delete-account .intro {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.page-delete-account .instruction {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color, #0011ff);
}

.page-delete-account .instruction h2 {
    color: var(--primary-dark, #003366);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.page-delete-account .instruction p {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

.page-delete-account .instruction a {
    font-weight: 600;
    color: var(--primary-color, #0011ff);
    text-decoration: underline;
}

.page-delete-account footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        margin: -30px 20px 50px;
    }
            
    .contact-info {
        width: 100%;
        padding: 30px;
    }
            
    .contact-form-container {
        padding: 30px;
    }
}
        
@media (max-width: 576px) {
    .contact-hero {
        padding: 40px 20px;
    }
            
    .contact-hero h1 {
        font-size: 2rem;
    }
            
    .contact-container {
        margin: -20px 15px 40px;
    }
            
    .contact-form-container,
    .contact-info {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    body { padding-top: 0; }
    .header { display: none; }

    .nav-menu {
        display: none; /* Simple hiding for now, burger menu needs JS */
    }

    .hero{
        padding: 2rem 0;
    }

    .section-title {
        padding: 2rem 0 0 0;
    }

    .iphone-mockup-img {
        max-width: 100%;
    }

    .footer {
        padding: 2rem 0;
    }

    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    .hero-content { flex-direction: column; }

    .section-header h2 { font-size: 2.2rem; }
    section { padding: 0 0 4rem 0; }
}
