@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Work+Sans:wght@300;400;500;700&display=swap');

:root {
    --fee-primary: #7e22ce;
    --fee-secondary: #581c87;
    --fee-accent: #fb923c;
    --fee-background: #faf5ff;
    --fee-text: #3b0764;
    --fee-muted: #c084fc;
    --fee-white: #ffffff;
    --fee-black: #000000;

    --fn-border-radius: 8px;
    --fn-transition-speed: 0.3s;
}

/* Base Reset & Utilities */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--fee-text);
    line-height: 1.6;
    background-color: var(--fee-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--fee-accent);
    color: var(--fee-white);
}

a {
    color: var(--fee-primary);
    text-decoration: none;
    transition: color var(--fn-transition-speed) ease;
}

a:hover {
    color: var(--fee-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--fee-secondary);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1em;
}

strong {
    font-weight: 700;
}

/* Layout Utilities */
.fn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.fn-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fn-flex-col {
    flex-direction: column;
}

.fn-text-center {
    text-align: center;
}

.fn-section-padding {
    padding: 80px 0;
}

.fn-bg-light {
    background-color: var(--fee-background);
}

.fn-bg-dark {
    background-color: var(--fee-secondary);
    color: var(--fee-white);
}
.fn-bg-dark h1, .fn-bg-dark h2, .fn-bg-dark h3, .fn-bg-dark h4, .fn-bg-dark h5, .fn-bg-dark h6 {
    color: var(--fee-white);
}

/* Buttons */
.fn-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--fn-border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: background-color var(--fn-transition-speed) ease, color var(--fn-transition-speed) ease, transform var(--fn-transition-speed) ease;
    white-space: nowrap;
}

.fn-button-primary {
    background-color: var(--fee-primary);
    color: var(--fee-white);
}

.fn-button-primary:hover {
    background-color: var(--fee-secondary);
    transform: translateY(-2px);
}

.fn-button-secondary {
    background-color: var(--fee-accent);
    color: var(--fee-text);
}

.fn-button-secondary:hover {
    background-color: var(--fee-primary);
    color: var(--fee-white);
    transform: translateY(-2px);
}

.fn-button-outline {
    background-color: transparent;
    color: var(--fee-primary);
    border: 2px solid var(--fee-primary);
}

.fn-button-outline:hover {
    background-color: var(--fee-primary);
    color: var(--fee-white);
    transform: translateY(-2px);
}

.fn-button .fn-icon {
    margin-right: 8px;
    vertical-align: middle;
}

/* Header & Navigation */
.fn-header {
    background-color: var(--fee-white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

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

.fn-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--fee-primary);
    text-decoration: none;
}

.fn-nav {
    display: flex;
    align-items: center;
}

.fn-nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.fn-nav-list a {
    color: var(--fee-text);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
}

.fn-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--fee-accent);
    transition: width var(--fn-transition-speed) ease;
}

.fn-nav-list a:hover::after {
    width: 100%;
}

.fn-cta-nav-button {
    margin-left: 30px;
}

.fn-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.fn-hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--fee-primary);
    border-radius: 5px;
    transition: all var(--fn-transition-speed) ease;
}

/* Hero Section */
.fn-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--fee-white);
    overflow: hidden;
    padding: 100px 0;
}

.fn-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://loremflickr.com/1400/800/fitness%2Cgym/all?lock=2095396542');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.fn-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.8) 0%, rgba(88, 28, 135, 0.8) 100%);
    z-index: -1;
}

.fn-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.fn-hero h1 {
    color: var(--fee-white);
    margin-bottom: 20px;
    font-size: 4rem;
}

.fn-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fn-hero .fn-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Section Styling */
.fn-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.fn-section-header h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.fn-section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: var(--fee-accent);
    border-radius: 2px;
}

.fn-section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--fee-text);
}

