
/* Service Features Section */
.service-features {
    padding: 60px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.feature-text h4 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.feature-text p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

/* Full Width Video Section */
.full-width-video-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4); /* Dark overlay */
    text-align: center;
    color: #fff;
    padding: 20px;
}

.video-overlay-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.btn-watch-story {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background-color: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.3s backwards;
    border: 2px solid transparent;
}

.btn-watch-story:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .full-width-video-section {
        height: 450px;
    }
    .video-overlay-content h2 {
        font-size: 2.5rem;
    }
    .feature-item {
        flex-basis: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .full-width-video-section {
        height: 75vh; /* Taller for vertical videos */
        min-height: 500px;
    }
    .video-overlay-content h2 {
        font-size: 1.8rem;
    }
    .btn-watch-story {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    .feature-item {
        flex-basis: 100%;
    }
    .service-features {
        padding: 40px 0;
    }
}
