/* Coca-Cola Factory Jobs Single-Action Landing Page Styles */
:root {
    --primary-red: #df1f26; /* Coca-Cola Brand Red */
    --primary-red-hover: #c1171d;
    --green-cta: #10b981; /* High-converting green */
    --green-cta-hover: #059669;
    --dark-slate: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    
    --font-family: 'Outfit', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.06), 0 8px 10px -6px rgba(0,0,0,0.03);
    --shadow-premium: 0 20px 45px -12px rgba(15, 23, 42, 0.08);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--slate-50);
    color: var(--dark-slate);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-slate);
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

h2 {
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark-slate);
    letter-spacing: -0.02em;
}

p {
    color: var(--slate-700);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Alert Bar */
.top-bar {
    background-color: var(--dark-slate);
    color: var(--white);
    padding: 0.65rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-today {
    background-color: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.badge-urgency {
    background-color: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

/* Pulse Dot Animation */
.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #34d399;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.8); opacity: 0; }
}

/* Header */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--slate-100);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark-slate);
}

.logo-icon {
    color: var(--primary-red);
}

.logo-bold {
    font-weight: 800;
    color: var(--primary-red);
}

.trust-badge-simple {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--slate-500);
    background-color: var(--slate-50);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--slate-200);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
    padding: 4rem 0 5rem 0;
    background: radial-gradient(circle at 100% 0%, rgba(223, 31, 38, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 0% 100%, rgba(16, 185, 129, 0.02) 0%, transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.pre-title {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--slate-700);
    margin-bottom: 2.25rem;
    max-width: 90%;
    line-height: 1.6;
}

/* Hero CTA Wrap */
.hero-cta-wrap {
    display: flex;
    flex-direction: column;
    max-width: 440px;
}

/* Buttons */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    border: none;
    width: 100%;
}

.btn-green {
    background-color: var(--green-cta);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-green:hover {
    background-color: var(--green-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-green:active {
    transform: translateY(0);
}

.btn-large {
    padding: 1.15rem 2.5rem;
    font-size: 1.15rem;
}

.btn-pulse {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5), 0 4px 14px rgba(16, 185, 129, 0.3); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0), 0 4px 14px rgba(16, 185, 129, 0.3); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0), 0 4px 14px rgba(16, 185, 129, 0.3); }
}

.cta-subtext {
    font-size: 0.8rem;
    color: var(--slate-500);
    text-align: center;
    margin-top: 0.75rem;
    font-weight: 500;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    object-fit: cover;
    display: block;
    aspect-ratio: 1.25 / 1;
}

.image-overlay-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: var(--dark-slate);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.active-badge {
    width: 8px;
    height: 8px;
    background-color: #34d399;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.6s ease-out infinite;
}

/* Section Header Shared */
.section-title-wrap {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem auto;
}

.section-title-wrap h2 {
    margin-bottom: 0.75rem;
}

.section-title-wrap p {
    font-size: 1.1rem;
    color: var(--slate-500);
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.benefits-grid-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.benefit-card-simple {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--slate-50);
    padding: 0.85rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid var(--slate-200);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-slate);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.benefit-card-simple:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background-color: var(--white);
    border-color: rgba(223, 31, 38, 0.15);
}

.benefit-card-simple .benefit-icon {
    color: var(--primary-red);
    display: flex;
    align-items: center;
}

/* Available Positions Section */
.positions-section {
    padding: 5rem 0;
    background-color: var(--slate-50);
}

.positions-list-container {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.position-item-simple {
    background-color: var(--white);
    padding: 1.15rem 1.5rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--slate-100);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark-slate);
}

.position-item-simple:hover {
    border-color: rgba(223, 31, 38, 0.2);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.pos-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    background-color: rgba(223, 31, 38, 0.08);
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.faq-container {
    max-width: 760px;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.accordion-item:hover {
    border-color: rgba(223, 31, 38, 0.2);
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-slate);
    cursor: pointer;
    transition: var(--transition-fast);
}

.accordion-icon {
    color: var(--slate-500);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    padding: 0 1.5rem;
}

.accordion-content p {
    font-size: 0.95rem;
    color: var(--slate-700);
    padding-bottom: 1.25rem;
    line-height: 1.6;
}

.accordion-item.active {
    border-color: rgba(223, 31, 38, 0.3);
    background-color: var(--white);
}

.accordion-item.active .accordion-header {
    color: var(--primary-red);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary-red);
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-slate) 0%, var(--slate-800) 100%);
    color: var(--white);
    text-align: center;
}

.final-cta-container {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.final-cta-section h2 {
    color: var(--white);
}

.final-cta-section p {
    color: var(--slate-200);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.urgency-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(223, 31, 38, 0.15);
    border: 1px solid rgba(223, 31, 38, 0.3);
    color: #ff8a8d;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.final-cta-section .btn {
    max-width: 320px;
}

/* Footer */
.footer {
    background-color: var(--dark-slate);
    color: var(--white);
    padding: 4rem 0 3rem 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-disclaimer {
    color: var(--slate-500);
    max-width: 800px;
    line-height: 1.7;
}

.footer-copyright {
    color: var(--slate-500);
}

/* Sticky Mobile CTA Bar (Conversion Optimized) */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-slate);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 0.85rem 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-info strong {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.2;
}

.sticky-info span {
    color: #34d399;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.sticky-info span::before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #34d399;
    border-radius: 50%;
    display: inline-block;
}

.sticky-cta-btn {
    width: auto;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

/* Responsive Breakpoints & Desktop Adaptability */
@media (min-width: 768px) {
    body {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-image-wrapper {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    body.has-sticky-cta {
        padding-bottom: 74px; /* Height of sticky bar */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.95rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.75rem;
    }
    
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero-image-wrapper {
        max-width: 100%;
    }
    
    .hero-img {
        aspect-ratio: 1.4 / 1;
    }
    
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .top-bar-content {
        gap: 0.75rem;
    }
    
    .badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .accordion-header {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .accordion-content {
        padding: 0 1.25rem;
    }
    
    .image-overlay-card {
        bottom: 1rem;
        left: 1rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .benefit-card-simple, .position-item-simple {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}
