* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #000000; --secondary: #1a1a1a; --accent: #D4AF37;
    --light: #f5f5f5; --white: #ffffff; --text: #000000;
    --text-light: #666666;
}
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(--text); overflow-x: hidden; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 80px; }

/* ===== HEADER & NAVIGATION ===== */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    background: #FAF9F7;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}



nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    box-shadow: none;
}



header.scrolled .logo {
    background: transparent;
    box-shadow: none;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    list-style: none;
    position: static;
    background: transparent;
    padding: 0;
    width: auto;
    border: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}



.nav-links a:hover {
    color: var(--accent);
}

/* Hamburger — hidden on desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: color 0.35s;
    z-index: 10001;
}

.menu-toggle:hover {
    color: var(--accent);
}

/* ===== MOBILE ONLY ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        padding: 0.85rem 1.2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.96);
        text-align: center;
        padding: 1.5rem 0 2rem;
        z-index: 9999;
        border-top: 2px solid var(--accent);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
        color: var(--white) !important;
    }

    .nav-links a:hover {
        color: var(--accent) !important;
        background: rgba(212, 175, 55, 0.08);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(
                    rgba(0, 0, 0, 0.5), 
                    rgba(0, 0, 0, 0.5)
                ), 
                url('images/professional.jpg') no-repeat center center / cover;
    color: var(--white);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 8rem 2rem;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 1rem 4rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
    background: var(--white);
    color: var(--primary);
}

#calendly-button {
    padding: 1.1rem 5rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem;
        min-height: 100vh;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: var(--primary); }
.section-subtitle { text-align: center; font-size: 1.2rem; color: var(--text-light); margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }

/* OFFERINGS */
.offerings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 3rem; }
.offering-card {
    background: var(--white); padding: 2.5rem; border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s; border: 2px solid var(--light);
}
.offering-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(212,175,55,0.2); border-color: var(--accent); }
.offering-icon {
    width: 40px; height: 40px; background: var(--accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--primary); margin-bottom: 1rem;
}
.offering-card h3 { font-size: 1.1rem; margin-bottom: 0.8rem; color: var(--primary); }

/* ABOUT */
.about-section { background: var(--primary); color: var(--white); }
.about-content { display: flex; gap: 3rem; align-items: flex-start; }
.about-image {
    flex: 0 0 350px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--accent);
}

.about-image img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 6px;
}
.about-text { flex: 1; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--accent); }
.about-text h3 { font-size: 1.8rem; margin-top: 2rem; margin-bottom: 1rem; color: var(--accent); }
.about-text p { margin-bottom: 1.5rem; color: var(--white); line-height: 1.8; font-size: 1.1rem; }
@media (max-width: 768px) {
    .about-content { flex-direction: column; }
    .about-image { flex: unset; width: 100%; }
}

/* PRICING */
.pricing-section {
    padding: 5rem 2rem; background: var(--white);
    display: flex; gap: 2rem; flex-wrap: wrap;
    justify-content: center; align-items: stretch;
    max-width: 1400px; margin: 0 auto;
}
.pricing-card {
    background: var(--light); padding: 2.5rem; border-radius: 10px;
    flex: 1; min-width: 280px; max-width: 320px; text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
    border: 2px solid transparent; display: flex; flex-direction: column;
}
.pricing-card:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(212,175,55,0.3); border-color: var(--accent); }
.pricing-card h3 { font-weight: 600; font-size: 1.5rem; color: var(--primary); margin-bottom: 1.5rem; line-height: 1.3; }
.pricing-card h2 { font-size: 3rem; color: var(--accent); margin-bottom: 2rem; font-weight: bold; }
.pricing-card ul { list-style: none; margin-bottom: 2rem; flex-grow: 1; text-align: left; }
.pricing-card ul li { margin: 1rem 0; color: var(--text); line-height: 1.6; padding-left: 1.5rem; position: relative; }
.pricing-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: bold; }
.pricing-card button, .purchase-btn {
    background: var(--accent); color: var(--primary); border: none;
    padding: 1rem 2rem; font-size: 1rem; font-weight: 600;
    border-radius: 5px; cursor: pointer; width: 100%;
    transition: background 0.3s ease, color 0.3s ease;
}
.pricing-card button:hover, .purchase-btn:hover { background: var(--primary); color: var(--white); }
.pricing-card.featured { border: 2px solid var(--accent); background: var(--white); transform: scale(1.05); }
.pricing-card.featured:hover { transform: scale(1.08); }
@media (max-width: 768px) {
    .pricing-section { flex-direction: column; align-items: center; padding: 3rem 1rem; }
    .pricing-card { max-width: 100%; width: 100%; }
    .pricing-card.featured { transform: scale(1); }
}

