/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Header and Navigation */
header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-top-bar {
    background-color: #666;
    padding: 0.5rem 0;
    width: 100%;
}

.header-top-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-block;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #e0e0e0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.logo-container {
    height: 150px;
    width: 150px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 2rem;
    z-index: 10;
}

.logo-image {
    height: 150px;
    width: auto;
    /* Logo spills out over the grey top bar */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    justify-content: flex-end;
}

.nav-tagline {
    text-align: right;
}

.nav-tagline p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.nav-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #333;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #333;
    transition: background-color 0.2s ease, color 0.2s ease;
    box-sizing: border-box;
    white-space: nowrap;
}

.nav-cta:hover {
    background-color: #555;
    border-color: #555;
    display: inline-block;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    margin-top: 100px; /* Space for fixed header */
    margin-bottom: 0;
    padding: 4rem 0 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: grayscale(100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    width: 100%;
    max-width: 66%;
    position: relative;
    z-index: 3;
}

.hero-company-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 400;
}

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

.hero-cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    letter-spacing: 0.05em;
    transition: background-color 0.2s ease;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

.hero-cta-button:hover {
    background-color: #f0f0f0;
    display: inline-block;
}

.hero-cta-button-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #ffffff;
    letter-spacing: 0.05em;
    transition: background-color 0.2s ease, color 0.2s ease;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

.hero-cta-button-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    display: inline-block;
}



/* Services Section */
.services-section {
    padding: 3rem 2rem;
    margin-top: 0;
    margin-bottom: 2.5rem;
    background-color: #E6E6E6;
    background-image: url('services-bg-01.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
}

.services-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    gap: 4rem;
    align-items: start;
}

.services-intro {
    padding-right: 2rem;
}

.services-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.services-cta-link {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #333;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #333;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.services-cta-link:hover {
    background-color: #555;
    border-color: #555;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    margin: 1.5rem 1.5rem 1rem;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
    padding-bottom: 1.5rem;
}

/* About Us Section */
.about-us-section {
    padding: 0;
    margin-bottom: 2.5rem;
}

.about-us-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-us-text {
    padding-right: 2rem;
}

.about-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.about-us-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.about-tab {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    margin-bottom: -1px;
}

.about-tab:hover {
    color: #222;
}

.about-tab.active {
    color: #222;
    border-bottom-color: #222;
}

.about-content {
    position: relative;
    min-height: 150px;
    margin-bottom: 2rem;
}

.about-content-item {
    display: none;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

.about-content-item.active {
    display: block;
}

.about-cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #333;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #333;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.about-cta-button:hover {
    background-color: #555;
    border-color: #555;
}

.about-us-image {
    width: 100%;
}

.about-image-placeholder {
    width: 100%;
    height: 500px;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Our Process Section */
.our-process {
    padding: 3rem 2rem;
    margin-bottom: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-header {
    margin-bottom: 3rem;
}

.process-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.our-process h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.2;
}

.process-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    max-width: 100%;
    overflow: hidden;
}

.process-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
}

.process-step-item:last-child {
    padding-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid transparent;
    box-sizing: border-box;
}

.step-number-active {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.process-step-item {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.process-step-item:hover {
    opacity: 0.8;
}

.process-step-item.active .step-number {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.step-connector {
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% - 30px);
    border-left: 2px dashed #ccc;
}

.process-step-item:last-child .step-connector {
    display: none;
}

.process-step-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    margin: 0;
    line-height: 1.3;
}

.process-content-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.process-content-slider .slick-list {
    width: 100%;
}

.process-content-slider .slick-slide {
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
}

.process-content-slider .slick-slide.slick-active {
    opacity: 1;
}

.process-content-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-right: 1rem;
}

.process-content-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
}

.process-content-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Services hero section */
.services-hero {
    text-align: center;
    padding: 2rem 0 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
}

/* Services content */
.services-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-item h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

/* Call-to-action button */
.cta-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #333;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #333;
    transition: background-color 0.2s ease, color 0.2s ease;
    box-sizing: border-box;
}

.cta-button:hover {
    background-color: #555;
    border-color: #555;
    display: inline-block;
}

html {
    scroll-behavior: smooth;
}

/* Scroll offset so fixed header doesn't overlap section content */
#what-we-do {
    scroll-margin-top: 120px;
}

#contact {
    scroll-margin-top: 120px;
}

