/* --- Global Styles & Variables --- */
:root {
    --primary-color: #0a2540; /* Dark Blue for text */
    --hero-bg-color: #3b5970; /* Slate blue for hero background */
    --secondary-color: #f7f9fc; /* Light Gray Background */
    --accent-color: #f59e47; /* Lighter, peachy orange */
    --link-color: #4a90e2; /* Bright Blue for links */
    --text-color: #333;
    --white-color: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #666;
}

section {
    padding: 60px 0;
}

/* --- Header --- */
header { background: var(--white-color); padding: 1rem 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { color: var(--primary-color); font-weight: 700; font-size: 1.5rem; text-decoration: none; }
header nav ul { margin: 0; padding: 0; list-style: none; }
header nav ul li { display: inline; margin-left: 25px; } 
header a { color: var(--primary-color); text-decoration: none; font-weight: 700; transition: color 0.3s ease; }
header nav a:hover { color: var(--accent-color); }

.cta-button { background: var(--accent-color); color: var(--white-color); padding: 12px 28px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: background 0.3s ease; border: none; cursor: pointer; }
.cta-button:hover { background: #e07b00; color: var(--white-color); }

/* --- Hero Section --- */
#hero { background-color: var(--hero-bg-color); height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white-color); }
.hero-content { max-width: 800px; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; }

/* --- About Section --- */
#about { background: var(--secondary-color); }
.about-container { display: flex; align-items: center; gap: 40px; }
.about-image { flex: 1; }
.about-image img { width: 100%; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.about-text { flex: 1; }

/* --- Home Page Services Section --- */
#services { background: var(--secondary-color); }
.single-service-container {
    background: var(--white-color);
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.single-service-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}
.single-service-container h3 {
    color: var(--primary-color);
}
.cta-button-secondary { display: inline-block; background: var(--primary-color); color: var(--white-color); text-align: center; padding: 12px 25px; text-decoration: none; margin-top: 20px; border-radius: 5px; transition: background 0.3s ease; }
.cta-button-secondary:hover { background: var(--hero-bg-color); }

/* --- NEW Services Page Styles --- */
.services-page { background: var(--secondary-color); padding: 60px 0; }
.included-services {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.included-services span { font-weight: 600; color: var(--primary-color); }
.included-services i { color: #28a745; margin-right: 8px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}
.pricing-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
}
.pricing-card:hover {
    transform: translateY(-10px);
}
.pricing-card.popular {
    border-top-color: var(--accent-color);
    transform: scale(1.05);
}
.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hero-bg-color);
    margin: 15px 0;
}
.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}
.pricing-card p {
    font-size: 0.95rem;
    min-height: 60px;
}
.pricing-card .cta-button {
    width: 100%;
}


/* --- Contact & Policy Page Styles --- */
.contact-page { background: var(--secondary-color); }
.contact-container { display: flex; gap: 40px; background: var(--white-color); padding: 40px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.contact-info, .contact-form { flex: 1; }
.contact-info h3, .contact-form h3 { margin-top: 0; color: var(--primary-color); }
.contact-info ul { list-style: none; padding: 0; }
.contact-info ul li { margin: 20px 0; display: flex; align-items: flex-start; gap: 15px; font-size: 1rem; }
.contact-info i { color: var(--accent-color); font-size: 1.5rem; width: 25px; text-align: center; margin-top: 5px; }
.policy-content { background: var(--white-color); padding: 40px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.policy-content h4 { margin-top: 30px; color: var(--primary-color); }

/* --- Footer --- */
footer { background: var(--primary-color); color: var(--white-color); padding: 50px 0 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.footer-col h4 { font-size: 1.5rem; margin-top: 0; margin-bottom: 10px; }
.footer-col h5 { font-size: 1.1rem; color: var(--accent-color); margin-bottom: 15px; }
.footer-col p { opacity: 0.8; font-size: 0.95rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--white-color); text-decoration: none; opacity: 0.8; transition: opacity 0.3s ease; }
.footer-col ul a:hover { opacity: 1; }
.footer-social { margin-top: 15px; }
.footer-social a { color: var(--white-color); margin-right: 15px; font-size: 1.2rem; transition: color 0.3s ease; }
.footer-social a:hover { color: var(--accent-color); }
.footer-bottom { text-align: center; padding: 20px 0; margin-top: 40px; border-top: 1px solid #3b5970; }
.footer-bottom p { margin: 0; opacity: 0.8; font-size: 0.9rem; }

/* --- Responsive Design --- */
@media(max-width: 768px) {
    header .container { flex-direction: column; gap: 15px; }
    header nav ul li { margin-left: 15px; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-container, .contact-container { flex-direction: column; }
    .footer-grid { text-align: center; }
    .pricing-card.popular { transform: scale(1); }
}