/* Card Component */
.fn-card {
    background-color: var(--fee-white);
    border-radius: var(--fn-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform var(--fn-transition-speed) ease, box-shadow var(--fn-transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fn-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.fn-card-icon {
    font-size: 3rem;
    color: var(--fee-accent);
    margin-bottom: 20px;
}

.fn-card h3 {
    margin-top: 0;
    margin-bottom: 1em;
    color: var(--fee-primary);
}

.fn-card p {
    font-size: 0.95rem;
    color: var(--fee-text);
}

.fn-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--fn-border-radius) var(--fn-border-radius) 0 0;
    margin-bottom: 20px;
}

.fn-card-body {
    padding: 0 20px 20px;
    text-align: left;
}

/* Process Steps */
.fn-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.fn-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--fee-accent);
    color: var(--fee-white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 3px solid var(--fee-primary);
}

.fn-process-step h3 {
    color: var(--fee-primary);
    margin-bottom: 10px;
}

/* Testimonial Section */
.fn-testimonial-card {
    background-color: var(--fee-white);
    border-radius: var(--fn-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    text-align: center;
    font-style: italic;
    color: var(--fee-text);
    position: relative;
}

.fn-testimonial-card::before {
    content: '“';
    font-family: serif;
    font-size: 6rem;
    color: var(--fee-muted);
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
    opacity: 0.3;
    z-index: 0;
}

.fn-testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.fn-testimonial-author {
    font-weight: 600;
    color: var(--fee-primary);
    font-style: normal;
    display: block;
    margin-top: 15px;
}

.fn-testimonial-context {
    font-size: 0.9em;
    color: var(--fee-muted);
    font-style: normal;
}

/* Lead Form Section */
.fn-lead-form-section {
    background-color: var(--fee-primary);
    color: var(--fee-white);
    padding: 80px 0;
    text-align: center;
}

.fn-lead-form-section h2 {
    color: var(--fee-white);
}

.fn-lead-form-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.fn-form-wrapper {
    background-color: var(--fee-white);
    padding: 40px;
    border-radius: var(--fn-border-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.fn-form-group {
    margin-bottom: 20px;
}

.fn-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--fee-text);
    font-weight: 500;
}

.fn-form-group input[type="text"],
.fn-form-group input[type="email"],
.fn-form-group input[type="tel"],
.fn-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--fee-muted);
    border-radius: var(--fn-border-radius);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--fee-text);
    transition: border-color var(--fn-transition-speed) ease, box-shadow var(--fn-transition-speed) ease;
}

.fn-form-group input:focus,
.fn-form-group textarea:focus {
    border-color: var(--fee-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.2);
}

.fn-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.fn-form-submit-button {
    width: 100%;
    background-color: var(--fee-accent);
    color: var(--fee-text);
    border: none;
    padding: 15px 25px;
    border-radius: var(--fn-border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--fn-transition-speed) ease, transform var(--fn-transition-speed) ease, color var(--fn-transition-speed) ease;
}

.fn-form-submit-button:hover {
    background-color: var(--fee-primary);
    color: var(--fee-white);
    transform: translateY(-2px);
}

.fn-form-success, .fn-form-error {
    padding: 15px;
    margin-top: 20px;
    border-radius: var(--fn-border-radius);
    font-weight: 500;
    text-align: center;
    display: none;
}

.fn-form-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.fn-form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Trust Badges */
.fn-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.fn-trust-item {
    display: inline-flex;
    align-items: center;
    background-color: rgba(251, 146, 60, 0.1);
    padding: 15px 25px;
    border-radius: var(--fn-border-radius);
    font-weight: 500;
    color: var(--fee-primary);
    font-size: 1.1rem;
}

.fn-trust-item .fn-icon {
    font-size: 1.8rem;
    margin-right: 10px;
    color: var(--fee-accent);
}

/* FAQ Accordion */
.fn-faq-item {
    background-color: var(--fee-white);
    border-radius: var(--fn-border-radius);
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.fn-faq-q {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--fee-primary);
    font-size: 1.15rem;
    position: relative;
    transition: background-color var(--fn-transition-speed) ease;
}

