/* Navbar Styles */
.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-orange) !important;
}

.navbar-brand span {
    color: var(--primary-orange);
}

.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 6px 0;
}

/* Navbar Links */
.navbar-light .navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(255, 127, 0, 0.85), rgba(255, 149, 0, 0.9)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    max-width: 700px;
}

.btn-primary-custom {
    background-color: var(--primary-orange);
    color: white !important;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: #FF6B00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.3);
    color: white !important;
}

/* Section Titles */
.section-title {
    color: var(--primary-orange);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background-color: var(--primary-orange);
    bottom: -15px;
    left: 0;
    border-radius: 2px;
}

/* Feature Cards */
.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-card h4 {
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-orange);
}

.feature-icon {
    font-size: 2.8rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-orange);
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #000 !important;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-left: 4px solid var(--primary-orange);
}

.client-name {
    color: var(--primary-orange);
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 5px;
}

.client-title {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Service Cards */
.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background-color: var(--primary-orange);
    color: white;
    font-size: 2.5rem;
    padding: 30px;
    text-align: center;
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    color: #333;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-content a {
    color: var(--primary-orange) !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-content a:hover {
    color: #FF6B00 !important;
}

/* Insight Cards */
.insight-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.insight-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.insight-content {
    padding: 25px;
}

.insight-content h5 {
    color: #333;
    margin: 15px 0;
    line-height: 1.4;
}

.insight-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.insight-content a {
    color: var(--primary-orange) !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.insight-content a:hover {
    color: #FF6B00 !important;
}

.insight-date {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary-orange), var(--secondary-orange));
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding-top: 70px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-logo span {
    color: var(--primary-orange);
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-orange);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b7c3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.copyright {
    background-color: #0d0d0d;
    padding: 20px 0;
    margin-top: 50px;
    color: #b0b7c3;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    background-color: rgba(255, 127, 0, 0.1);
    color: var(--primary-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-form input, .contact-form textarea, .contact-form select {
    border-radius: 4px;
    padding: 12px 15px;
    border: 2px solid #ddd;
    margin-bottom: 20px;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 127, 0, 0.25);
    outline: none;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
