/* css/style.css - Dark Navy & Purple Theme with Background Images */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-dark: #0a0f1e;
    --navy-medium: #111827;
    --navy-light: #1f2937;
    --purple-primary: #8b5cf6;
    --purple-glow: #a78bfa;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --card-bg: rgba(17, 24, 39, 0.8);
    --border-glow: rgba(139, 92, 246, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--navy-dark);
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Navigation Bar ===== */
.navbar {
    background-color: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white;
}
.logo span {
    color: var(--purple-primary);
    font-weight: 300;
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-menu a {
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s, border-color 0.2s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--purple-glow);
    border-bottom-color: var(--purple-glow);
}

.hamburger {
    display: none;
    cursor: pointer;
}
.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-primary {
    background-color: var(--purple-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}
.btn-primary:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
}
.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--purple-primary);
}
.btn-secondary:hover {
    background-color: rgba(139, 92, 246, 0.1);
    border-color: var(--purple-glow);
    color: var(--purple-glow);
}
.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}
.btn-block {
    width: 100%;
}

/* ===== Typography ===== */
.highlight {
    color: var(--purple-glow);
    position: relative;
    display: inline-block;
}
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}
p {
    color: var(--text-muted);
}
.page-header {
    text-align: center;
    padding: 3rem 2rem 1rem;
    position: relative;
    z-index: 2;
}
.page-header h1 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
}

/* ===== Background Images for Pages ===== */
/* Each page has a full-page background image with overlay */
.page-home {
    background: linear-gradient(rgba(10, 15, 30, 0.85), rgba(10, 15, 30, 0.9)), 
                url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}
.page-services {
    background: linear-gradient(rgba(10, 15, 30, 0.85), rgba(10, 15, 30, 0.9)), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}
.page-howitworks {
    background: linear-gradient(rgba(10, 15, 30, 0.85), rgba(10, 15, 30, 0.9)), 
                url('https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}
.page-success {
    background: linear-gradient(rgba(10, 15, 30, 0.85), rgba(10, 15, 30, 0.9)), 
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}
.page-pricing {
    background: linear-gradient(rgba(10, 15, 30, 0.85), rgba(10, 15, 30, 0.9)), 
                url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}
.page-about {
    background: linear-gradient(rgba(10, 15, 30, 0.85), rgba(10, 15, 30, 0.9)), 
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}
.page-contact {
    background: linear-gradient(rgba(10, 15, 30, 0.85), rgba(10, 15, 30, 0.9)), 
                url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}

/* ===== Section Backgrounds (Eye-catching within pages) ===== */
.hero {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    border: 1px solid var(--border-glow);
}
.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.subhead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}
/* trust-badge icons should be small */
.trust-badges .icon-img {
    width: 1.2rem;
    height: 1.2rem;
    vertical-align: middle;
    margin-right: 0.3rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 2px var(--purple-primary));
}
.trust-badges ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}
.trust-badges li {
    display: flex;
    align-items: center;
}
.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 2px solid var(--purple-primary);
}

/* Differentiators */
.differentiators {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(5px);
    margin: 2rem 0;
}
.diff-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.diff-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-glow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}
.diff-card .icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--purple-primary));
}

/* Handoff Section */
.handoff {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    border: 1px solid var(--border-glow);
}
.handoff-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--purple-primary);
}
.checklist {
    list-style: none;
    margin-top: 1.5rem;
}
.checklist li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}
.checklist li img {
    width: 1.2rem;
    height: 1.2rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 2px var(--purple-primary));
}

/* Stats Section */
.stats {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
    color: white;
    display: flex;
    justify-content: space-around;
    padding: 3rem 2rem;
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--purple-glow);
}
.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* CTA Banner */
.cta-banner {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    max-width: 900px;
    margin: 3rem auto;
    border: 1px solid var(--purple-primary);
}
.cta-banner h2 {
    font-size: 2.2rem;
    color: white;
}
.cta-banner p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Services Page */
.services-detailed {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}
.service-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-glow);
}
.service-row.reverse {
    direction: rtl;
}
.service-row.reverse .service-content {
    direction: ltr;
}
.service-icon-large img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--purple-primary));
}
.service-content h2 {
    margin-bottom: 0.5rem;
    color: white;
}

