/* ===== CSS RESET & VARIABLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f5d5e0;
    --primary-dark: #e8b4c4;
    --primary-light: #faf5f7;
    --text-dark: #3d3d3d;
    --text-medium: #6b6b6b;
    --text-light: #999999;
    --white: #ffffff;
    --background: #fcfcfc;
    --shadow: rgba(0, 0, 0, 0.05);
    --shadow-hover: rgba(0, 0, 0, 0.08);
    --transition: all 0.4s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-weight: 300;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--primary-dark);
    margin: 18px auto 0;
    border-radius: 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 2px 8px var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-light);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 1px 3px var(--shadow);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: var(--text-medium);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-dark);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link:hover::after {
    width: 100%;
}

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

.hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--text-medium);
    border-radius: 0;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--primary);
    opacity: 0.04;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 300;
}

.hero-text h1 span {
    color: var(--primary-dark);
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    max-width: 500px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 400px;
    height: 500px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-dark);
    box-shadow: 0 4px 20px var(--shadow);
}

.hero-image-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.7;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    width: 320px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    object-fit: cover;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.about-qualifications {
    margin-top: 25px;
}

.about-qualifications h4 {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.qualifications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.qualification-tag {
    background: var(--primary-light);
    color: var(--text-medium);
    padding: 6px 14px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ===== COACHING SECTION ===== */
.coaching {
    background: var(--background);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 12px var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.pricing-card.featured {
    border: 1px solid var(--primary-dark);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: var(--text-dark);
    padding: 6px 40px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 400;
}

.pricing-frequency {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.pricing-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-medium);
}

.pricing-features {
    margin: 30px 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '\2713';
    color: var(--primary-dark);
    font-weight: 400;
}

.pricing-card .btn {
    width: 100%;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    background: var(--white);
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.product-image {
    height: 280px;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-image svg {
    width: 50px;
    height: 50px;
    opacity: 0.7;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 400;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.product-info .btn {
    width: 100%;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 400;
}

.contact-info p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--text-medium);
}

.contact-text {
    color: var(--text-medium);
}

.contact-text strong {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-text a {
    color: var(--text-medium);
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--primary-dark);
}


/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    opacity: 0.8;
}

.social-link:hover svg {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== JOTFORM MODAL ===== */
.jotform-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1100;
}

.jotform-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.jotform-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90vw;
    max-width: 700px;
    height: 90vh;
    max-height: 800px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1101;
    flex-direction: column;
    overflow: hidden;
}

.jotform-modal.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.jotform-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--primary-light);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jotform-modal-close:hover {
    background: var(--primary);
}

.jotform-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-tagline {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-placeholder {
        width: 300px;
        height: 380px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        margin: 0 auto;
        width: 280px;
        height: auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 4px 12px var(--shadow);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section {
        padding: 60px 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .product-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .hero-image-placeholder {
        width: 250px;
        height: 300px;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}
