/* Installation Guide Section - Unique Classes */


:root {
    /* Brand Colors */
    --primary: #FBB03B;
    --primary-hover: #f7a522;
    --primary-light: #fff8eb;
    --secondary: #1E1E1E;
    
    /* Background Colors */
    --bg-dark: #1E1E1E;
    --bg-light: #FFF9EA;
    --bg-white: #FFFFFF;
    --bg-gradient: linear-gradient(145deg, #FFF9EA 0%, #FFFFFF 100%);
    
    /* Text Colors */
    --text-primary: #1E1E1E;
    --text-secondary: #666666;
    --text-light: #999999;
    
    /* Status Colors */
    --success: #22c55e;
    --warning: #FBB03B;
    --danger: #ef4444;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(251, 176, 59, 0.1);
    --shadow-md: 0 4px 6px rgba(251, 176, 59, 0.15);
    --shadow-lg: 0 10px 15px rgba(251, 176, 59, 0.2);
    --shadow-hover: 0 20px 25px rgba(251, 176, 59, 0.25);


    --primary-color: #ffd700;
    --primary-hover: #ffe44d;
    --dark-bg: #1a1f25;
    --dark-secondary: #2c3e50;
    --light-text: #ffffff;
    --grey-text: #a0aec0;
    --card-border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.05);
}

.install-guide-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    padding: 100px 0;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.install-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('path-to-pattern.png') repeat;
    opacity: 0.05;
    animation: moveInstallBg 20s linear infinite;
}

.install-guide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* Installation Header Styles */
.install-header {
    text-align: center;
    margin-bottom: 80px;
}

.install-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
    color: var(--light-text);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(251, 176, 59, 0.2);
}

.install-heading {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--light-text), #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.install-subheading {
    color: var(--grey-text);
    font-size: 1.1rem;
}

/* Installation Timeline */
.install-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

/* Installation Step Cards */
.install-step {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.install-step-number {
    flex: 0 0 80px;
    position: relative;
}

.install-step-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(251, 176, 59, 0.3);
}

.install-progress-line {
    position: absolute;
    top: 50px;
    left: 24px;
    width: 2px;
    height: calc(100% + 30px);
    background: rgba(255, 215, 0, 0.15);
}

/* Step Content */
.install-step-content {
    flex: 1;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    position: relative;
    transition: transform 0.3s ease;
}

.install-step-content:hover {
    transform: translateX(10px);
}

.install-step-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.install-checklist {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.install-checklist li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: var(--grey-text);
}

.install-checklist li:before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Step Icon */
.install-step-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    fill: rgba(251, 176, 59, 0.3);
    font-size: 2rem;
}

/* Installation Note Box */
.install-note {
    max-width: 600px;
    margin: 60px auto 0;
    background: rgba(251, 176, 59, 0.1);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(251, 176, 59, 0.2);
}

.install-note-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.install-note-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Animation Keyframes */
@keyframes moveInstallBg {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .install-step-number {
        flex: 0 0 60px;
    }

    .install-step-content {
        padding: 20px;
    }

    .install-heading {
        font-size: 2rem;
    }

    .install-step-icon {
        display: none;
    }
}