/* Services Page Styles */

/* Page Banner */
.services-banner {
    color: #e8f0fe;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1556911220-bda9f7f7597b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

/* Services Overview */
.services-overview {
    background-color: #f9f9f9;
    padding: 60px 0;
}

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

.overview-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.overview-card:nth-child(2) .overview-icon {
    background-color: #f5e9dc;
}

.overview-card:nth-child(3) .overview-icon {
    background-color: #ffe5e5;
}

.overview-card:nth-child(4) .overview-icon {
    background-color: #e0f2f1;
}

.overview-icon i {
    font-size: 36px;
    color: #1a73e8;
}

.overview-card:nth-child(2) .overview-icon i {
    color: #d4a76a;
}

.overview-card:nth-child(3) .overview-icon i {
    color: #ff6b6b;
}

.overview-card:nth-child(4) .overview-icon i {
    color: #26a69a;
}

.overview-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.overview-card p {
    color: #777;
    margin-bottom: 0;
}

/* Service Sections */
.service-section {
    padding: 80px 0;
}

.water-services {
    background-color: #f0f8ff;
}

.bakery-services {
    background-color: #fffaf0;
}

.delivery-services {
    background-color: #f5f5f5;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 20px 20px 10px;
    color: #1a73e8;
}

.bakery-services .service-card h3 {
    color: #d4a76a;
}

.service-card p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 60px;
}

.service-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #1a73e8;
    margin-right: 10px;
}

.bakery-services .service-features li i {
    color: #d4a76a;
}

.price-tag {
    position: absolute;
    bottom: 60px;
    left: 20px;
    font-weight: 700;
    color: #333;
}

.service-card .btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

/* Service Highlight */
.service-highlight {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

.service-highlight.reverse {
    flex-direction: row-reverse;
}

.highlight-content {
    flex: 1;
    padding: 40px;
}

.highlight-content h3 {
    color: #1a73e8;
    margin-bottom: 20px;
}

.bakery-services .highlight-content h3 {
    color: #d4a76a;
}

.highlight-content ul {
    list-style: none;
    padding: 0;
}

.highlight-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.highlight-content ul li i {
    color: #1a73e8;
    margin-right: 10px;
}

.bakery-services .highlight-content ul li i {
    color: #d4a76a;
}

.highlight-image {
    flex: 1;
    height: 400px;
}

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

/* Delivery Options */
.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.delivery-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.delivery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.delivery-icon {
    width: 70px;
    height: 70px;
    background-color: #ffe5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.delivery-icon i {
    font-size: 30px;
    color: #ff6b6b;
}

.delivery-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.delivery-card p {
    margin-bottom: 20px;
    color: #777;
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.delivery-features span i {
    color: #ff6b6b;
    margin-right: 8px;
}

/* Delivery Map */
.delivery-map {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

.map-content {
    flex: 1;
    padding: 40px;
}

.map-content h3 {
    color: #ff6b6b;
    margin-bottom: 20px;
}

.area-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.area-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.area-list li i {
    color: #ff6b6b;
    margin-right: 10px;
}

.map-image {
    flex: 1;
    height: 400px;
}

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

/* Pricing Section */
.pricing-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

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

.pricing-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid #1a73e8;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.pricing-header {
    background-color: #f5f5f5;
    padding: 30px;
    text-align: center;
}

.pricing-card.popular .pricing-header {
    background-color: #e8f0fe;
}

.pricing-header h3 {
    margin-bottom: 15px;
    color: #333;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 700;
    color: #1a73e8;
    line-height: 1;
}

.pricing-amount .currency {
    font-size: 24px;
    vertical-align: super;
}

.pricing-amount .period {
    font-size: 16px;
    color: #777;
    font-weight: 400;
}

.pricing-features {
    padding: 30px;
}

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

.pricing-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    margin-right: 10px;
}

.pricing-features ul li i.fa-check {
    color: #1a73e8;
}

.pricing-features ul li i.fa-times {
    color: #ccc;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

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

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: #f9f9f9;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: #e8f0fe;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.faq-icon {
    color: #1a73e8;
    font-size: 16px;
}

.faq-answer {
    background-color: #ffffff;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-highlight, .service-highlight.reverse, .delivery-map {
        flex-direction: column;
    }
    
    .highlight-image, .map-image {
        height: 300px;
        width: 100%;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .service-card .btn {
        position: static;
        margin: 0 20px 20px;
        display: block;
    }
    
    .service-features {
        margin-bottom: 20px;
    }
    
    .price-tag {
        position: static;
        margin: 0 20px 15px;
        display: block;
    }
}

@media (max-width: 576px) {
    .highlight-content, .map-content {
        padding: 20px;
    }
    
    .pricing-amount {
        font-size: 36px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}