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

body {
    font-family: 'Rosario', sans-serif;
    color: white;
    background-color: #111;
	zoom: 0.8;
}

.hero {
    padding-bottom: 100px;
    background-image:
        linear-gradient(
            rgba(40, 20, 80, 0.25),
            rgba(20, 20, 40, 0.25)
        ),
        url('../images/SMbackground.jpg');

    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 38px 80px;
}

.logo img {
    width: 320px;
    max-width: 100%;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 34px;
}


.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
	font-size: 1.5rem;
font-weight: 500;
letter-spacing: 0.4px;
}

.nav-links a:hover {
    opacity: 0.7;
}
.hero-content {

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;

    max-width: 1300px;

    margin: 0;

    padding: 160px 70px 120px;

    padding-left: 300px;

    align-items: flex-start;

}
.hero-content > * {

    max-width: 560px;

}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 42px;
    color: rgba(255,255,255,0.88);
    max-width: 700px;
}

.hero-button {
    display: inline-block;
    width: fit-content;
    padding: 16px 36px;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 4px;
    color: white;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.hero-button:hover {
    background: white;
    color: #222;
    transform: translateY(-2px);
}
.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
    color: rgba(255,255,255,0.92);
}
/* MOBILE */

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .nav-links {
        gap: 25px;
    }

    .hero-content {
        padding: 40px 30px 80px;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .logo img {
        width: 200px;
    }
	
}

/* CONTENT SECTIONS */

.about-section,
.education-section {
    background: #f8f6fd;
    color: #222;
    padding: 70px 40px;
}

.education-section {
    background: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
	padding-bottom:55px;
}

.section-container h2 {
    font-size: 2.1rem;
    margin-bottom: 22px;
    color: #33245c;
    font-weight: 600;
}

.section-container p {
    font-size: 1.05rem;
    line-height: 2;
    max-width: 850px;
    color: #5e5a66;
}

/* EDUCATION CARDS */

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.education-card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.education-card:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.education-card h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #2f2350;
}

.education-card p {
    font-size: 1rem;
    line-height: 1.8;
}

/* FOOTER */

.footer {
    background: #221b33;
    color: rgba(255,255,255,0.65);
    text-align: center;
    padding: 18px;
    font-size: 0.85rem;
}

/* MOBILE CONTENT */

@media (max-width: 900px) {

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

    .about-section,
    .education-section {
        padding: 70px 30px;
    }

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

/* CTA SECTION */

.cta-section {
    background:
        linear-gradient(
            rgba(70, 60, 110, 0.45),
            rgba(120, 130, 170, 0.40)
        ),
        url('../images/SMbackground.jpg');

    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 90px 40px;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 22px;
    font-weight: 600;
}
.cta-section h2,
.cta-section p {
    color: white;
}
.cta-section p {
    max-width: 760px;
    margin: 0 auto 36px;
    font-size: 1.08rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 4px;
    color: white;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.cta-button:hover {
    background: white;
    color: #221b33;
}

/* EDUCATION PAGE HERO */

.subpage-hero {
    background:
        linear-gradient(
			rgba(70, 50, 120, 0.38),
			rgba(120, 110, 170, 0.28)
		),
        url('../images/education-bg.jpg');

    background-size: cover;
    background-position: center;
    padding-bottom: 90px;
}

.subpage-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px 40px;
}

.subpage-content h1 {
    font-size: 4rem;
    color: #35235f;
    margin-bottom: 28px;
    font-weight: 600;
}

.subpage-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #3f3650;
    max-width: 760px;
    margin: 0 auto;
}

/* EDUCATION CONTENT SECTIONS */

.info-section {
    background: #fcfbfe;
    padding: 90px 60px;
}

.info-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.placeholder-image {
    width: 100%;
    min-height: 420px;
    border-radius: 24px;

    background:
        linear-gradient(
            rgba(120,110,180,0.22),
            rgba(180,170,220,0.18)
        ),
        url('../images/PedalDroplet.png');

    background-size: cover;
    background-position: center;

    box-shadow: 0 20px 60px rgba(70,50,120,0.12);
}
.info-image img {
    width: 100%;
    border-radius: 24px;
    display: block;

    box-shadow: 0 20px 60px rgba(70,50,120,0.12);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}
.section-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: #6d5ca5;
    margin-bottom: 18px;
}

