@font-face {
    font-family: 'Montserrat';
    src: url('font/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

:root {
    --primary-yellow: #f2e6b1;
    /* Friendly Yellow */
    --accent-red: #e74c3c;
    /* Heart Red */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--primary-yellow);
    width: 100%;
    /* Default background */
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

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

ul {
    list-style: none;
}

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

/* Header */
header {
    background-color: var(--primary-yellow);
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    overflow: visible;
    /* Allow sticky nav to work properly if needed */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

nav.sticky {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    nav {
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: none;
        width: 90%;
        border-radius: 0 0 25px 25px;
        padding: 10px 20px;
        background-color: rgba(255, 255, 255, 0.95);
    }

    .phone-icon-link {
        display: none;
    }

    .logo {
        font-size: 0.9rem;
    }

    .logo-icon {
        width: 22px;
        height: 22px;
        margin-right: 6px;
    }
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.phone-icon-link {
    font-size: 1.2rem;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--accent-red);
}

.lang-select {
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px 5px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
}

.lang-select:hover {
    border-color: var(--accent-red);
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 100;
    /* Ensure above nav */
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px;
}

.mobile-phone-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-right: 20px;
    text-decoration: none;
}

/* Hero Section */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-visual {
    position: relative;
    margin-top: 40px;
    max-width: 300px;
    /* Limit size on mobile */
    width: 100%;
}

@media (min-width: 768px) {
    .hero-container {
        padding: 40px 20px;
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }

    .hero-content {
        flex: 1;
        padding-right: 40px;
    }

    .hero-visual {
        flex: 1;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 500px;
        margin-top: 0;
        max-width: none;
    }
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #1a1a1a;
}

.subline {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #4a4a4a;
    font-weight: 500;
    max-width: 90%;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-red);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(231, 76, 60, 0.4);
    background-color: #d63b2c;
}

.cta-button:active {
    transform: translateY(-1px);
}

.video-teaser {
    margin-top: 20px;
}

.play-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    text-decoration: underline;
    color: var(--text-dark);
    font-size: 1rem;
}

.play-icon {
    margin-right: 8px;
    font-size: 0.8rem;
    color: black;
}

/* Hero Visual */
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    z-index: 2;
    position: relative;
    max-width: 350px;
    /* Adjust based on image */
    margin: 0 auto;
}

.profile-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* Overlap right side */
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid white;
    overflow: visible;
    /* Allow play overlay to be visible if it pops out, though it's inside */
    z-index: 4;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.play-overlay {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: black;
}

@media (min-width: 768px) {
    .hero-image {
        max-width: 100%;
        max-height: 600px;
        width: auto;
    }

    .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    }
    .subline {
    font-size: 1.2rem;
    }

    .cta-button {
    font-size: 1.2rem;
    }

    .profile-container {
        width: 180px;
        height: 180px;
        bottom: 40px;
        right: 30px;
        border: 8px solid white;
    }

    .play-overlay {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 45px;
        right: 35px;
    }
}

/* Sections General */
section {
    padding: 80px 0;
}

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

.section-white {
    background-color: var(--bg-white);
}

.section-yellow {
    background-color: var(--primary-yellow);
}

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .text-block,
    .benefits-list {
        flex: 1;
    }
}

.text-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.benefits-list ul li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.benefits-list ul li::before {
    content: '';
    display: inline-block;
    min-width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
}

/* Offer Section */
.intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.offer-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.offer-card ul {
    list-style: disc;
    padding-left: 20px;
}

.offer-card li {
    margin-bottom: 10px;
}

.cta-container {
    text-align: center;
}

/* Future Section */
.future-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .future-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.future-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

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

.future-card h4 {
    color: var(--accent-red);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.future-card p {
    margin-bottom: 30px;
}

.secondary-button {
    display: inline-block;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: var(--accent-red);
    color: white;
}

/* Why Section */
.why-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.why-list li {
    background: var(--primary-yellow);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

footer h2 {
    color: white;
    margin-bottom: 50px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-form,
    .contact-details {
        flex: 1;
    }

    .contact-details {
        padding-left: 50px;
    }
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
}

.contact-details h3 {
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-details a {
    color: white;
    text-decoration: underline;
}

.legal {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

.legal a {
    color: #aaa;
    margin: 0 10px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal:target {
    display: flex;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    text-decoration: none;
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        box-shadow: none;
        padding-top: 0;
        z-index: 99;
    }

    .nav-active {
        transform: translateX(0%);
        visibility: visible;
    }

    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
    }

    .burger {
        display: block;
    }

    .mobile-phone-icon {
        display: block;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}
/* Hero CTA Responsive Logic */
.mobile-cta {
    display: inline-block;
}

.desktop-cta-container {
    display: none;
}

@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }

    .desktop-cta-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-text {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
}

/* FAQ Accordion */
.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    margin-bottom: 20px;
    color: var(--accent-red);
    font-size: 1.3rem;
}

.accordion-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.accordion-content .content-inner {
    padding: 0 20px 20px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.accordion-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.accordion-content li {
    margin-bottom: 5px;
}
