/* Our Approach Page Styles */
.approach-hero {
    height: 70vh;
    background: linear-gradient(135deg, var(--theme-color) 0%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.approach-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/distillery-bg.jpg') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content > p {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 15px;
}

.hero-description p {
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Main Vision Section */
.main-vision-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.vision-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.vision-text h2 {
    font-size: 3rem;
    color: var(--theme-color);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.commitment-statement {
    background: linear-gradient(135deg, var(--theme-color), #8B4513);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.commitment-statement p {
    color: white !important;
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
}

.vision-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    min-width: 120px;
}

.floating-card:hover {
    transform: translateY(-10px);
}

.floating-card i {
    font-size: 2.5rem;
    color: var(--theme-color);
}

.floating-card span {
    font-weight: 600;
    color: #333;
}

.card-1 {
    top: 20px;
    left: 20px;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 50px;
    right: 30px;
    animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Approaches Section */
.approaches-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--theme-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.approaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--theme-color), #8B4513);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(214, 34, 35, 0.15);
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--theme-color), #8B4513);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.approach-icon i {
    font-size: 2rem;
    color: white;
}

.approach-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.approach-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

.approach-number {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(214, 34, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--theme-color);
}

/* Process Excellence Section */
.process-excellence-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-text h2 {
    font-size: 2.8rem;
    color: var(--theme-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.process-text > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.process-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--theme-color);
    min-width: 50px;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.highlight-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.process-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.distillation-graphic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 400px;
}

.distill-step {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.distill-step:hover {
    transform: translateY(-5px);
}

.distill-step i {
    font-size: 2.5rem;
    color: var(--theme-color);
    margin-bottom: 15px;
    display: block;
}

.distill-step span {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Innovation Section */
.innovation-section {
    padding: 100px 0;
    background: white;
}

.innovation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.innovation-content h2 {
    font-size: 2.8rem;
    color: var(--theme-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.innovation-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.innovation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.innovation-visual {
    display: flex;
    justify-content: center;
}

.tech-dashboard {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 25px;
}

.dashboard-header h4 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 0.9rem;
}

.progress-bar {
    width: 60%;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, var(--theme-color), #8B4513);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--theme-color) 0%, #8B4513 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--theme-color);
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--theme-color);
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vision-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .process-content,
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .approaches-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .vision-text h2,
    .section-header h2 {
        font-size: 2rem;
    }
    
    .approach-card {
        padding: 30px 25px;
    }
    
    .approaches-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .innovation-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 250px;
        text-align: center;
    }
    
    .distillation-graphic {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .floating-card {
        position: relative !important;
        margin: 10px;
    }
    
    .vision-visual {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        height: auto;
    }
}