.info-text h2 {
    font-size: 3rem;
    line-height: 1.15;
    color: #2f2350;
    margin-bottom: 28px;
}

.info-text p {
    font-size: 1.08rem;
    line-height: 2;
    color: #5d5868;
    margin-bottom: 24px;
}

/* MOBILE */

@media (max-width: 950px) {

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

    .info-section {
        padding: 80px 30px;
    }

    .info-text h2 {
        font-size: 2.3rem;
    }

    .placeholder-image {
        min-height: 300px;
    }
}

.blend-section {
    padding: 80px;
    background: #ffffff;
}

.blend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.blend-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 60px rgba(70,50,120,0.12);
}

.blend-text h2 {
    font-size: 3rem;
    color: #2d2167;
    margin: 15px 0 25px;
    line-height: 1.1;
}

.blend-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4f4a63;
    margin-bottom: 22px;
}

.practitioner-section {
    padding: 80px 60px;
    background: #f8f6fd;
}

.practitioner-box {
    max-width: 1250px;
    margin: 0 auto;
    background: rgba(255,255,255,0.72);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(120,90,180,0.08);

    border-radius: 28px;

    padding: 45px 55px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;

    box-shadow:
        0 10px 40px rgba(80,60,130,0.06);
}
.practitioner-box {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.practitioner-box:hover {

    transform: translateY(-4px);

    box-shadow:
        0 18px 50px rgba(80,60,130,0.10);
}
.practitioner-left {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
}

.practitioner-icon img {
    width: 90px;
    opacity: 0.9;
}

.practitioner-text h2 {
    font-size: 2rem;
    color: #2f2260;
    margin: 10px 0 18px;
    line-height: 1.2;
}

.practitioner-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4b4363;
    max-width: 700px;
}

.secondary-button {
    display: inline-block;

    padding: 16px 34px;

    border: 1px solid #7d63c7;

    border-radius: 12px;

    color: #5f46a7;

    text-decoration: none;

    font-size: 1rem;
    font-weight: 600;

    transition: all 0.3s ease;

    background: rgba(255,255,255,0.6);
}

.secondary-button:hover {
    background: #7d63c7;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 980px) {

    .practitioner-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 35px;
    }

    .practitioner-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .practitioner-right {
        width: 100%;
    }

    .secondary-button {
        width: 100%;
        text-align: center;
    }
}

.contact-section {

    background:
        linear-gradient(
            180deg,
            #f8f6fd 0%,
            #f3eefc 100%
        );

    padding: 0px 40px 70px;
}

.contact-grid {

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 70px;

    align-items: center;
}

.contact-info h2 {

    font-size: 2.4rem;

    color: #6f42c1;

    margin-bottom: 25px;

    line-height: 1.2;
}

.contact-info p {

    font-size: 1.05rem;

    line-height: 1.9;

    color: #4b4363;

    max-width: 420px;

    margin-bottom: 35px;
}
.contact-info {

    position: relative;

    padding: 40px 30px 140px;

    border-radius: 28px;

    overflow: hidden;

    background:

        url('../images/crystal-drop.png');

    background-size: 340px;
    background-repeat: no-repeat;
    background-position: left bottom;

    min-height: 320px;
}

