﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: #ffffff;
    border-bottom: 2px solid #0EA5E9;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    color: #0EA5E9;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0EA5E9;
}

.nav-links a.active {
    color: #0EA5E9;
}

.btn-nav {
    background: #F59E0B;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.btn-nav:hover {
    background: #D97706;
    color: #ffffff !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    color: #ffffff;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #F59E0B;
    color: #ffffff;
}

.btn-primary:hover {
    background: #D97706;
}

.btn-secondary {
    background: #ffffff;
    color: #0EA5E9;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: transparent;
    color: #ffffff;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: #F0F9FF;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #0EA5E9;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #0EA5E9;
}

.card h3 {
    color: #0EA5E9;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    line-height: 1.8;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    background: #F59E0B;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #0EA5E9;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step p {
    line-height: 1.8;
}

/* Why List */
.why-list {
    max-width: 800px;
    margin: 3rem auto;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.check {
    color: #F59E0B;
    font-size: 1.5rem;
    font-weight: 700;
}

.why-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.closing-statement {
    max-width: 800px;
    margin: 3rem auto 0;
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
    color: #1E40AF;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #1E293B;
    color: #ffffff;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #F59E0B;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #CBD5E1;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 2rem;
    text-align: center;
    color: #CBD5E1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section h2 {
        font-size: 2rem;
    }
}
/* Content Sections - More Spacing */
.content-section {
    padding: 6rem 0;
    margin-bottom: 3rem;
}

.text-content p {
    margin-bottom: 2.5rem;
    line-height: 2;
}

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

.content-section h2 {
    margin-bottom: 3rem;
}

.check-list {
    margin: 2rem 0 3rem 0;
}

.check-list li {
    margin-bottom: 1.5rem;
}
/* Services Page Specific Styles */
.service-box {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 4rem;
}

.service-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.service-subtitle {
    color: #0EA5E9;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1rem 0 2rem 0;
}

.service-box h3 {
    font-size: 1.3rem;
    margin: 3rem 0 1.5rem 0;
    color: #000;
}

.outcome-box {
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
}

.outcome-box strong {
    color: #92400E;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.outcome-box p {
    margin: 0;
    color: #000;
}

.cta-note {
    font-size: 0.95rem;
    color: #64748B;
    font-style: italic;
    margin: 1.5rem 0 2rem 0;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.cta-note {
    font-style: italic;
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 2rem;
    border-radius: 8px;
    margin: 1.5rem auto;
    max-width: 700px;
}
/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    color: #0EA5E9;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    color: #000;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #475569;
    margin: 0;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0EA5E9;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}