/* Additional styles to fix styling issues */

/* Feature Items */
.service-features {
    margin: 2rem 0;
}

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

.feature-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.feature-content {
    flex-grow: 1;
}

.feature-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.feature-content p {
    margin: 0;
    color: var(--gray-600);
}

/* Package Features */
.package-features {
    margin-bottom: 1.5rem;
}

.package-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.package-feature i {
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.package-feature span {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* FAQ Items */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--gray-800);
    font-weight: 600;
}

.faq-item p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Hero */
.service-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Service Content */
.service-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

.service-text h2 {
    margin-top: 0;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.service-text p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Package Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.package-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-header {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.package-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.package-price {
    font-size: 1.1rem;
    font-weight: 600;
}

.package-content {
    padding: 1.5rem;
}

.package-note {
    text-align: center;
    color: var(--gray-600);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

/* Mobile Menu Fixes */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        position: absolute;
        right: 20px;
        top: 25px;
        z-index: 100;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--gray-700);
        cursor: pointer;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-md);
        z-index: 99;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .header-container {
        position: relative;
    }
    
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .service-hero-buttons {
        flex-direction: column;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .mobile-menu-btn {
        right: 15px;
        top: 20px;
    }
}