.contact-form {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.contact-form input,
.contact-form textarea {

    width: 100%;

    padding: 18px 20px;

    border: none;

    border-radius: 12px;

    background: rgba(255,255,255,0.92);

    font-size: 1rem;

    font-family: inherit;

    color: #2f2260;

    box-shadow:
        0 4px 18px rgba(90,70,140,0.05);

    transition: all 0.3s ease;
}

.contact-form textarea {

    resize: vertical;

    min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {

    outline: none;

    box-shadow:
        0 0 0 2px rgba(140,110,220,0.22);
}

.contact-form button {

    align-self: flex-start;

    background: #6f42c1;

    color: white;

    border: none;

    padding: 16px 34px;

    border-radius: 12px;

    font-size: 1rem;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.contact-form button:hover {

    background: #5d33aa;

    transform: translateY(-2px);
}

@media (max-width: 980px) {

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .form-row {

        grid-template-columns: 1fr;
    }

    .contact-form button {

        width: 100%;
    }
}
@media (max-width: 950px) {

    .blend-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .blend-section {
        padding: 70px 30px;
    }

    .blend-image {
        order: 1;
    }

    .blend-text {
        order: 2;
    }

    .blend-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .blend-text h2 {
        font-size: 2.3rem;
    }
}
@media (max-width: 950px) {

    .info-section {
        padding: 40px 30px;
    }

    .info-grid {
        gap: 25px;
    }

    .info-text p:last-child {
        margin-bottom: 0;
    }

    .reverse-grid {
        gap: 25px;
    }
}

.contact-hero {

    position: relative;

    min-height: 320px;

    background:
        linear-gradient(
            rgba(255,255,255,0.40),
            rgba(255,255,255,0.32)
        ),
        url('../images/ContactHeroBG.jpg');

    background-size: cover;

    background-position: center center;

    overflow: hidden;
}

.contact-hero-content {

    max-width: 1300px;

    margin: 0 auto;

    padding: 80px 0px 70px;

    display: flex;
    align-items: center;

    min-height: 320px;
}
.contact-hero-text {

    max-width: 560px;
}

.contact-hero-text h1 {

    font-size: 4.2rem;

    line-height: 1.05;

    color: #33206b;

    margin-bottom: 24px;

    font-weight: 600;
}
.contact-hero-text p {

    font-size: 1.35rem;

    line-height: 1.9;

    color: #4b4265;
}
@media (max-width: 950px) {

    .contact-hero {

        min-height: auto;
    }

    .contact-hero-content {

        padding: 140px 30px 80px;

        min-height: auto;
    }

    .contact-hero-text h1 {

        font-size: 3rem;
    }

    .contact-hero-text p {

        font-size: 1.1rem;

        line-height: 1.8;
    }

}
.contact-main-section {

    position: relative;

    overflow: hidden;

    background:

        url('../images/ContactBG.jpg');

    background-size: cover;

    background-position: left center;

    background-repeat: no-repeat;

    padding: 120px 60px 140px;
}

.contact-main-grid {

    position: relative;

    z-index: 2;
	
    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: start;
}

.contact-details h2 {

    font-size: 3rem;

    color: #2f2260;

    margin: 15px 0 28px;

    line-height: 1.1;
}

.contact-details p {

    font-size: 1.08rem;

    line-height: 1.9;

    color: #57506a;
}

.contact-method {

    margin-top: 35px;
}

.contact-method strong {

    display: block;

    font-size: 1rem;

    color: #6f42c1;

    margin-bottom: 8px;
}

.contact-card {

    background: rgba(255,255,255,0.82);

    backdrop-filter: blur(16px);

    border-radius: 28px;

    padding: 45px;

    box-shadow:
        0 20px 60px rgba(70,50,120,0.08);
}

.contact-card h3 {

    font-size: 2rem;

    color: #2f2260;

    margin-bottom: 10px;
}

.form-note {

    font-size: 0.95rem;

    color: #7b7690;

    margin-bottom: 28px;
}
@media (max-width: 768px) {

    .contact-main-section {
        background:
            linear-gradient(
                rgba(248,245,252,0.86),
                rgba(248,245,252,0.90)
            ),
            url('../images/ContactBG.jpg');

        background-size: cover;
        background-position: left bottom;
        background-repeat: no-repeat;

        background-color: #f8f6fd;
    }

}
/* =========================================================
   PRODUCTS PAGE
========================================================= */

.products-hero {

    position: relative;

    min-height: 620px;

    background:
        linear-gradient(
            rgba(255,255,255,0.40),
            rgba(255,255,255,0.35)
        ),
        url('../images/ContactHeroBG.jpg');

    background-size: cover;

    background-position: center;

    overflow: hidden;
}

.products-hero-content {

    max-width: 1300px;

    margin: 0 auto;

    min-height: 620px;

    display: flex;

    align-items: center;

    padding: 140px 0px 100px;
}

.products-hero-text {

    max-width: 560px;
}

.products-hero-text h1 {

    font-size: 5rem;

    line-height: 1.05;

    color: #2f2470;

    margin-bottom: 30px;
}

.products-hero-text p {

    font-size: 1.2rem;

    line-height: 1.9;

    color: #41376f;
}

/* =========================================================
   PRODUCT SHOWCASE
========================================================= */

.products-showcase-section {

    background: #f6f2fa;

    padding: 90px 40px 40px;
}

.products-showcase-container {

    max-width: 1500px;

    margin: 0 auto;

    text-align: center;
}

.products-collection-image {

    width: 100%;

    max-width: 1500px;

    border-radius: 28px;

    display: block;

    margin: 0 auto;

    box-shadow: 0 25px 70px rgba(78, 48, 112, 0.12);
}

/* =========================================================
   DISTRIBUTION SECTION
========================================================= */

.distribution-section {

    background: #f6f2fa;

    padding: 40px 40px 100px;
}

.distribution-card {

    max-width: 1100px;

    margin: 0 auto;

    background: rgba(255,255,255,0.72);

    backdrop-filter: blur(10px);

    border-radius: 30px;

    padding: 70px;

    box-shadow: 0 18px 60px rgba(67, 44, 96, 0.08);
}

.distribution-text {

    max-width: 850px;
}

.distribution-text h2 {

    font-size: 3rem;

    line-height: 1.15;

    color: #2f2470;

    margin: 18px 0 30px;
}

.distribution-text h2 {
	font-size: 2rem;
}

.distribution-text p {

    font-size: 1.08rem;

    line-height: 2;

    color: #4a4268;

    margin-bottom: 24px;
}

.shop-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 34px;

    border-radius: 14px;

    background: #6d3fd2;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    margin-top: 12px;

    transition: all 0.3s ease;
}
.shop-btn2 {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 34px;

    border-radius: 14px;

    border: 1px solid #6d3fd2;

    color: #6d3fd2;

    text-decoration: none;

    font-weight: 600;

    margin-top: 12px;

    transition: all 0.3s ease;
}

.shop-btn:hover {

    transform: translateY(-2px);

    background: #5f33c4;
}

/* =========================================================
   INFO CARDS
========================================================= */

.products-info-section {

    background: #f6f2fa;

    padding: 0 40px 110px;
}

.products-info-grid {

    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.info-card {

    background: rgba(255,255,255,0.72);

    border-radius: 24px;

    padding: 42px;

    box-shadow: 0 15px 45px rgba(70, 46, 104, 0.06);
}

.info-card h3 {

    font-size: 1.7rem;

    color: #2f2470;

    margin-bottom: 18px;
}

.info-card p {

    line-height: 1.9;

    color: #51496f;
}

/* =========================================================
   CTA SECTION
========================================================= */

.products-cta-section {

    background: #f6f2fa;

    padding: 0 40px 120px;
}

.products-cta-card {

    max-width: 1100px;

    margin: 0 auto;

    text-align: center;

    background:

        url('../images/ContactBG.jpg');

    background-size: cover;

    background-position: center;

    border-radius: 30px;

    padding: 90px 60px;

    box-shadow: 0 20px 60px rgba(78, 48, 112, 0.08);
}

.products-cta-card h2 {

    font-size: 3rem;

    color: #2f2470;

    margin-bottom: 20px;
}

.products-cta-card p {

    max-width: 720px;

    margin: 0 auto 36px;

    line-height: 2;

    color: #51496f;
}

.primary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 36px;

    border-radius: 14px;

    background: #6d3fd2;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;
}

.primary-btn:hover {

    transform: translateY(-2px);

    background: #5f33c4;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .products-hero {

        min-height: auto;
    }

    .products-hero-content {

        min-height: auto;

        padding: 140px 30px 80px;
    }

    .products-hero-text h1 {

        font-size: 3.4rem;
    }

    .products-info-grid {

        grid-template-columns: 1fr;
    }

    .distribution-card,
    .products-cta-card {

        padding: 45px 30px;
    }

    .distribution-text h2,
    .products-cta-card h2 {

        font-size: 2.2rem;
    }

    .products-showcase-section,
    .distribution-section,
    .products-info-section,
    .products-cta-section {

        padding-left: 20px;

        padding-right: 20px;
    }
}

.form-success {
    background: #e8f7ee;
    border: 1px solid #b7e4c7;
    color: #1b4332;
    padding: 18px 24px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}
.contact-form button.sending {
    opacity: 0.9;
    cursor: wait;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .contact-main-section,
    .contact-section,
    .contact-main-grid,
    .contact-grid,
    .contact-card,
    .contact-form-wrapper,
    .contact-details,
    .contact-info {
        width: 100%;
        max-width: 100%;
    }

    .contact-main-section,
    .contact-section {
        padding: 40px 20px;
    }

    .contact-main-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

}