/* ===================================
   CORPORATE CATERING STYLES
   =================================== */

/* Corporate Banner */
.corporate-banner {
    background: linear-gradient(135deg, #d4af37 0%, #c09820 100%);
    color: #fff;
    padding: 2.5rem 0;
    margin: 3rem 0;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.corporate-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.corporate-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.corporate-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.corporate-icon {
    font-size: 3.5rem;
    opacity: 0.95;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.corporate-text {
    flex: 1;
    min-width: 250px;
}

.corporate-text h3 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.corporate-text p {
    font-size: 1.15rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

.corporate-cta {
    background: #fff;
    color: #d4af37;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;
}

.corporate-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    background: #2c1810;
    color: #fff;
    border-color: #fff;
}

.corporate-cta i {
    margin-right: 0.5rem;
}

/* Catering Section */
.catering-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fafafa 0%, #fff 50%, #f9f9f9 100%);
    position: relative;
}

.catering-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2c1810;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #c09820 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 400;
    font-style: italic;
}

.catering-intro {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.catering-intro .lead {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #444;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.catering-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, #d4af37 0%, #c09820 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.catering-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #c09820 0%, #a68616 100%);
}

.catering-menu-btn i {
    font-size: 1.2rem;
}

/* Service Cards */
.catering-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #fff;
    padding: 2.8rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4af37 0%, #c09820 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.featured-service {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    border: 2px solid #d4af37;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #c09820 100%);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #c09820 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c1810;
    text-align: center;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.6rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features i {
    color: #d4af37;
    font-size: 1rem;
}

/* Benefits Section */
.catering-benefits {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #2c1810 0%, #1a0e08 100%);
    border-radius: 20px;
    color: #fff;
}

.catering-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #d4af37;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.benefit-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Packages Section */
.catering-packages {
    margin: 4rem 0;
}

.catering-packages h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #2c1810;
}

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

.package-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.premium-package {
    border: 2px solid #d4af37;
    transform: scale(1.05);
}

.premium-package:hover {
    transform: scale(1.08) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, #d4af37 0%, #c09820 100%);
    color: #fff;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.package-header {
    background: linear-gradient(135deg, #2c1810 0%, #1a0e08 100%);
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.premium-package .package-header {
    background: linear-gradient(135deg, #d4af37 0%, #c09820 100%);
}

.package-header h4 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
}

.premium-package .package-price {
    color: #fff;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

.package-content {
    padding: 2rem;
}

.package-desc {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-includes li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.package-includes li:last-child {
    border-bottom: none;
}

.packages-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 1.5rem;
}

/* CTA Section */
.catering-cta {
    background: linear-gradient(135deg, #d4af37 0%, #c09820 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-content {
    text-align: center;
    color: #fff;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

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

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #25D366;
    color: #fff;
    border: 2px solid #25D366;
}

.cta-buttons .btn-primary:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.cta-buttons .btn-secondary {
    background: #fff;
    color: #d4af37;
    border: 2px solid #fff;
}

.cta-buttons .btn-secondary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

/* Service Areas */
.service-areas {
    text-align: center;
    margin: 4rem 0 2rem;
}

.service-areas h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c1810;
}

.service-areas > p {
    color: #666;
    margin-bottom: 1.5rem;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    color: #2c1810;
    border: 2px solid #d4af37;
    font-weight: 600;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: linear-gradient(135deg, #d4af37 0%, #c09820 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.area-tag i {
    color: #d4af37;
    font-size: 0.9rem;
}

.area-tag:hover i {
    color: #fff;
}

.areas-note {
    margin-top: 1.5rem;
    color: #666;
    font-style: italic;
}

.areas-note a {
    color: #d4af37;
    text-decoration: underline;
    font-weight: 600;
}

.areas-note a:hover {
    color: #c09820;
}

/* Dark Theme Overrides */
.theme-dark .corporate-banner {
    background: linear-gradient(135deg, #c09820 0%, #a68616 100%);
    box-shadow: 0 8px 25px rgba(192, 152, 32, 0.3);
}

.theme-dark .corporate-banner::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.theme-dark .corporate-banner::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.theme-dark .corporate-cta {
    background: #1e1e1e;
    color: #d4af37;
    border-color: #d4af37;
}

.theme-dark .corporate-cta:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

.theme-dark .catering-section {
    background: linear-gradient(to bottom, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
}

.theme-dark .catering-section::before {
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.5) 50%, transparent 100%);
}

.theme-dark .section-header h2 {
    color: #d4af37;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.theme-dark .section-subtitle {
    color: #aaa;
}

.theme-dark .catering-intro {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-color: rgba(212, 175, 55, 0.2);
}

.theme-dark .catering-intro .lead {
    color: #ccc;
}

.theme-dark .catering-menu-btn {
    background: linear-gradient(135deg, #d4af37 0%, #c09820 100%);
    border-color: #d4af37;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.theme-dark .catering-menu-btn:hover {
    background: linear-gradient(135deg, #e5c04d 0%, #d4af37 100%);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.6);
}

.theme-dark .service-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #1a1a1a 100%);
    border-color: #333;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.theme-dark .service-card::before {
    background: linear-gradient(90deg, #d4af37 0%, #c09820 100%);
}

.theme-dark .service-card:hover {
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.theme-dark .featured-service {
    background: linear-gradient(135deg, #2a2416 0%, #1e1e1e 100%);
    border-color: #d4af37;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.theme-dark .service-card h3,
.theme-dark .catering-packages h3,
.theme-dark .service-areas h3 {
    color: #d4af37;
}

.theme-dark .service-card p,
.theme-dark .service-features li,
.theme-dark .package-includes li,
.theme-dark .service-areas > p,
.theme-dark .packages-note {
    color: #bbb;
}

.theme-dark .service-icon {
    background: linear-gradient(135deg, #d4af37 0%, #c09820 100%);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.theme-dark .catering-benefits {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid #333;
}

.theme-dark .benefit-item i {
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.theme-dark .benefit-item h4 {
    color: #d4af37;
}

.theme-dark .benefit-item p {
    color: #bbb;
}

.theme-dark .package-card {
    background: #1e1e1e;
    border-color: #333;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.theme-dark .package-card:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.theme-dark .premium-package {
    border-color: #d4af37;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.15);
}

.theme-dark .package-desc {
    color: #aaa;
}

.theme-dark .package-includes li {
    border-bottom-color: #333;
}

.theme-dark .catering-cta {
    background: linear-gradient(135deg, #d4af37 0%, #c09820 100%);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.theme-dark .area-tag {
    background: linear-gradient(135deg, #1e1e1e 0%, #1a1a1a 100%);
    border-color: #d4af37;
    color: #d4af37;
}

.theme-dark .area-tag:hover {
    background: linear-gradient(135deg, #d4af37 0%, #c09820 100%);
    color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .corporate-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .corporate-icon {
        font-size: 2.5rem;
    }
    
    .corporate-text h3 {
        font-size: 1.5rem;
    }
    
    .corporate-text p {
        font-size: 1rem;
    }
    
    .catering-section {
        padding: 3rem 0;
    }
    
    .catering-services {
        grid-template-columns: 1fr;
    }
    
    .premium-package {
        transform: scale(1);
    }
    
    .premium-package:hover {
        transform: translateY(-5px);
    }
    
    .catering-benefits {
        padding: 2rem 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .areas-list {
        gap: 0.5rem;
    }
    
    .area-tag {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .corporate-text h3 {
        font-size: 1.3rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .catering-benefits h3 {
        font-size: 1.6rem;
    }
    
    .benefit-item i {
        font-size: 2.5rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}
