/* ===================================
   Projexion Landing Page Styles
   =================================== */

/* Root Variables - Brand Colors */
:root {
    --navy-blue: #2A3E55;
    --deep-navy: #1C2A38;
    --gold: #D6B27C;
    --light-gold: #E8CBA0;
    --soft-gray: #C8C8C8;
    --charcoal-gray: #515151;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--charcoal-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--navy-blue);
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    color: var(--navy-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--charcoal-gray);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.logo-placeholder {
    /* width: 45px; */
    /* height: 45px; */
    /* background: linear-gradient(135deg, var(--navy-blue), var(--deep-navy)); */
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-name {
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--charcoal-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

.btn-cta-small {
    background-color: var(--gold);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.btn-cta-small:hover {
    background-color: var(--light-gold);
    border-color: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 178, 124, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-title {
    font-size: 3rem;
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta {
    background-color: var(--gold);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: var(--light-gold);
    border-color: var(--light-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(214, 178, 124, 0.4);
}

.btn-cta-outline {
    background-color: transparent;
    color: var(--navy-blue);
    padding: 0.875rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--navy-blue);
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background-color: var(--navy-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Dashboard Card */
.dashboard-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.dashboard-card .card-header {
    background-color: var(--navy-blue);
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.bg-navy {
    background-color: var(--navy-blue);
}

.dashboard-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--charcoal-gray);
}

.text-gold {
    color: var(--gold);
}

.text-navy {
    color: var(--navy-blue);
}

.bg-gold {
    background-color: var(--gold) !important;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(42, 62, 85, 0.15);
    border-color: var(--gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-card .card-title {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: var(--charcoal-gray);
    font-size: 0.95rem;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.approach-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(42, 62, 85, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-blue), var(--deep-navy));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-title {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-text {
    color: var(--charcoal-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background-color: var(--soft-gray);
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-badge {
    background-color: var(--white);
    color: var(--navy-blue);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.industry-badge:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: scale(1.05);
}

/* Why Projexion Section */
.why-section {
    padding: 80px 0;
    background-color: var(--white);
}

.lead-text {
    font-size: 1.2rem;
    color: var(--navy-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.body-text {
    color: var(--charcoal-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.benefits-list i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefits-list span {
    color: var(--charcoal-gray);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(42, 62, 85, 0.15);
}

.quote-icon {
    color: var(--gold);
    font-size: 2.5rem;
    opacity: 0.5;
}

.testimonial-text {
    color: var(--charcoal-gray);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--navy-blue);
    font-weight: 600;
}

.author-title {
    color: var(--charcoal-gray);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form .form-label {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(214, 178, 124, 0.25);
}

.contact-form .form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.contact-form .form-check-label {
    color: var(--charcoal-gray);
}

/* Footer */
.footer {
    background-color: var(--deep-navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-brand {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-heading {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--light-gold);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(214, 178, 124, 0.4);
}

/* Utility Classes */
.section-header {
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .dashboard-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-cta,
    .btn-cta-outline {
        width: 100%;
        text-align: center;
    }
    
    .services-section,
    .approach-section,
    .industries-section,
    .why-section,
    .testimonials-section,
    .contact-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .dashboard-card {
        margin-top: 2rem;
    }
    
    .industry-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}