/* --- Global Styles & Variables --- */
:root { 
    --primary-color: #fd7e14; /* Bright Orange */
    --secondary-color: #e8590c;
    --accent-color: #ff6b6b; /* Coral Accent */
    --dark-color: #212529;
    --light-color: #fefefe;
    --text-color: #333;
    --white-color: #ffffff;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section.bg-light {
    background-color: var(--light-color);
}

.section.bg-dark {
    background-color: var(--dark-color);
    color: var(--light-color);
}

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
}

.section.bg-dark h1, .section.bg-dark h2, .section.bg-dark h3 {
    color: var(--white-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 15px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white-color);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: #138496;
    border-color: #138496;
}

.btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

.btn-outline:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}

/* --- Header --- */
.header {
    background: var(--white-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo span {
    color: var(--accent-color);
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/hero.webp') no-repeat center center/cover;
    color: var(--white-color);
    text-align: center;
    padding: 150px 0;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white-color);
}

.hero .subheadline {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Card Grids --- */
.about-grid, .services-grid, .reasons-grid, .plans-grid, .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* --- Content Cards --- */
.about-card, .service-card, .reason-card, .testimonial-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.about-card i, .service-card i, .reason-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-card {
    font-style: italic;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--accent-color);
}

/* --- Plan Cards --- */
.plan-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plan-card h3 {
    font-size: 1.8rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
}

.plan-card ul {
    margin: 30px 0;
    text-align: left;
}

.plan-card ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.plan-card ul li::before {
    content: '✔';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 1px;
}

/* --- Contact Form --- */
.appointment-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border-radius: var(--border-radius);
    border: 1px solid #ccc;
    font-family: var(--font-family);
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.confirmation-message {
    display: none;
    text-align: center;
    padding: 20px;
    background-color: #d4edda;
    color: #155724;
    border-radius: var(--border-radius);
    border: 1px solid #c3e6cb;
    margin-top: 20px;
}

.confirmation-message i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #28a745;
}

/* --- Footer --- */
.footer {
    background-color: #222;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #aaa;
}

.footer-col a:hover {
    color: var(--white-color);
}

.footer-col p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #444;
    border-radius: 50%;
    color: var(--white-color);
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
}

/* --- Popup Styles --- */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: left;
}

.popup-content h2 {
    margin-top: 0;
    color: var(--dark-color);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    cursor: pointer;
}

.close-btn:hover {
    color: var(--dark-color);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero { padding: 100px 0; }
    .plan-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .section { padding: 60px 0; }
    .hero h1 { font-size: 2rem; }
    .hero .subheadline { font-size: 1rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

 /* Newsletter Section */
        #newsletter { background:#fff; padding:40px 20px; border-radius:10px; box-shadow:0 5px 15px rgba(0,0,0,0.1); margin-bottom:40px; }
        #newsletter form { display:flex; flex-direction:column; gap:15px; max-width:500px; margin:0 auto; }
        #newsletter input[type="text"], #newsletter input[type="email"], #newsletter input[type="date"] {
            padding:10px; border:1px solid #ccc; border-radius:5px; width:100%;
        }
        .checkbox-group { display:flex; align-items:center; gap:10px; }
        .confirmation-message { display:none; color:green; font-weight:bold; text-align:center; margin-top:15px; }

        /* Privacy & Terms Sections */
        .policy-section { background:#fff; padding:30px 20px; border-radius:10px; box-shadow:0 5px 15px rgba(0,0,0,0.1); margin-bottom:40px; }
        .policy-section p { margin-top:10px; }

        /* Responsive */
        @media(max-width:600px){ #newsletter form { width:100%; } }