/* Feature Page Styles - Premium Redesign */
.feature-page {
    padding: 0;
    background: #fff;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section */
.feature-hero {
    position: relative;
    padding: 120px 20px 100px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.feature-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(47, 127, 118, 0.05) 0%, transparent 70%);
    animation: rotate 60s linear infinite;
    z-index: 0;
}

.feature-hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.feature-tag {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #2F7F76;
    border: 1px solid rgba(47, 127, 118, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(47, 127, 118, 0.1);
}

.feature-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.feature-title span {
    background: linear-gradient(135deg, #2F7F76 0%, #4fd1c5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-subtitle {
    font-size: 1.35rem;
    color: #555;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

/* Main Content */
.feature-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-grid.reversed {
    direction: rtl;
}

.feature-grid.reversed .feature-text {
    direction: ltr;
}

.feature-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-image-wrapper:hover {
    transform: translateY(-10px);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
}

.feature-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 35px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.feature-list li:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-list i {
    color: #2F7F76;
    font-size: 1.2rem;
    background: rgba(47, 127, 118, 0.1);
    padding: 8px;
    border-radius: 50%;
}

/* Stats Section */
.feature-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 120px;
    text-align: center;
}

.stat-card {
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #2F7F76;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

/* CTA Section */
.feature-cta {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    padding: 100px 20px;
    border-radius: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.feature-cta::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47, 127, 118, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-cta h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 800;
}

.feature-cta p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-feature {
    display: inline-block;
    padding: 20px 40px;
    background: #2F7F76;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(47, 127, 118, 0.3);
}

.btn-feature:hover {
    background: #236c63;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(47, 127, 118, 0.4);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .feature-title {
        font-size: 2.5rem;
    }

    .feature-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid.reversed {
        direction: ltr;
    }

    .feature-stats {
        grid-template-columns: 1fr;
    }

    .feature-hero {
        padding: 80px 20px;
    }
}

/* Process / Steps Section */
.feature-process {
    padding: 100px 20px;
    background: #f8fafc;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2F7F76;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #cbd5e1;
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 1rem;
    color: #64748b;
}

/* FAQ Section */
.feature-faq {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #2F7F76;
}

.faq-answer {
    margin-top: 15px;
    color: #4b5563;
    line-height: 1.6;
    display: block;
    /* Making it visible for static page simplicity */
}

@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
}