* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #6a4c93, #c06c84);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}



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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #c06c84 0%, #6a4c93 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6a4c93;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #c06c84;
}

.feature-item h4 {
    color: #6a4c93;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #6a4c93;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-items: center;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid #c06c84;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #c06c84;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #6a4c93;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 5px 0;
    color: #555;
}

.service-features li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #c06c84, #6a4c93);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    background: linear-gradient(135deg, #c06c84, #6a4c93);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    margin: 0 30px;
}

.step-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    border-left: 4px solid #c06c84;
}

.step-content h3 {
    color: #6a4c93;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #6a4c93, #c06c84);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #c06c84;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.testimonial cite {
    font-weight: bold;
    color: #6a4c93;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial h3 {
    color: #6a4c93;
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
}

.testimonial p {
    text-align: center;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: #6a4c93;
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .step-number {
        position: absolute;
        left: -60px;
        margin: 0;
    }
    
    .step-content {
        max-width: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation - fadeInUp removed for better user experience */
.fade-in {
    /* No animation - immediate display */
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Print Styles */
@media print {
    header, footer, .cta-button {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .hero {
        background: none;
        color: black;
        padding: 20px 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card {
        border: 2px solid #000;
    }
    
    .cta-button {
        border: 2px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #c06c84 0%, #6a4c93 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #6a4c93;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-form-section p {
    color: #666;
    margin-bottom: 2rem;
}

/* Form Styles */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #c06c84;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #6a4c93;
    font-weight: 600;
    font-size: 1rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c06c84;
    box-shadow: 0 0 0 3px rgba(192, 108, 132, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

/* Contact Info Styles */
.contact-info-block {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #c06c84;
}

.contact-info-block h3 {
    color: #6a4c93;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-info-block p {
    margin-bottom: 5px;
    color: #555;
}

.contact-info-block a {
    color: #c06c84;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-block a:hover {
    color: #6a4c93;
    text-decoration: underline;
}

.info-note {
    font-size: 0.9rem;
    color: #888 !important;
    font-style: italic;
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Responsive: single column on mobile */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #c06c84;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: #6a4c93;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #c06c84 0%, #6a4c93 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

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

.services-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-overview {
    padding: 80px 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.overview-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-top: 4px solid #c06c84;
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.overview-item h3 {
    color: #6a4c93;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.overview-item p {
    color: #666;
    line-height: 1.6;
}

.services-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-detail {
    margin-bottom: 80px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-detail.reverse {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.service-content {
    padding: 60px;
}

.service-info {
    max-width: 1000px;
    margin: 0 auto;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-detail h3 {
    font-size: 2.5rem;
    color: #6a4c93;
    margin-bottom: 10px;
}

.service-subtitle {
    font-size: 1.3rem;
    color: #c06c84;
    margin-bottom: 30px;
    font-weight: 600;
}

.service-description {
    margin-bottom: 40px;
}

.service-description > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-description h4 {
    color: #6a4c93;
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #c06c84;
    padding-bottom: 5px;
    display: inline-block;
}

.detailed-features {
    list-style: none;
    margin-bottom: 30px;
}

.detailed-features li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}

.detailed-features li:last-child {
    border-bottom: none;
}

.detailed-features li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

.detailed-features strong {
    color: #6a4c93;
}

.impact-list {
    list-style: none;
    background: linear-gradient(135deg, #6a4c93, #c06c84);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.impact-list li {
    padding: 8px 0;
    line-height: 1.5;
}

.impact-list li::before {
    content: "📈";
    margin-right: 10px;
}

.service-cta {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e1e5e9;
}

.cta-text {
    font-size: 1.2rem;
    color: #6a4c93;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-button.secondary {
    background: linear-gradient(45deg, #6a4c93, #c06c84);
    border: 2px solid transparent;
}

.cta-button.secondary:hover {
    background: white;
    color: #6a4c93;
    border-color: #6a4c93;
}

.service-packages {
    padding: 80px 0;
    background: white;
}

.packages-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.package-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.package-card.featured {
    background: linear-gradient(135deg, #6a4c93, #c06c84);
    color: white;
    transform: scale(1.05);
    border-color: #ffd700;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #6a4c93;
}

.package-card.featured h3 {
    color: white;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    color: #c06c84;
    margin-bottom: 15px;
}

.package-card.featured .package-price {
    color: #ffd700;
}

.package-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.package-card.featured .package-description {
    color: rgba(255,255,255,0.9);
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-features li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.package-card.featured .package-features li {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.package-features li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

.package-card.featured .package-features li::before {
    color: #ffd700;
}

.package-cta {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.custom-solution {
    text-align: center;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    border: 2px dashed #c06c84;
}

.custom-solution h3 {
    color: #6a4c93;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.custom-solution p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.trust-indicators {
    padding: 80px 0;
    background: #f8f9fa;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.trust-item h3 {
    color: #6a4c93;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

.final-cta {
    background: linear-gradient(135deg, #6a4c93, #c06c84);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: 30px;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 18px 35px;
}

.guarantee {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Responsive Styles for Services Page */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero p {
        font-size: 1.1rem;
    }
    
    .service-content {
        padding: 40px 30px;
    }
    
    .service-detail h3 {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .overview-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Process Page Styles */
.process-hero {
    background: linear-gradient(135deg, #c06c84 0%, #6a4c93 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

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

.process-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-overview {
    padding: 80px 0;
    background: white;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.stat-highlight {
    background: linear-gradient(135deg, #6a4c93, #c06c84);
    color: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-highlight h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.stat-highlight p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.process-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-top: 4px solid #c06c84;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: #6a4c93;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Phase Styles */
.process-phases {
    padding: 80px 0;
    background: #f8f9fa;
}

.phase-detail {
    margin-bottom: 60px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.phase-detail.reverse {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.phase-header {
    background: linear-gradient(135deg, #6a4c93, #c06c84);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.phase-number {
    font-size: 4rem;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phase-info h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.phase-duration {
    font-size: 1.2rem;
    opacity: 0.9;
}

.phase-content {
    padding: 60px;
}

.phase-description h4 {
    color: #6a4c93;
    font-size: 2rem;
    margin-bottom: 20px;
}

.phase-description > p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.phase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* 2-2-1 Layout for phase sections */
@media (min-width: 768px) {
    .phase-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto 40px auto;
    }
}

.phase-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #c06c84;
}

.phase-section h5 {
    color: #6a4c93;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #c06c84;
    padding-bottom: 8px;
}

.phase-list {
    list-style: none;
    margin: 0;
}

.phase-list li {
    padding: 8px 0;
    color: #555;
    line-height: 1.5;
    border-bottom: 1px solid #eee;
}

.phase-list li:last-child {
    border-bottom: none;
}

.phase-list li::before {
    content: "•";
    color: #c06c84;
    font-weight: bold;
    margin-right: 10px;
}

.phase-deliverables {
    background: linear-gradient(135deg, #6a4c93, #c06c84);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.phase-deliverables h5 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.deliverable-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.deliverable-tag {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.phase-outcome {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Investment Section */
.process-investment {
    padding: 80px 0;
    background: white;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.investment-option {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.investment-option.featured {
    background: linear-gradient(135deg, #6a4c93, #c06c84);
    color: white;
    transform: scale(1.05);
    border-color: #ffd700;
}

.investment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.investment-option.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.investment-option h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #6a4c93;
}

.investment-option.featured h3 {
    color: white;
}

.investment-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #c06c84;
    margin-bottom: 10px;
}

.investment-option.featured .investment-price {
    color: #ffd700;
}

.investment-timeline {
    color: #666;
    margin-bottom: 25px;
    font-weight: 600;
}

.investment-option.featured .investment-timeline {
    color: rgba(255,255,255,0.9);
}

.investment-includes {
    text-align: left;
    margin-bottom: 25px;
}

.investment-includes h4 {
    color: #6a4c93;
    margin-bottom: 15px;
    text-align: center;
}

.investment-option.featured .investment-includes h4 {
    color: white;
}

.investment-includes ul {
    list-style: none;
}

.investment-includes li {
    padding: 5px 0;
    color: #555;
}

.investment-option.featured .investment-includes li {
    color: rgba(255,255,255,0.9);
}

.investment-includes li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

.investment-option.featured .investment-includes li::before {
    color: #ffd700;
}

.investment-ideal {
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
}

.investment-option.featured .investment-ideal {
    color: rgba(255,255,255,0.8);
}

.investment-cta {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.investment-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.investment-note {
    text-align: center;
    color: #666;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 5px solid #c06c84;
}

.story-metric {
    text-align: center;
    margin-bottom: 20px;
}

.story-metric h3 {
    font-size: 3rem;
    color: #6a4c93;
    margin-bottom: 5px;
}

.story-metric p {
    color: #c06c84;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.story-card h4 {
    color: #6a4c93;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.story-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.story-tag {
    background: #f8f9fa;
    color: #6a4c93;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid #e1e5e9;
}

/* Process FAQ */
.process-faq {
    padding: 80px 0;
    background: white;
}

/* Responsive Styles for Process Page */
@media (max-width: 768px) {
    .process-hero h1 {
        font-size: 2.5rem;
    }
    
    .process-hero p {
        font-size: 1.1rem;
    }
    
    .phase-header {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .phase-number {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .phase-content {
        padding: 40px 30px;
    }
    
    .phase-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-grid {
        grid-template-columns: 1fr;
    }
    
    .investment-option.featured {
        transform: none;
    }
    
    .overview-stats,
    .process-benefits,
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #c06c84 0%, #6a4c93 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

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

.about-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
}

.veteran-badge {
    background: #c41e3a;
    color: white;
}

.turboware-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

/* Our Story */
.our-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text h2 {
    color: #6a4c93;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #c06c84;
    text-align: center;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.highlight-item h3 {
    color: #6a4c93;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.highlight-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Veteran Owned Section */
.veteran-owned {
    padding: 80px 0;
    background: #f8f9fa;
}

.veteran-content {
    max-width: 1000px;
    margin: 0 auto;
}

.veteran-info h2 {
    color: #6a4c93;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.veteran-info > p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
}

.veteran-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid #c41e3a;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.value-item h4 {
    color: #6a4c93;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.value-item p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.veteran-commitment {
    background: linear-gradient(135deg, #6a4c93, #c06c84);
    color: white !important;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 2rem;
}

.veteran-commitment p {
    color: white !important;
    margin: 0;
}

/* TurboWare Ecosystem */
.turboware-ecosystem {
    padding: 80px 0;
    background: white;
}

.ecosystem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ecosystem-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.ecosystem-benefits h3 {
    color: #6a4c93;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.ecosystem-list {
    list-style: none;
    margin: 0;
}

.ecosystem-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
    color: #555;
}

.ecosystem-list li:last-child {
    border-bottom: none;
}

.ecosystem-list strong {
    color: #6a4c93;
}

/* Ecosystem Visual */
.ecosystem-visual {
    display: flex;
    justify-content: center;
}

.ecosystem-hub {
    position: relative;
    width: 300px;
    height: 300px;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #6a4c93, #c06c84);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.turboware-logo {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.hub-center p {
    font-size: 0.7rem;
    opacity: 0.9;
}

.hub-branches {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.branch {
    position: absolute;
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
}

.branch.active {
    background: linear-gradient(135deg, #c06c84, #6a4c93);
    color: white;
    border-color: #c06c84;
    transform: scale(1.1);
}

.branch-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.branch:nth-child(1) { top: 10px; left: 50%; transform: translateX(-50%); }
.branch:nth-child(2) { top: 25%; right: 10px; }
.branch:nth-child(3) { bottom: 25%; right: 10px; }
.branch:nth-child(4) { bottom: 10px; left: 50%; transform: translateX(-50%); }
.branch:nth-child(5) { top: 25%; left: 10px; }

/* Our Team */
.our-team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-description p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 3rem;
}

.team-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.advantage-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid #c06c84;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.advantage-item h3 {
    color: #6a4c93;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.advantage-item p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Location & Contact */
.location-contact {
    padding: 80px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.address-block {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #c06c84;
}

.address-block h3 {
    color: #6a4c93;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.address p {
    margin-bottom: 5px;
    color: #555;
    line-height: 1.5;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #c06c84;
}

.contact-item.full-width {
    grid-column: 1 / -1;
}

.contact-item h4 {
    color: #6a4c93;
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-item a {
    color: #c06c84;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.location-map h3 {
    color: #6a4c93;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.map-container {
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.map-note {
    text-align: center;
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
}

/* Our Values */
.our-values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border-top: 5px solid #c06c84;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #6a4c93;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #6a4c93 0%, #c06c84 100%);
    color: white;
    text-align: center;
}

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

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Legal Page Styles */
.legal-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.legal-nav-link {
    color: #6a4c93;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid #6a4c93;
    transition: all 0.3s;
}

.legal-nav-link:hover {
    background: #6a4c93;
    color: white;
}

.legal-section {
    padding: 60px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h3 {
    color: #6a4c93;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid #c06c84;
    padding-bottom: 8px;
}

.legal-content h4 {
    color: #c06c84;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.legal-content p {
    margin-bottom: 15px;
    color: #555;
}

.legal-content ul {
    margin: 15px 0 20px 20px;
    color: #555;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: #c06c84;
    text-decoration: none;
    font-weight: 600;
}

.legal-content a:hover {
    color: #6a4c93;
    text-decoration: underline;
}

.legal-content strong {
    color: #6a4c93;
}

/* Responsive design for legal page */
@media (max-width: 768px) {
    .legal-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .legal-nav-link {
        width: 200px;
        text-align: center;
    }
    
    .legal-content {
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ecosystem-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ecosystem-hub {
        width: 250px;
        height: 250px;
    }
    
    .hub-center {
        width: 100px;
        height: 100px;
    }
    
    .turboware-logo {
        font-size: 1rem;
    }
    
    .branch {
        padding: 8px;
        font-size: 0.7rem;
    }
    
    .branch-icon {
        font-size: 1.2rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .veteran-values {
        grid-template-columns: 1fr;
    }
    
    .team-advantages {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}