.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    position: relative;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 153, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 153, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff9900, #ff6b35);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.hero-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

.highlight-text {
    background: linear-gradient(135deg, #ff9900, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 153, 0, 0.1);
    overflow: hidden;
}

.hero-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff9900, #ff6b35);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.hero-stats .stat-item:hover::before {
    transform: scaleX(1);
}

.hero-stats .stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 153, 0, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff9900, #ff6b35) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.stat-icon i {
    color: white !important;
    font-size: 1.2rem !important;
    display: inline-block !important;
    line-height: 1 !important;
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff9900, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-content span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff9900;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.experience-badge .badge-text {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
}

.experience-badge .badge-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9900;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.element-1 {
    top: 20%;
    right: 10%;
    animation: floating 3s ease-in-out infinite;
}

.element-2 {
    bottom: 30%;
    left: 10%;
    animation: floating 3s ease-in-out infinite 1s;
}

.element-3 {
    top: 60%;
    right: 20%;
    animation: floating 3s ease-in-out infinite 2s;
}

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

.floating-image {
    animation: floating 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.features-section {
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.flower-divider {
    margin: 15px 0 25px;
    text-align: center;
}

.flower-divider img {
    opacity: 0.8;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9900, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 153, 0, 0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s;
}

.feature-card:hover .card-glow {
    transform: rotate(45deg) translateX(100%);
}

.process-section {
    background: #f8f9fa;
    position: relative;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 153, 0, 0.1);
    color: #ff9900;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 153, 0, 0.2);
}

.process-badge i {
    margin-right: 6px;
    font-size: 0.9rem;
}

.emphasis-text {
    color: #ff9900;
    font-weight: 600;
    font-style: italic;
}

.process-steps-compact {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff9900, #ff6b35);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content-small {
    flex: 1;
}

.step-content-small h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.step-content-small p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.process-image {
    padding: 2rem;
}

.process-image img {
    max-width: 100%;
    height: auto;
}

.commitment-section {
    background: white;
}

.commitment-image {
    position: relative;
}

.commitment-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.commitment-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.commitment-overlay i {
    font-size: 2rem;
    color: #ff9900;
    margin-bottom: 0.5rem;
}

.commitment-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.commitment-overlay p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.commitment-list {
    margin-top: 2rem;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.commitment-item i {
    font-size: 1.5rem;
    color: #ff9900;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.commitment-item h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.commitment-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #ff9900, #ff6b35);
    color: white;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #ff9900;
    border: 2px solid white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: white;
    color: #ff9900;
    border-color: white;
}

.section-padding {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-stats .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .stat-icon i {
        font-size: 1rem;
    }

    .stat-content h3 {
        font-size: 1.5rem;
    }

    .stat-content span {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 250px;
    }
}