/* ============================================
   AL DAHERI CATERING STYLES
   ============================================ */

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.cert-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
    border-color: #ff8c00;
}

.cert-card .cert-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cert-card .cert-icon i {
    font-size: 40px;
    color: white;
}

.cert-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.cert-card p {
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Menu Preview Section */
.menu-preview {
    padding: 80px 0;
    background: white;
}

.menu-tabs {
    margin-top: 50px;
}

.menu-category {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
}

.menu-category h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-category h3 i {
    color: #ff8c00;
    font-size: 32px;
}

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

.menu-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 3px solid #ff8c00;
}

.menu-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.15);
}

.menu-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.menu-item p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

/* Pricing Box */
.pricing-box {
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
    color: white;
}

.pricing-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.pricing-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.price-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item.highlight {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

/* Event Gallery */
.event-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item-masonry {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 300px;
}

.gallery-item-masonry.tall {
    grid-row: span 2;
    height: 620px;
}

.gallery-item-masonry:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.gallery-item-masonry img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Why Choose Us - Al Daheri specific */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.why-choose-us .feature-box {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.why-choose-us .feature-box:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.15);
    transform: translateY(-5px);
    border-color: #ff8c00;
}

.why-choose-us .feature-box .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-choose-us .feature-box .feature-icon i {
    font-size: 35px;
    color: white;
}

.why-choose-us .feature-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.why-choose-us .feature-box p {
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Services Grid - Al Daheri specific */
.services-grid {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-card-image {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.service-card-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

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

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

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

.service-card-image .service-content {
    padding: 25px;
}

.service-card-image .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-card-image .service-icon i {
    font-size: 28px;
    color: white;
}

.service-card-image h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.service-card-image p {
    color: #718096;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section - Al Daheri specific */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

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

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-primary {
    background: white;
    color: #ff8c00;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
    }

    .pricing-items {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-item-masonry.tall {
        grid-row: span 1;
        height: 300px;
    }

    .menu-category {
        padding: 25px;
    }

    .menu-category h3 {
        font-size: 22px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

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

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}