.fn-faq-q:hover {
    background-color: var(--fee-background);
}

.fn-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--fee-accent);
    transition: transform var(--fn-transition-speed) ease;
}

.fn-faq-item.active .fn-faq-q::after {
    content: '-';
    transform: rotate(180deg);
}

.fn-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--fn-transition-speed) ease-out, padding var(--fn-transition-speed) ease-out;
    background-color: var(--fee-background);
    color: var(--fee-text);
}

.fn-faq-item.active .fn-faq-a {
    max-height: 500px; /* Adjust as needed */
    padding: 20px 30px;
}

/* Footer */
.fn-footer {
    background-color: var(--fee-secondary);
    color: var(--fee-white);
    padding: 60px 0 20px;
    font-size: 0.95rem;
}

.fn-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.fn-footer-col h4 {
    color: var(--fee-accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.fn-footer-col p {
    color: var(--fee-muted);
    margin-bottom: 10px;
}

.fn-footer-col ul {
    list-style: none;
}

.fn-footer-col ul li {
    margin-bottom: 10px;
}

.fn-footer-col ul li a {
    color: var(--fee-muted);
    transition: color var(--fn-transition-speed) ease;
}

.fn-footer-col ul li a:hover {
    color: var(--fee-accent);
}

.fn-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--fee-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fn-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fn-animate.fn-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Page specific styles */
.fn-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.fn-contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--fee-text);
}

.fn-contact-detail .fn-icon {
    font-size: 1.8rem;
    color: var(--fee-primary);
}

.fn-contact-detail strong {
    color: var(--fee-secondary);
}

.fn-map-container {
    height: 400px;
    background-color: #e0e0e0;
    border-radius: var(--fn-border-radius);
    overflow: hidden;
}

.fn-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .fn-nav-list {
        gap: 20px;
    }

    .fn-hero h1 {
        font-size: 3.2rem;
    }

    .fn-hero-subtitle {
        font-size: 1.2rem;
    }

    .fn-section-padding {
        padding: 60px 0;
    }

    .fn-card {
        padding: 25px;
    }

    .fn-footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .fn-hamburger {
        display: flex;
    }

    .fn-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 70%;
        height: 100vh;
        background-color: var(--fee-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right var(--fn-transition-speed) ease;
        z-index: 999;
    }

    .fn-nav.is-open {
        right: 0; /* Slide in */
    }

    .fn-nav-list {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .fn-nav-list a {
        font-size: 1.3rem;
        color: var(--fee-secondary);
    }

    .fn-cta-nav-button {
        margin-left: 0;
        margin-top: 30px;
        width: 80%;
    }

    .fn-hero h1 {
        font-size: 2.5rem;
    }

    .fn-hero-subtitle {
        font-size: 1rem;
    }

    .fn-hero .fn-button-group {
        flex-direction: column;
        gap: 15px;
    }

    .fn-section-padding {
        padding: 48px 0;
    }

    .fn-section-header h2 {
        font-size: 2rem;
    }

    .fn-section-header p {
        font-size: 1rem;
    }

    .fn-grid {
        grid-template-columns: 1fr;
    }

    .fn-trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .fn-trust-item {
        width: 80%;
        justify-content: center;
    }

    .fn-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fn-footer-col ul {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .fn-container {
        padding: 0 15px;
    }

    .fn-hero h1 {
        font-size: 2rem;
    }

    .fn-hero-subtitle {
        font-size: 0.9rem;
    }

    .fn-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .fn-section-header h2 {
        font-size: 1.8rem;
    }

    .fn-card {
        padding: 20px;
    }

    .fn-form-wrapper {
        padding: 25px;
    }

    .fn-faq-q {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .fn-faq-item.active .fn-faq-a {
        padding: 15px 20px;
    }
}