/* CSS Variables for consistent styling */
:root {
  --primary-color: #4f46e5;
  --secondary-color: #6b7280;
  --secondary-light: #e5e7eb;
  --success-color: #10b981;
  --card-bg: #ffffff;
  --light-bg: #f9fafb;
  --highlight-bg: #e0e7ff;
  --text-color: #1f2937;
  --heading-color: #111827;
  --muted-text: #6b7280;
  --border-color: #e5e7eb;
}

/* Services page styles */

#services {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-intro h2 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.services-intro p {
    color: #555;
    line-height: 1.6;
}

.service-packages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.package-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-name {
    margin: 0;
    font-size: 1.5rem;
}

/* Style for the value proposition */
.package-price {
    font-size: 1.2rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.package-content {
    padding: 1.5rem;
}

.package-description {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-features {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.package-features li {
    margin-bottom: 0.5rem;
    color: #555;
}

.delivery-time {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
}

.book-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    width: 100%;
    text-align: center;
}

.book-btn:hover {
    background-color: #3367d6;
}

.contact-cta {
    background-color: #e8f4fd;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.contact-cta h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-cta p {
    color: #555;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #3367d6;
}

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