.elementor-7097 .elementor-element.elementor-element-1f68533{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* Food & Beverage CPA Page - Complete CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFCFA;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Rotating Headline Styles */
.rotating-headline {
    font-size: 2.2rem;
    color: #2E3E79;
    margin-bottom: 15px;
    font-weight: 700;
}

.rotating-headline span {
    display: inline-block;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    opacity: 0;
    transform: translateY(20px);
}

.rotating-headline span.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.rotating-headline span.outline {
    color: white; /* Fallback for older browsers */
    -webkit-text-fill-color: white;
    background: linear-gradient(45deg, #FA9446, #e6843d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-stroke: 1px #2E3E79;
    -webkit-text-stroke: 1px #2E3E79;
}

/* Updated CTA Button Hover Styles to ensure white text */
.cta-button-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(250,148,70,0.4);
    background: linear-gradient(45deg, #e6843d, #d6753a);
    color: white; /* This line keeps the text white on hover */
}

.cta-button-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(250,148,70,0.4);
    background: linear-gradient(45deg, #e6843d, #d6753a);
    color: white; /* This line keeps the text white on hover */
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FFFCFA 0%, #FFF6F0 50%, #FFFCFA 100%);
    color: #2E3E79;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #FA9446, #e6843d);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #2E3E79, #1a2456);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    background: linear-gradient(45deg, #2E3E79, #1a2456);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

/* CTA Buttons */
.cta-button-orange {
    background: linear-gradient(45deg, #FA9446, #e6843d);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(250,148,70,0.3);
    display: inline-block;
    margin: 10px;
    border: none;
}

.cta-button-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(250,148,70,0.4);
    background: linear-gradient(45deg, #e6843d, #d6753a);
}

.cta-button.secondary {
    background: white;
    color: #2E3E79;
    border: 2px solid #2E3E79;
    box-shadow: 0 8px 25px rgba(46, 62, 121, 0.2);
}

.cta-button.secondary:hover {
    background: #2E3E79;
    color: white;
}

/* Industry Stats Section */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid #f5f5f5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #FA9446;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #FA9446, #e6843d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3rem;
    color: #2E3E79;
    font-weight: 700;
    margin-bottom: 15px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #FFFCFA;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2E3E79;
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2E3E79;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid #f5f5f5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: #FA9446;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, #FA9446, #e6843d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2E3E79;
    font-weight: 600;
    line-height: 1.4;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    margin: 16px 0 0 0;
}

.features-list li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    color: #555;
    font-size: 0.9rem;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FA9446;
    font-weight: bold;
    font-size: 1rem;
}

/* Industry Challenges Section */
.challenges-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4A5A94 0%, #3A4A84 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.challenges-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250,148,70,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.challenges-content {
    position: relative;
    z-index: 2;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.challenge-card {
    background: rgba(255,255,255,0.08);
    padding: 24px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.challenge-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.challenge-card h4 {
    color: #FA9446;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.challenge-card p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Client Logos Section */
.client-logos-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.logo-carousel {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    overflow: hidden;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 28s linear infinite;
}

.logo-item {
    flex-shrink: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.8);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Special sizing for Halo Roasters logo */
.logo-item img[src*="HaloRoasters-1.png"] {
    max-height: 100px !important;
    max-width: 250px !important;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: white;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.expertise-content h3 {
    font-size: 2rem;
    color: #2E3E79;
    margin-bottom: 25px;
    font-weight: 700;
}

.expertise-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.expertise-highlights {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border-left: 5px solid #FA9446;
}

.highlight-list {
    list-style: none;
    margin-top: 20px;
}

.highlight-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 30px;
    color: #555;
}

.highlight-list li:last-child {
    border-bottom: none;
}

.highlight-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #FA9446;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Compliance Section */
.compliance-section {
    padding: 80px 0;
    background: #FFFCFA;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.compliance-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-top: 4px solid #FA9446;
    transition: all 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.compliance-card h4 {
    color: #2E3E79;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.compliance-card p {
    color: #666;
    line-height: 1.7;
}

/* Client Success Section */
.success-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.success-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.success-card:hover {
    border-color: #FA9446;
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.success-metric {
    font-size: 2.5rem;
    color: #FA9446;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-card h4 {
    color: #2E3E79;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: #FFFCFA;
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #FA9446;
}

.faq-item h3 {
    color: #2E3E79;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #FFF4F0 0%, #FFEBE0 100%);
    color: #2E3E79;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(250,148,70,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(250,148,70,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(250,148,70,0.1)"/><circle cx="90" cy="30" r="1" fill="rgba(250,148,70,0.1)"/></svg>');
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-white {
    background: linear-gradient(45deg, #FA9446, #e6843d);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(250,148,70,0.3);
    display: inline-block;
    margin: 10px;
    border: none;
}

.cta-button-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(250,148,70,0.4);
    background: linear-gradient(45deg, #e6843d, #d6753a);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .subtitle {
        font-size: 1.2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title, h2 {
        font-size: 2rem;
    }

    .services-grid,
    .challenges-grid,
    .compliance-grid,
    .success-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .final-cta h2 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .logo-carousel {
        padding: 25px;
        max-width: 100%;
        margin: 30px auto 0;
    }

    .carousel-track {
        gap: 60px;
        animation: scroll 22s linear infinite;
    }

    .logo-item {
        height: 60px;
    }

    .logo-item img {
        max-height: 60px;
        max-width: 150px;
    }

    /* Halo Roasters mobile sizing */
    .logo-item img[src*="HaloRoasters-1.png"] {
        max-height: 75px !important;
        max-width: 180px !important;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */