/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: background-image 0.6s ease-in-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Order Type Tabs */
.order-tab {
    position: relative;
    padding: 0.875rem 1.5rem;
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.75rem;
}

.order-tab:hover {
    color: #FD5C02;
    background: rgba(253, 92, 2, 0.08);
}

.order-tab.active {
    color: #FD5C02;
    background: rgba(253, 92, 2, 0.12);
}

.order-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #FD5C02, #CA4901);
    border-radius: 3px;
}

/* Search Input */
.search-input:focus {
    box-shadow: 0 0 0 3px rgba(253, 92, 2, 0.12);
    border-color: #FD5C02;
}

/* Step Cards */
.step-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}

.step-card:hover .step-icon {
    transform: scale(1.08);
}

.step-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FD5C02, #CA4901);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(253, 92, 2, 0.35);
}

/* Feature Tabs */
.feature-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.feature-tab:hover {
    color: var(--main-color, #FD5C02);
    border-color: var(--main-color, #FD5C02);
    background: rgba(253, 92, 2, 0.05);
}

.feature-tab.active {
    color: white;
    background: linear-gradient(135deg, var(--main-color, #FD5C02), var(--main-dark-color, #CA4901));
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(253, 92, 2, 0.3);
}

/* Feature Panels */
.features-panels {
    position: relative;
    min-height: 300px;
}

.feature-panel {
    display: none;
    opacity: 0;
    transform: translateY(12px);
}

.feature-panel.active {
    display: block;
    animation: featurePanelIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes featurePanelIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(253, 92, 2, 0.15);
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1);
}

.feature-icon-wrap {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Social Links */
.social-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px rgba(253, 92, 2, 0.25);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1!important;
    transform: translateY(0)!important;
}

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

.float-anim {
    animation: float 5s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(253, 92, 2, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(253, 92, 2, 0);
    }
}

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