/* TESTIMONIALS */
.testimonials-section { background: var(--light); padding: 5rem 2rem; }
.testimonials-container { max-width: 1200px; margin: 0 auto; }
.testimonials-intro { text-align: center; margin-bottom: 4rem; }
.testimonials-intro h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.testimonials-intro p { font-size: 1.2rem; color: var(--text-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card {
    background: var(--white); padding: 1.5rem; border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); position: relative;
    border: 2px solid transparent; transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--accent); }
.testimonial-quote { font-size: 2rem; color: var(--accent); opacity: 0.3; position: absolute; top: 0.5rem; left: 1rem; }
.testimonial-text { font-size: 0.95rem; line-height: 1.6; color: var(--text); margin-bottom: 1.5rem; font-style: italic; position: relative; z-index: 1; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* CONTACT */
.contact-section { background: var(--white); padding: 5rem 2rem; }
.contact-container { max-width: 1000px; margin: 0 auto; }
.contact-intro { text-align: center; margin-bottom: 3rem; }
.contact-intro h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.contact-intro p { font-size: 1.2rem; color: var(--text-light); }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
    width: 50px; height: 50px; background: var(--accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.5rem; flex-shrink: 0;
}
.contact-details h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 0.5rem; }
.contact-details p { color: var(--text); line-height: 1.6; }
.contact-form { background: var(--light); padding: 2.5rem; border-radius: 10px; border: 2px solid var(--primary); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 0.9rem; border: 2px solid var(--primary);
    border-radius: 5px; font-size: 1rem; font-family: inherit; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 150px; }
.submit-button {
    width: 100%; background: var(--accent); color: var(--primary);
    padding: 1rem; border: none; border-radius: 5px;
    font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: background 0.3s;
}
.submit-button:hover { background: var(--primary); color: var(--white); }
@media (max-width: 768px) { .contact-content { grid-template-columns: 1fr; gap: 2rem; } }

/* FOOTER */
footer { background: var(--primary); color: var(--white); text-align: center; padding: 2rem; border-top: 2px solid var(--accent); }

/* MODAL */
.service-modal {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    display: none; align-items: center; justify-content: center; z-index: 99999;
}
.service-modal-content {
    background: var(--light); color: var(--primary); padding: 2rem;
    width: 90%; max-width: 420px; border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15); border: 2px solid var(--accent);
}
.service-modal-content h2 { color: var(--accent); margin-bottom: 1.5rem; text-align: center; }
.service-option {
    width: 100%; background: var(--white); color: var(--primary);
    border: 2px solid var(--accent); border-radius: 8px; padding: 1rem;
    margin-bottom: 1rem; cursor: pointer; text-align: left; transition: all 0.3s;
}
.service-option strong { display: block; margin-bottom: 0.3rem; }
.service-option span { font-size: 0.85rem; color: var(--text-light); }
.service-option:hover { background: var(--accent); color: var(--primary); border-color: var(--primary); }
.close-modal {
    margin-top: 1rem; background: transparent; border: 2px solid var(--accent);
    color: var(--accent); padding: 0.5rem 1rem; border-radius: 8px; cursor: pointer;
    font-weight: 600; display: block; width: 100%; text-align: center; transition: all 0.3s;
}
.close-modal:hover { background: var(--accent); color: var(--primary); }



/* ===== SCROLL TO TOP BUTTON ===== */
#scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: background 0.3s, transform 0.3s;
    z-index: 9998;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
}

#scroll-top:hover {
    background: var(--primary);
    color: var(--accent);
    transform: translateY(-3px);
}

