﻿@import url('https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@400;700&display=swap');
/* Fallback to Arial/sans-serif if Helvetica Neue isn't available */

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000;
    line-height: 1.5;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    border-top: 15px solid #a30000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.logo img {
    height: 70px;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.btn-red {
    background-color: #a30000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn-red:hover {
    background-color: #7a0000;
}

.btn-black {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    transition: background-color 0.3s;
}
.btn-black:hover {
    background-color: #333;
}

/* Sections */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 5%;
}

/* Hero Text Section */
.hero-text-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-left {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.hero-text-left h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-text-right {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.hero-text-right p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Hero Image Section */
.hero-image-section {
    height: 400px;
    background: url('/images-1/CanHaulHero2.jpg') center/cover no-repeat;
    width: 100%;
}

/* Discover Section */
.discover-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.discover-left {
    flex: 1;
    min-width: 300px;
    padding: 100px 5% 100px 10%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discover-left h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 500px;
}

.discover-left p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 50px;
}

.arrow-icon {
    font-size: 30px;
    font-weight: 300;
}

.discover-right {
    flex: 1;
    min-width: 300px;
    background: url('/images-1/CanHaul-Waste.jpg') center/cover no-repeat;
    /* If CanHaul-Waste.jpg isn't in images-1, it might be in images-2. We will just use standard img tag or background fallback */
}

/* Services Row */
.services-section {
    text-align: center;
    padding: 100px 5%;
}

.services-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}
.services-section > p {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 15px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
}

.service-card img {
    width: 100%;
    max-width: 180px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Tailored Solutions */
.tailored-section {
    background: #000;
    color: #fff;
    padding: 100px 5%;
    text-align: center;
}

.tailored-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}
.tailored-section > p {
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 15px;
    line-height: 1.8;
}

.tailored-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tailored-card {
    background: #fff;
    color: #000;
    padding: 50px 30px;
    text-align: left;
}

.tailored-card .red-title {
    color: #a30000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tailored-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.tailored-card p {
    font-size: 15px;
    line-height: 1.8;
}

/* Eco Friendly & Stats */
.stats-section {
    padding: 100px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.stats-section h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 60px;
}

.stats-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
}
.stat-item p {
    color: #888;
    font-size: 14px;
}

.stat-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

/* Testimonials */
.testimonials-section {
    background: #000;
    color: #fff;
    padding: 100px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonials-section h2 {
    font-size: 36px;
}
.test-arrows {
    display: flex;
    gap: 10px;
}
.test-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Contact Form */
.contact-wrap {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-wrap h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 700;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.full-width {
    grid-column: 1 / -1;
}

#form-success {
    display: none;
    padding: 20px;
    background: #e6f4ea;
    color: #1e4620;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 1000px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .tailored-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-text-left h1 { font-size: 42px; }
    nav { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}

/* Dropdown CSS */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 100;
    top: 100%;
    left: 0;
    border-radius: 4px;
    overflow: hidden;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 400;
    transition: background-color 0.2s;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #a30000;
}
.dropdown:hover .dropdown-content {
    display: block;
}

/* Animations */
.service-card, .tailored-card, .btn-red, .btn-black {
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
}
.tailored-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

/* Scroll Fade Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Top Bar */
.top-bar {
    background: #f1f1f1;
    color: #333;
    padding: 8px 5%;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 13px;
    font-weight: 600;
}
.top-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Testimonials Carousel */
.testimonials-section {
    background: #000;
    color: #fff;
    padding: 100px 5%;
}
.test-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}
.test-header h2 {
    font-size: 36px;
    margin: 0;
}
.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}
.test-card {
    background: #a30000;
    border-radius: 12px;
    padding: 40px 30px;
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}
.speech-icon {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.speech-icon::before {
    content: "\1F4AC"; /* Speech bubble emoji fallback */
    color: #fff;
    font-size: 18px;
}
.test-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.stars {
    background: #ffd700;
    color: #000;
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    width: max-content;
}
.stars::after {
    content: " \2605";
    font-size: 10px;
    margin-left: 4px;
}
.test-card p {
    font-size: 15px;
    line-height: 1.6;
}
.test-arrows {
    display: flex;
    gap: 10px;
}
.test-arrow {
    width: 40px;
    height: 40px;
    background: #111;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}
.test-arrow:hover { background: #333; }

/* FAQ Accordion */
.faq-section {
    padding: 100px 5%;
    max-width: 900px;
    margin: 0 auto;
}
.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}
.faq-item {
    border-bottom: 1px solid #ddd;
}
.faq-question {
    padding: 20px 0;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #a30000;
    transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .test-card { min-width: 300px; max-width: 300px; }
}

/* Subpage Components */
.sub-hero {
    padding: 100px 5%;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
}
.sub-hero::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.6);
}
.sub-hero h1, .sub-hero p {
    position: relative;
    z-index: 1;
}
.split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.split-left, .split-right {
    flex: 1;
    min-width: 300px;
}
.split-layout img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.bin-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.bin-card img {
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}
.bin-card h3 {
    color: #a30000;
    margin-bottom: 15px;
}

/* Image Slider */
.img-comp-container {
    position: relative;
    height: 400px;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.img-comp-img {
    position: absolute;
    width: auto;
    height: auto;
    overflow: hidden;
}
.img-comp-img img {
    display: block;
    width: 800px;
    height: 400px;
    object-fit: cover;
}
.img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 40px;
    height: 40px;
    background-color: #a30000;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}
.img-comp-slider::after {
    content: '< >';
    color: white;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .img-comp-container { height: 250px; }
    .img-comp-img img { width: 100vw; height: 250px; }
}
