/* Operated Cherry Picker Hire - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #222222;
    background-color: #FFFFFF;
}

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

/* Header Styles */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: #0057A0;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

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

.header-main {
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0057A0;
    text-decoration: none;
}

.credentials {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.ipaf-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f5f5f5;
    padding: 8px 15px;
    border-radius: 5px;
}

.google-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #FFD700;
    font-size: 18px;
}

.call-now {
    background-color: #FF6600;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s;
}

.call-now:hover {
    background-color: #e55a00;
}

/* Navigation */
.nav {
    background-color: #0057A0;
    padding: 0;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav li {
    position: relative;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: background-color 0.3s;
}

.nav a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Dropdown Styles */
.nav .dropdown {
    position: relative;
}

.nav .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    top: 100%;
    left: 0;
}

.nav .dropdown-content a {
    color: #0057A0;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.nav .dropdown-content a:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.nav .dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #003d73;
}

.nav .dropdown:hover .dropdown-content {
    display: block;
}

.nav .dropdown > a::after {
    content: " ▼";
    font-size: 12px;
    margin-left: 8px;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #F5F5F5;
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb a {
    color: #0057A0;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,87,160,0.8), rgba(0,87,160,0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f0f0f0" width="1200" height="600"/><rect fill="%230057A0" x="0" y="400" width="1200" height="200" opacity="0.1"/><circle fill="%23FF6600" cx="900" cy="150" r="50" opacity="0.3"/><rect fill="%23FFCC00" x="100" y="100" width="200" height="100" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Hero (for sub-pages) */
.category-hero {
    background: linear-gradient(rgba(0,87,160,0.9), rgba(0,87,160,0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23f0f0f0" width="1200" height="400"/><rect fill="%230057A0" x="0" y="250" width="1200" height="150" opacity="0.1"/><circle fill="%23FF6600" cx="200" cy="100" r="30" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.category-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
}

.category-hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #FF6600;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: white;
    color: #0057A0;
}

/* Alternative secondary button for category pages */
.btn-secondary.category-btn {
    background-color: #0057A0;
    color: white;
    padding: 12px 25px;
    border: none;
    font-size: 16px;
    margin-top: 20px;
}

.btn-secondary.category-btn:hover {
    background-color: #FF6600;
}

/* Main Content Styles */
.main-content {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.content-section h2 {
    font-size: 32px;
    color: #0057A0;
    margin-bottom: 30px;
}

.image-placeholder {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Category Overview */
.category-overview {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-content h2 {
    font-size: 36px;
    color: #0057A0;
    margin-bottom: 30px;
}

.overview-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 10px 0;
    font-size: 16px;
}

.benefits-list li::before {
    content: "✓";
    color: #FF6600;
    font-weight: bold;
    margin-right: 10px;
}

/* Operated Lineup Styles */
.operated-lineup {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.operated-lineup h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #0057A0;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.lineup-slider {
    overflow: hidden;
    position: relative;
}

.lineup-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 30px;
}

.machine-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 350px;
}

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

.machine-card h3 {
    font-size: 24px;
    margin: 20px 0 15px;
    color: #0057A0;
}

/* Equipment Section */
.equipment-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.equipment-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0057A0;
}

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

.equipment-slider {
    overflow: hidden;
    position: relative;
}

.equipment-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 30px;
}

.equipment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 350px;
}

.equipment-card:hover {
    transform: translateY(-10px);
}

.equipment-card .image-placeholder {
    height: 250px;
    border-radius: 0;
}

.equipment-card .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    color: #0057A0;
    margin-bottom: 15px;
}

.specs-list {
    list-style: none;
    margin: 20px 0;
}