/* Contact Banner Section */
.contact-banner {
    background-color: #E6E6E6;
    color: #333;
    padding: 4rem 2rem;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    position: relative;
    background-image: url('services-bg-01.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
}

.contact-banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-banner h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.contact-banner p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-banner .cta-button {
    background-color: #333;
    color: #ffffff;
    border-color: #333;
}

.contact-banner .cta-button:hover {
    background-color: #555;
    border-color: #555;
}

.contact-email-options {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: #555;
}

.contact-email-options a {
    color: #333;
    text-decoration: underline;
}

.contact-email-options a:hover {
    color: #555;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 80px;
    width: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-company {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.footer-tagline {
    font-size: 1rem;
    color: #cccccc;
    font-style: italic;
    margin: 0;
}

.footer-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-details p {
    margin: 0;
    font-size: 0.95rem;
    color: #ffffff;
}

.footer-details a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-details a:hover {
    color: #cccccc;
}

.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

/* Responsive design */
@media (max-width: 968px) {
    .services-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-us-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-us-text {
        padding-right: 0;
    }

    .about-image-placeholder {
        height: 400px;
    }

    .process-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-step-item {
        padding-bottom: 1.5rem;
    }

    .process-content-item h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    /* Header top bar - keep on one line */
    .header-top-bar {
        padding: 0.4rem 0;
    }

    .header-top-content {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: flex-end;
        padding: 0 1rem;
        flex-wrap: wrap;
    }

    .contact-link {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    /* Header nav - condensed, logo left, CTA right */
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.75rem 1rem;
        padding-top: 0.75rem;
    }

    .logo-container {
        position: static;
        top: auto;
        left: auto;
        height: 60px;
        width: 60px;
        margin-bottom: 0;
    }

    .logo-image {
        height: 60px;
    }

    .nav-right {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        margin-left: auto;
    }

    .nav-tagline {
        display: none; /* Hide tagline on mobile */
    }

    .nav-cta {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    /* Hero banner fixes */
    .hero-banner {
        margin-top: 80px; /* Reduced for condensed header */
        min-height: 450px;
        padding: 2rem 0 0;
    }

    .hero-image-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        background-size: cover;
        background-position: center;
    }

    .hero-content {
        padding: 3rem 1.5rem 2rem;
        max-width: 100%;
    }

    .hero-company-name {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .hero-headline {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta-button,
    .hero-cta-button-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 600;
        text-align: center;
    }

    /* Services section */
    .services-section {
        padding: 2rem 1rem;
    }

    .services-intro {
        padding-right: 0;
    }

    .services-intro h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .services-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .services-cta-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    /* About Us section */
    .about-us-section {
        padding: 0;
        margin-bottom: 2rem;
    }

    .about-us-content {
        padding: 2rem 1rem;
    }

    .about-us-text h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .about-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .about-tabs {
        margin-bottom: 1.5rem;
    }

    .about-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .about-content {
        margin-bottom: 1.5rem;
    }

    .about-content-item {
        font-size: 0.95rem;
    }

    .about-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .about-image-placeholder {
        height: 300px;
    }

    .our-process {
        padding: 3rem 1.5rem;
    }

    .our-process h2 {
        font-size: 2rem;
    }

    /* Contact banner */
    .contact-banner {
        padding: 2rem 1rem;
    }

    .contact-banner h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .contact-banner p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-banner .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 400px;
    }

    .hero-image-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        background-size: cover;
        background-position: center;
    }

    .service-box {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-box h2 {
        font-size: 1.3rem;
    }

    .image-placeholder {
        height: 250px;
    }

    .why-card {
        padding: 1.25rem;
    }

    .why-card h3 {
        font-size: 1.1rem;
    }

    .our-process h2 {
        font-size: 1.75rem;
    }

    .process-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .process-step-item h3 {
        font-size: 1.1rem;
    }

    .process-content-item h3 {
        font-size: 1.2rem;
    }

    .nav-tagline {
        text-align: center;
    }

    .nav-tagline p {
        font-size: 0.8rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-image {
        height: 60px;
    }

    .footer-company {
        font-size: 1.25rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-details {
        align-items: center;
        gap: 0.4rem;
    }

    .footer-details p {
        font-size: 0.85rem;
    }

    .footer-copyright {
        padding-top: 1rem;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
}
