/* Basic Styles */
:root {
    --primary-orange: #FF8C00; /* Amber/Orange accent */
    --secondary-navy: #1e3a5f; /* Navy accent */
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-color: #333;
    --shadow: rgba(0, 0, 0, 0.05) 0px 1px 3px 0px, rgba(0, 0, 0, 0.02) 0px 1px 2px -1px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

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

h1, h2, h3 {
    color: var(--secondary-navy);
    margin-bottom: 20px;
    font-weight: 600;
}

h1 {
    font-size: 2.8em;
    line-height: 1.1;
}

h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.6em;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-orange);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e07b00; /* Slightly darker orange */
    text-decoration: none;
}

section {
    padding: 60px 0;
}

/* Header */
header {
    background: var(--white);
    padding: 2px 0;
    border-bottom: 1px solid #eee;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

header .logo img {
    height: 50px;
}

.header-cta-btn {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
}

.header-cta-btn:hover {
    background: #c74a1a;
    color: var(--white);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(30, 58, 95, 0.75), rgba(30, 58, 95, 0.75)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80') center/cover no-repeat;
    padding: 80px 0;
    color: var(--white);
}

#hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

#hero .hero-content {
    flex: 2;
    color: var(--white);
}

#hero .hero-content h1 {
    color: var(--white);
}

#hero .hero-content .subtitle {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

#hero .trust-badges span {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

#hero .hero-form {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

#hero .hero-form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8em;
}

#hero .hero-form form input[type="text"],
#hero .hero-form form input[type="email"],
#hero .hero-form form input[type="tel"],
#hero .hero-form form select,
#hero .hero-form form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
}

#hero .hero-form form button {
    width: 100%;
    background: var(--primary-orange);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

#hero .hero-form form button:hover {
    background: #e07b00;
}

/* Services Section */
#services {
    background: var(--light-gray);
}

#services .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

#services .card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

#services .card:hover {
    transform: translateY(-5px);
}

#services .card h3 {
    margin-bottom: 15px;
}

/* Problem -> Solution Section */
#problems-solutions {
    background: var(--white);
    text-align: center;
}

#problems-solutions .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

#problems-solutions .problem-solution-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#problems-solutions .problem {
    font-weight: 600;
    color: var(--primary-orange);
    font-size: 1.1em;
}

#problems-solutions .arrow {
    font-size: 1.5em;
    color: var(--secondary-navy);
    margin: 10px 0;
}

#problems-solutions .solution {
    font-weight: 600;
    color: var(--secondary-navy);
    font-size: 1.1em;
}

/* Price Match Guarantee Section */
#price-match {
    background: var(--secondary-navy);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

#price-match h2 {
    color: var(--white);
    margin-bottom: 20px;
}

#price-match p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#price-match .btn {
    background: var(--primary-orange);
    color: var(--white);
    font-size: 1.1em;
    padding: 15px 30px;
}

#price-match .btn:hover {
    background: #e07b00;
}

/* Why Choose Us Section */
#why-choose-us {
    background: var(--white);
    text-align: center;
}

#why-choose-us ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

#why-choose-us ul li {
    background: var(--light-gray);
    padding: 15px 20px;
    border-radius: 5px;
    text-align: left;
    font-weight: 500;
    position: relative;
    padding-left: 40px; /* Space for checkmark */
    box-shadow: var(--shadow);
}

#why-choose-us ul li::before {
    content: '\2713'; /* Green checkmark */
    color: green;
    font-size: 1.2em;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Stats Bar */
#stats {
    background: var(--primary-orange);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

#stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#stats .stat-item {
    margin: 20px;
}

#stats .stat-item .counter {
    font-size: 3em;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

#stats .stat-item p {
    font-size: 1.2em;
    margin: 0;
}

/* Industries We Serve */
#industries {
    background: var(--light-gray);
    text-align: center;
}

#industries .industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

#industries .industry-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

#industries .industry-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

#industries .industry-item p {
    padding: 15px;
    font-weight: 600;
    color: var(--secondary-navy);
    margin: 0;
}

/* Testimonials */
#testimonials {
    background: var(--white);
    text-align: center;
}

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

#testimonials .testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

#testimonials .testimonial-card .stars {
    color: var(--primary-orange);
    font-size: 1.5em;
    margin-bottom: 15px;
}

#testimonials .testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

#testimonials .testimonial-card .author {
    font-weight: 600;
    color: var(--secondary-navy);
}

/* FAQ Section */
#faq {
    background: var(--light-gray);
}

#faq .accordion {
    max-width: 800px;
    margin: 0 auto;
}

#faq .accordion-item {
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

#faq .accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    border: none;
    background: none;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--secondary-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#faq .accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

#faq .accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

#faq .accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

#faq .accordion-content.active {
    max-height: 200px; /* Adjust as needed for content height */
    padding-bottom: 20px;
}

/* Contact Section */
#contact {
    background: var(--white);
    text-align: center;
}

#contact .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

#contact .contact-info {
    text-align: left;
}

#contact .contact-info h3 {
    font-size: 1.8em;
    color: var(--secondary-navy);
    margin-bottom: 15px;
}

#contact .contact-info .contact-desc {
    font-size: 1.15em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

#contact .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

#contact .contact-detail .contact-icon {
    font-size: 1.5em;
}

#contact .contact-detail strong {
    color: var(--secondary-navy);
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#contact .contact-info p {
    font-size: 1.1em;
    line-height: 1.8;
}

#contact .contact-form {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

#contact .contact-form form input[type="text"],
#contact .contact-form form input[type="email"],
#contact .contact-form form input[type="tel"],
#contact .contact-form form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
}

#contact .contact-form form button {
    width: 100%;
    background: var(--primary-orange);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

#contact .contact-form form button:hover {
    background: #e07b00;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo-img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.95em;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    font-size: 0.95em;
    color: rgba(255,255,255,0.7);
}

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

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: rgba(255,255,255,0.5);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    header .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    #hero .container {
        flex-direction: column;
    }

    #hero .hero-content, #hero .hero-form {
        flex: none;
        width: 100%;
    }

    #services .service-cards,
    #problems-solutions .solution-grid,
    #industries .industry-grid,
    #testimonials .testimonial-cards,
    #contact .contact-grid {
        grid-template-columns: 1fr;
    }

    #stats .container {
        flex-direction: column;
    }

    #why-choose-us ul {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations */
h2 {
    animation: fadeUp 0.8s ease-out forwards;
}

#hero .hero-content h1 {
    animation: heroFadeInLeft 1s ease-out forwards;
}

#hero .hero-content .subtitle {
    animation: fadeUp 0.8s ease-out 0.2s forwards;
}

#hero .trust-badges span {
    animation: fadeUp 0.8s ease-out 0.4s forwards;
}