.specs-list li {
    padding: 5px 0;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list strong {
    color: #0057A0;
    display: inline-block;
    width: 120px;
}

/* Slider Controls */
.slider-controls,
.equipment-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn,
.equipment-slider-btn {
    background-color: #0057A0;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover,
.equipment-slider-btn:hover {
    background-color: #FF6600;
    transform: scale(1.1);
}

.slider-btn:disabled,
.equipment-slider-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.slider-dots,
.equipment-slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot,
.equipment-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active,
.equipment-slider-dot.active {
    background-color: #0057A0;
}

.lineup-grid,
.equipment-grid {
    display: none; /* Hide the old grid layout */
}

/* Areas We Serve Section */
.areas-serve {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.areas-serve h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #0057A0;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.areas-content p {
    font-size: 18px;
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0057A0;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background-color: #F5F5F5;
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0057A0;
}

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

.benefit-item,
.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.benefit-item:hover,
.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.benefit-item h3,
.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0057A0;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #0057A0;
}

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

.step-item {
    text-align: center;
    position: relative;
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-number {
    background-color: #FF6600;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

.step-item .image-placeholder {
    margin: 20px 0 30px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
}

.step-item .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-item h3 {
    font-size: 22px;
    margin: 0 0 20px;
    color: #0057A0;
    font-weight: bold;
    line-height: 1.3;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #222222;
}

/* Process Section */
.process-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0057A0;
}

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

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.process-step .step-number {
    background-color: #FF6600;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0057A0;
}

/* Pricing Section */
.pricing,
.pricing-section {
    padding: 60px 0;
    background-color: #F5F5F5;
}

.pricing h2,
.pricing-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #0057A0;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.pricing-content h3 {
    font-size: 24px;
    color: #0057A0;
    margin: 30px 0 20px;
}

.pricing-benefits {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-benefits li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-benefits li:last-child {
    border-bottom: none;
}

.pricing-benefits li::before {
    content: "✓";
    color: #FF6600;
    font-weight: bold;
    margin-right: 15px;
    font-size: 18px;
}

.pricing-note {
    font-style: italic;
    color: #666;
    background-color: #F5F5F5;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

/* Coverage Section */
.coverage-section {
    padding: 60px 0;
    background-color: #F5F5F5;
}

.coverage-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #0057A0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.coverage-content h3 {
    font-size: 24px;
    color: #0057A0;
    margin: 30px 0 20px;
}

.industry-list {
    list-style: none;
    margin: 20px 0;
}

.industry-list li {
    padding: 8px 0;
    font-size: 16px;
}

.industry-list li::before {
    content: "🏢";
    margin-right: 10px;
}

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

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #0057A0;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.testimonial-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

blockquote {
    background-color: #F5F5F5;
    padding: 30px;
    border-left: 5px solid #FF6600;
    border-radius: 5px;
    font-style: italic;
}

blockquote p {
    font-size: 20px;
    margin-bottom: 15px;
}

cite {
    font-weight: bold;
    color: #0057A0;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background-color: #F5F5F5;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #0057A0;
}

/* FAQ Styles */
.faq-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #0057A0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0057A0;
}

/* Final CTA Styles */
.final-cta {
    background-color: #0057A0;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #1C1C1C;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #FF6600;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FF6600;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .credentials {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .category-hero h1 {
        font-size: 32px;
    }

    .category-hero p {
        font-size: 18px;
    }

    .nav ul {
        flex-direction: column;
    }

    .nav .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background-color: rgba(255,255,255,0.1);
        min-width: auto;
        border-radius: 0;
    }

    .nav .dropdown-content a {
        color: white;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-left: 40px;
    }

    .nav .dropdown-content a:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

    .dropdown.mobile-open .dropdown-content {
        display: block;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .areas-content,
    .pricing-content,
    .testimonial-content,
    .overview-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-item {
        padding: 30px 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .step-item .image-placeholder {
        height: 150px;
        margin: 15px 0 20px;
    }

    .step-item h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .lineup-container,
    .equipment-container {
        padding: 0 10px;
    }

    .machine-card,
    .equipment-card {
        flex: 0 0 100%;
        min-width: 280px;
        margin-bottom: 20px;
    }

    .slider-controls,
    .equipment-slider-controls {
        margin-top: 30px;
    }

    .slider-btn,
    .equipment-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .content-section h2,
    .operated-lineup h2,
    .areas-serve h2,
    .why-choose h2,
    .how-it-works h2,
    .pricing h2,
    .pricing-section h2,
    .testimonials h2,
    .faq-section h2,
    .final-cta h2,
    .benefits-section h2,
    .equipment-section h2,
    .coverage-section h2,
    .trust-section h2 {
        font-size: 28px;
    }

    /* Mobile dropdown toggle */
    .nav .dropdown > a {
        cursor: pointer;
    }
}