/* How It Works - Timeline */
.timeline {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}
.timeline-step {
    display: grid;
    grid-template-columns: auto 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-glow);
}
.timeline-step.reverse {
    direction: rtl;
}
.timeline-step.reverse .step-content {
    direction: ltr;
}
.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--purple-primary);
    opacity: 0.6;
    width: 80px;
}
.step-content h3 {
    margin-bottom: 0.5rem;
    color: white;
}
.step-image img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--purple-primary);
}
.system-guarantee {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 2rem;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    border-radius: 30px;
}
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--purple-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    margin-top: 2rem;
    box-shadow: 0 0 20px var(--purple-primary);
}

/* Success Stories */
.testimonial-grid {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.2s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}
.testimonial-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--purple-primary);
}
.testimonial-role {
    color: var(--purple-glow);
    font-weight: 500;
    margin-bottom: 1rem;
}
.testimonial-quote {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
}
.testimonial-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px dashed var(--border-glow);
    padding-top: 1rem;
}

/* Pricing Cards */
.pricing-cards {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}
.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(5px);
}
.pricing-card.popular {
    border: 2px solid var(--purple-primary);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(139,92,246,0.3);
}
.popular-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--purple-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.card-header {
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-glow);
}
.card-header h2 {
    margin-bottom: 0.5rem;
    color: white;
}
.price {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-muted);
}
.price span {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}
.price-sub {
    color: var(--purple-glow);
    font-weight: 600;
}
.card-body {
    padding: 2rem;
    flex-grow: 1;
}
.features-list {
    list-style: none;
}
.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}
.features-list li img {
    width: 1.2rem;
    height: 1.2rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 2px var(--purple-primary));
}
.card-footer {
    padding: 0 2rem 2rem;
}
.fine-print {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}
.pricing-footnote {
    max-width: 900px;
    margin: 2rem auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.footnote-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-glow);
}
.footnote-icon img {
    width: 3rem;
    height: 3rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--purple-primary));
}
.footnote-card a {
    color: var(--purple-glow);
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

/* About Page */
.about-story {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    background: var(--card-bg);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-glow);
}
.story-image img {
    width: 100%;
    border-radius: 30px;
    border: 3px solid var(--purple-primary);
}
.trust-quote {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-style: italic;
    background: rgba(139, 92, 246, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    color: var(--text-light);
}
.trust-quote span {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--purple-glow);
}
.values {
    padding: 4rem 2rem;
    text-align: center;
}
.values-grid {
    max-width: 1000px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.value-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-glow);
}
.value-item .value-icon img {
    width: 3rem;
    height: 3rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--purple-primary));
    margin-bottom: 1rem;
}
.team {
    padding: 4rem 2rem;
    text-align: center;
}
.team-grid {
    max-width: 900px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--purple-primary);
}
.team-member p {
    color: var(--text-muted);
}

/* Contact Page */
.contact-grid {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-glow);
}
.info-block {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    align-items: flex-start;
}
.info-block img {
    width: 2rem;
    height: 2rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--purple-primary));
}
.trust-seal {
    width: 150px;
    margin-top: 1rem;
    filter: drop-shadow(0 0 10px var(--purple-primary));
}
.contact-form-container {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(5px);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: var(--text-light);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    font-family: inherit;
    background: rgba(0,0,0,0.3);
    color: var(--text-light);
    transition: border 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.2);
}
.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.form-check input {
    width: auto;
}
.form-check label {
    margin-bottom: 0;
}
.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}
.form-success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid #10b981;
}
.hidden {
    display: none;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: var(--text-muted);
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-glow);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-glow);
}
.footer-brand h3 {
    color: white;
    margin-bottom: 0.2rem;
}
.footer-links a {
    margin: 0 1rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--purple-glow);
}
.footer-contact a {
    color: var(--purple-glow);
}
.footer-bottom {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Icon styling (general) */
.icon-img-small {
    width: 1rem;
    height: 1rem;
    vertical-align: middle;
    margin-right: 0.3rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 2px var(--purple-primary));
}
.icon-img-large {
    width: 2rem;
    height: 2rem;
    vertical-align: middle;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--purple-primary));
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        z-index: 99;
        border-bottom: 1px solid var(--border-glow);
    }
    .nav-menu.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .hero, .handoff, .about-story, .contact-grid {
        grid-template-columns: 1fr;
    }
    .diff-grid, .pricing-cards, .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    .timeline-step {
        grid-template-columns: 1fr;
        text-align: center;
        direction: ltr !important;
    }
    .step-number {
        margin: 0 auto;
    }
    .step-image img {
        margin: 1rem auto;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .pricing-footnote {
        grid-template-columns: 1fr;
    }
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}