:root {
    --primary-color: #1a2f5e; /* Navy Blue */
    --accent-color: #e87722;  /* Orange/Amber */
    --light-gray: #f4f7fc;
    --dark-gray: #333;
    --text-color: #4a4a4a;
    --white-color: #ffffff;
    --font-family: 'Inter', sans-serif;
}

/* --- General Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: #666;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #d16a1e;
    transform: translateY(-2px);
}

/* --- Header --- */
#header {
    background-color: var(--white-color);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease, padding 0.3s ease;
}

#header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    line-height: 1.2;
}

#nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

#nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

#nav-menu a:hover {
    color: var(--accent-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
}

#hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}

/* --- Hero Section --- */
#hero {
    background-color: var(--light-gray);
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
}

#hero .badge-247 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

#hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

#hero .subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

#hero .primary-cta {
    font-size: 1.2rem;
    padding: 18px 36px;
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.trust-signals .signal {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.trust-signals .signal i {
    color: var(--accent-color);
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white-color);
    padding: 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.service-card i {
    color: var(--accent-color);
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* --- Membership Section --- */
#membership {
    background-color: var(--primary-color);
    color: var(--white-color);
}

#membership .section-title, #membership .section-subtitle {
    color: var(--white-color);
}
#membership .section-subtitle {
    opacity: 0.9;
}

.membership-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.membership-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    text-align: left;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.benefits-list i {
    color: var(--accent-color);
}

/* --- Why Us Section --- */
#why-us {
    background-color: var(--light-gray);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 12px;
}
.feature-card i {
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}
.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
}
.testimonial-card .stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}
.testimonial-card footer {
    font-weight: 600;
    color: var(--primary-color);
}

/* --- Service Area Section --- */
#service-area {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}
#service-area .section-title {
    color: var(--white-color);
}
#service-area .area-list {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

/* --- Contact Section --- */
#contact {
    background-color: var(--light-gray);
}
#contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    width: 100%;
}
.form-group.full-width {
    grid-column: 1 / -1;
}
#contact-form input,
#contact-form select,
#contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
}
#contact-form button {
    grid-column: 1 / -1;
    justify-self: center;
    width: auto;
}

#form-thank-you {
    text-align: center;
    padding: 40px;
    background: var(--white-color);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}
#form-thank-you h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

/* --- Footer --- */
footer {
    background-color: #0e1a3a;
    color: var(--white-color);
    padding: 60px 0 20px 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #3a4a6e;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}
.footer-info a {
    color: var(--white-color);
    text-decoration: none;
}
.footer-info a:hover {
    text-decoration: underline;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    color: var(--white-color);
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: var(--accent-color);
}
.footer-bottom {
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}


/* --- Responsive Styles --- */
@media (max-width: 992px) {
    #nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }
    #nav-menu.active {
        display: block;
    }
    #nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    #nav-menu li {
        text-align: center;
    }
    #nav-menu a {
        display: block;
        padding: 15px;
    }
    #hamburger-btn {
        display: block;
    }
    .header-cta {
        display: none;
    }
    #hero h1 {
        font-size: 2.8rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    #hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    #hero h1 {
        font-size: 2.2rem;
    }
    .trust-signals {
        gap: 20px;
        justify-content: space-around;
    }
    .benefits-list {
        grid-template-columns: 1fr;
    }
    #contact-form {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}