/* How It Works Page Styles */

/* Hero Section */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: #CCA83A;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Section Styles */
.section-subtitle {
    color: #CCA83A;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    color: #293219;
    line-height: 1.3;
    font-weight: 700;
    font-size: 2.2rem;
}

.section-description {
    color: #555555;
    line-height: 1.8;
}

/* Process List */
.process-list {
    padding-left: 1.5rem;
}

.process-list li {
    color: #555555;
    line-height: 1.8;
    font-size: 1rem;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #CCA83A 0%, #B8962E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

/* Process Cards */
.process-card {
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.process-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CCA83A 0%, #B8962E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Button Styles */
.btn-gradient {
    background: linear-gradient(135deg, #CCA83A 0%, #B8962E 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 168, 58, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 168, 58, 0.4);
    color: white;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
}
