:root {
    --primary-color: #4CAF50;
    --secondary-color: #8B4513;
    --accent-color: #FFA500;
    --text-color: #333;
    --light-color: #fff;
    --background-color: #f9f9f9;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

/* Navigation */
.navbar {
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links .btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.nav-links .secondary-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.nav-links .primary-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/hero-bg.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.secondary-btn {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    flex: 1;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--light-color);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/about-hero.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 60px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.mission-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.mission-content ul {
    list-style: none;
    margin-top: 2rem;
    text-align: left;
}

.mission-content ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.mission-content ul li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.values-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.team-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 5px solid var(--primary-color);
}

.team-member h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-color);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .mission-content,
    .values-grid,
    .team-grid {
        padding: 0 1rem;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/services-hero.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 60px;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-grid {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.services-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.service-action {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.service-action .btn {
    flex: 1;
}

.service-benefits {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.service-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .services-grid .container,
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* How It Works Page Styles */
.how-it-works-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/how-it-works-hero.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 60px;
}

.how-it-works-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.how-it-works-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.process-steps {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 100px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.step-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.features-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

@media (max-width: 768px) {
    .how-it-works-hero h1 {
        font-size: 2rem;
    }

    .how-it-works-hero p {
        font-size: 1rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step:not(:last-child):after {
        display: none;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/contact-hero.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 60px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.map-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Equipment Page Styles */
.equipment-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/equipment-hero.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 60px;
}

.equipment-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.equipment-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.equipment-filters {
    padding: 3rem 0;
    background-color: var(--light-color);
}

.filter-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: var(--text-color);
}

.filter-group select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--light-color);
}

.equipment-list {
    padding: 3rem 0;
    background-color: var(--background-color);
}

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

.equipment-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.equipment-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.availability-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.equipment-details {
    padding: 1.5rem;
}

.equipment-details h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.vendor-info,
.location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.vendor-info i,
.location-info i {
    color: var(--primary-color);
}

.pricing {
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.daily-rate,
.weekly-rate {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.daily-rate .label,
.weekly-rate .label {
    color: var(--text-color);
}

.daily-rate .price,
.weekly-rate .price {
    color: var(--primary-color);
    font-weight: 600;
}

.specifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin: 1rem 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.spec-item span {
    font-size: 0.9rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .equipment-hero h1 {
        font-size: 2rem;
    }

    .equipment-hero p {
        font-size: 1rem;
    }

    .filter-container {
        grid-template-columns: 1fr;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }
}

/* Labor Page Styles */
.labor-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/labor-hero.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 60px;
}

.labor-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.labor-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.labor-filters {
    padding: 3rem 0;
    background-color: var(--light-color);
}

.labor-list {
    padding: 3rem 0;
    background-color: var(--background-color);
}

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

.labor-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.labor-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.labor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.labor-details {
    padding: 1.5rem;
}

.labor-details h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.specialization,
.location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.specialization i,
.location-info i {
    color: var(--primary-color);
}

.pricing {
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.daily-rate,
.monthly-rate {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.daily-rate .label,
.monthly-rate .label {
    color: var(--text-color);
}

.daily-rate .price,
.monthly-rate .price {
    color: var(--primary-color);
    font-weight: 600;
}

.specifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin: 1rem 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.spec-item span {
    font-size: 0.9rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .labor-hero h1 {
        font-size: 2rem;
    }

    .labor-hero p {
        font-size: 1rem;
    }

    .labor-grid {
        grid-template-columns: 1fr;
    }
}

/* Problems & Solutions Section */
.problems-solutions {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.problems-solutions h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.solution-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.problem-section {
    padding: 1.5rem;
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.problem-section h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.problem-section img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin: 1rem 0;
}

.problem-section p {
    opacity: 0.9;
}

.solution-section {
    padding: 1.5rem;
}

.solution-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.solution-section ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.solution-section ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.solution-section ul li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem;
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Enhanced CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('../images/cta-bg.jpg') center/cover;
    color: var(--light-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    font-size: 1.2rem;
    padding: 1rem 3rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .problems-solutions h2 {
        font-size: 2rem;
    }

    .solution-card {
        margin: 0 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* App Features Section */
.app-features {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.app-features h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: var(--background-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.feature-image {
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 1.5rem;
}

.feature-content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* App Download Section */
.app-download {
    text-align: center;
    padding: 3rem;
    background-color: var(--primary-color);
    border-radius: 15px;
    color: var(--light-color);
    margin-top: 2rem;
}

.app-download h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.app-download p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
}

.download-btn i {
    font-size: 2rem;
}

.download-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.download-btn small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-btn strong {
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .app-features h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

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

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Dashboard Styles */
.dashboard {
    padding: 2rem 0;
    margin-top: 60px;
    background-color: var(--background-color);
    min-height: calc(100vh - 60px);
}

.dashboard-header {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.user-welcome h1 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-info h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.stat-info p {
    color: var(--text-color);
    opacity: 0.7;
}

/* Dashboard Navigation */
.dashboard-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: none;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Bookings Tab */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.filters {
    display: flex;
    gap: 1rem;
}

.filters select,
.filters input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.bookings-list {
    display: grid;
    gap: 1.5rem;
}

.booking-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.booking-info {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.customer-details h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.customer-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.booking-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-item .label {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

.detail-item .value {
    color: var(--text-color);
    font-weight: 500;
}

.booking-status {
    text-align: right;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-badge.upcoming {
    background-color: #e3f2fd;
    color: #1976d2;
}

.status-badge.ongoing {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-badge.completed {
    background-color: #f5f5f5;
    color: #616161;
}

.booking-actions {
    display: flex;
    gap: 1rem;
}

.booking-actions .btn {
    flex: 1;
    padding: 0.8rem;
}

.accept-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.reject-btn {
    background-color: #f44336;
    color: var(--light-color);
}

.details-btn {
    background-color: var(--background-color);
    color: var(--text-color);
}

.complete-btn {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* Profile Tab */
.profile-section {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.profile-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-image {
    position: relative;
    width: 150px;
    height: 150px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.edit-photo-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.profile-info h2 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.profile-info p {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.profile-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dashboard-header {
        padding: 1.5rem;
    }

    .quick-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-nav {
        overflow-x: auto;
        padding: 0.5rem;
    }

    .booking-info {
        grid-template-columns: 1fr;
    }

    .booking-details {
        grid-template-columns: 1fr;
    }

    .booking-actions {
        flex-direction: column;
    }

    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Login Page Styles */
.login-section {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    margin-top: 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
                url('../images/login-bg.jpg') center/cover;
}

.login-container {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 500px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-color);
    opacity: 0.8;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form .input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.login-form .input-group i {
    position: absolute;
    left: 1rem;
    color: var(--text-color);
    opacity: 0.7;
}

.login-form .input-group input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.login-form .input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-color);
    opacity: 0.7;
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remember-me input[type="checkbox"] {
    accent-color: var(--primary-color);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.social-login {
    text-align: center;
    margin-bottom: 1.5rem;
}

.social-login p {
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 1rem;
    position: relative;
}

.social-login p:before,
.social-login p:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #ddd;
}

.social-login p:before {
    left: 0;
}

.social-login p:after {
    right: 0;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn.google:hover {
    background-color: #DB4437;
    border-color: #DB4437;
    color: white;
}

.social-btn.facebook:hover {
    background-color: #4267B2;
    border-color: #4267B2;
    color: white;
}

.register-link {
    text-align: center;
}

.register-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-container {
        margin: 0 1rem;
        padding: 2rem;
    }

    .login-header h2 {
        font-size: 1.8rem;
    }

    .social-buttons {
        flex-direction: column;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    margin: 2rem auto;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

/* Login Form Styles */
.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 1rem;
    color: #666;
}

.input-group input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #4CAF50;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.forgot-password {
    color: #4CAF50;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.social-login {
    text-align: center;
    margin-bottom: 1.5rem;
}

.social-login p {
    color: #666;
    margin-bottom: 1rem;
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #ddd;
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.social-btn.google:hover {
    background-color: #f1f1f1;
}

.social-btn.facebook:hover {
    background-color: #e7f0ff;
}

.register-link,
.login-link {
    text-align: center;
}

.register-link a,
.login-link a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

.register-link a:hover,
.login-link a:hover {
    text-decoration: underline;
}

/* Registration Form Styles */
.registration-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    background: none;
    border-bottom: 2px solid #ddd;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #4CAF50;
    border-bottom-color: #4CAF50;
}

.registration-form {
    display: none;
}

.registration-form.active {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .social-buttons {
        flex-direction: column;
    }

    .registration-tabs {
        flex-direction: column;
    }
}

/* Error Message Styles */
.error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 0.75rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

.error-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Booking Modal Styles */
.booking-container {
    max-width: 600px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-header h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: var(--text-color);
    opacity: 0.8;
}

.booking-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.booking-form .form-group.full-width {
    grid-column: 1 / -1;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    z-index: 1100;
    animation: slideIn 0.3s ease;
}

.notification.success {
    background-color: #4caf50;
}

.notification.error {
    background-color: #f44336;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .booking-form .form-grid {
        grid-template-columns: 1fr;
    }

    .service-action {
        flex-direction: column;
    }

    .notification {
        left: 20px;
        right: 20px;
        text-align: center;
    }
}

/* Pricing Hero Section */
.pricing-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/pricing-hero.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 60px;
}

.pricing-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.pricing-section:nth-child(even) {
    background-color: var(--background-color);
}

.pricing-section h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* Pricing Card */
.pricing-card {
    background-color: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
}

.pricing-header p {
    color: var(--text-color);
    opacity: 0.8;
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.pricing-features i {
    color: var(--primary-color);
}

.pricing-action {
    text-align: center;
}

.pricing-action .btn {
    width: 100%;
}

/* Offers Section */
.offers-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.offer-card {
    background-color: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

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

.offer-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #ff4757;
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.offer-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.offer-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.offer-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.offer-features i {
    color: var(--primary-color);
}

.offer-price {
    margin-bottom: 1.5rem;
    text-align: center;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-color);
    opacity: 0.7;
    margin-right: 1rem;
}

.discounted-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Custom Package Section */
.custom-package {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('../images/custom-package-bg.jpg') center/cover;
    color: var(--light-color);
}

.custom-package h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.custom-package p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.custom-package .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2rem;
    }

    .pricing-hero p {
        font-size: 1rem;
    }

    .pricing-section h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .pricing-grid,
    .offers-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .pricing-card,
    .offer-card {
        margin-bottom: 2rem;
    }

    .custom-package h2 {
        font-size: 2rem;
    }

    .custom-package p {
        font-size: 1rem;
    }
}

/* Problem Card Styles */
.problem-card {
    background-color: var(--light-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.problem-header {
    background-color: #8B4513;  /* Brown color as shown in the image */
    color: var(--light-color);
    padding: 2rem;
}

.problem-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.problem-header img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1rem 0;
}

.problem-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.solution-content {
    padding: 2rem;
    background-color: var(--light-color);
}

.solution-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.solution-features li i {
    color: var(--primary-color);
}

.solution-content .btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.solution-content .btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .problem-header {
        padding: 1.5rem;
    }

    .problem-header h2 {
        font-size: 1.5rem;
    }

    .problem-header p {
        font-size: 1rem;
    }

    .solution-content {
        padding: 1.5rem;
    }
}

/* Map Vendor Popup Styles */
.vendor-popup-container {
    padding: 0;
}

.vendor-popup {
    padding: 15px;
    max-width: 300px;
}

.vendor-popup h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.vendor-rating {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vendor-rating .stars {
    color: #FFD700;
    letter-spacing: 2px;
}

.vendor-rating .rating-value {
    color: var(--text-color);
    font-weight: 500;
}

.vendor-details {
    margin-bottom: 15px;
}

.vendor-details p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.vendor-details i {
    color: var(--primary-color);
    width: 16px;
}

.pricing-info {
    background-color: var(--background-color);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.pricing-info p {
    margin-bottom: 5px;
}

.vendor-features {
    margin-bottom: 15px;
}

.vendor-features ul {
    list-style: none;
    margin: 5px 0;
    padding-left: 5px;
}

.vendor-features li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 3px;
    font-size: 0.9rem;
}

.vendor-features li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.vendor-services {
    margin-bottom: 15px;
}

.vendor-services p:last-child {
    font-size: 0.9rem;
    color: var(--text-color);
}

.vendor-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.vendor-stats p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vendor-stats i {
    color: var(--primary-color);
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.contact-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--light-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.contact-btn:hover {
    background-color: #3d8b40;
}

/* Map Filter Styles */
.map-filters {
    position: sticky;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--light-color);
    padding: 15px 30px;
    box-shadow: var(--shadow);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.filter-group {
    margin-bottom: 0;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 500;
    white-space: nowrap;
}

.filter-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    background-color: var(--light-color);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Map Container Style */
#map {
    height: calc(100vh - 120px);
    width: 100%;
    margin-top: 0;
}

@media (max-width: 768px) {
    .map-filters {
        position: sticky;
        top: 60px;
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .filter-group {
        width: 100%;
    }

    #map {
        height: calc(100vh - 280px);
    }
}

/* Location Filter Styles */
.location-filter {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.location-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.location-btn {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background-color: var(--light-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.location-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.location-btn i {
    font-size: 14px;
}

.current-location {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
    opacity: 0.8;
}

/* Geocoder Search Control Styles */
.leaflet-control-geocoder {
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    background-clip: padding-box;
    background-color: var(--light-color);
    box-shadow: none;
    margin: 10px !important;
    transition: width 0.3s ease;
}

.leaflet-control-geocoder-form {
    display: flex;
    align-items: center;
}

.leaflet-control-geocoder-form input {
    border: none;
    padding: 8px;
    width: 100%;
    font-size: 14px;
    border-radius: 4px;
}

.leaflet-control-geocoder-form input:focus {
    outline: none;
}

.leaflet-control-geocoder-icon {
    border: none;
    background-color: transparent;
    background-image: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.leaflet-control-geocoder-icon:before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--text-color);
}

.leaflet-control-geocoder-alternatives {
    background-color: var(--light-color);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.leaflet-control-geocoder-alternatives li {
    padding: 8px;
    cursor: pointer;
    border-top: 1px solid #eee;
}

.leaflet-control-geocoder-alternatives li:hover {
    background-color: var(--background-color);
}

.leaflet-control-geocoder-expanded {
    width: 300px !important;
}

@media (max-width: 768px) {
    .location-actions {
        flex-direction: column;
    }

    .leaflet-control-geocoder-expanded {
        width: calc(100% - 20px) !important;
    }
}

/* Resource Tracking Page Styles */
.resource-tracking {
    margin-top: 60px;
    height: calc(100vh - 60px);
    position: relative;
}

.map-container {
    height: 100%;
    position: relative;
}

/* Stats Bar Styles */
.stats-bar {
    position: absolute;
    top: 80px;
    right: 20px;
    z-index: 1000;
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 250px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.stat-info {
    flex: 1;
}

.stat-info label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 2px;
}

.stat-info span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Map Container Adjustments */
#map {
    height: 100%;
    width: 100%;
    z-index: 1;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .stats-bar {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        width: calc(100% - 40px);
        display: flex;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .stat-item {
        margin-bottom: 0;
        flex: 1;
    }

    .stat-item i {
        font-size: 1.2rem;
    }

    .stat-info label {
        font-size: 0.7rem;
    }

    .stat-info span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        flex-direction: column;
        gap: 10px;
    }

    .stat-item {
        justify-content: center;
    }
}

.language-selector {
    margin-left: 1rem;
    position: relative;
}

.language-selector select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    padding-right: 2rem;
}

.language-selector::after {
    content: '▼';
    font-size: 0.8rem;
    color: #666;
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .language-selector {
        margin: 1rem 0;
    }
    
    .language-selector select {
        width: 100%;
    }
} 