/*
Theme Name: Sala Thai Wellness
Theme URI: 
Author: Sala Thai Wellness
Author URI: 
Description: Theme for Sala Thai Wellness
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


/* Font Face */
@font-face {
    font-family: 'Radley';
    src: url('assets/font/Radley/Radley-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Radley';
    src: url('assets/font/Radley/Radley-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Telegraf';
    src: url('assets/font/Telegraf/PPTelegraf-UltraLight.otf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Telegraf';
    src: url('assets/font/Telegraf/PPTelegraf-UltraBold.otf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Telegraf';
    src: url('assets/font/Telegraf/PPTelegraf-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* General Styles */
:root {
    --primary-color: #b89e6f;
    --secondary-color: #b69c45;
    --tertiary-color: #efe3b8;
    --text-color: #333;
    --light-bg: #fffdf3;
    --green-primary: #05490e;
    --cream-text: #ecccb0;
    --cream-bg: #f5f5f5;
}

body {
    font-family: 'Telegraf', serif;
    font-weight: normal;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
}

h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}



/* Navigation Styles */
.navbar {
    background-color: var(--light-bg);
    padding: .5rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar-nav {
    gap: 1rem;
}

.nav-link {
    color: var(--green-primary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--green-primary);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--green-primary) !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        width: 280px;
        right: -280px;
        top: 0;
        height: 100vh;
        background: var(--light-bg);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 4rem 1rem 1rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        padding-top: 1rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 0.8rem 1rem;
        display: block;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(var(--green-primary-rgb), 0.1);
    }
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Hamburger Icon */
.navbar-toggler {
    padding: 0;
    border: none;
    background: transparent;
    z-index: 1001;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--green-primary);
    transition: all 0.3s ease;
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--green-primary);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 1rem;
    }

    .nav-logo {
        height: 35px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.6rem 0;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    padding-top: 100px; /* Menambahkan padding untuk jarak dari navbar */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img,
.custom-logo {
    max-height: 130px;
    width: auto;
    object-fit: contain;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    animation: scaleIn 1s ease-out;
}

.current-logo {
    width: 100px;
}

.hero-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: var(--secondary-color);
    font-family: 'Radley', serif;
    font-size: 5.5rem;
    line-height: .8;
    text-transform: uppercase;
}

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

.hero-text .col-md-6 {
    padding: 0 2rem;
}

@media (max-width: 991px) {
    .hero-text {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .hero-text {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 1rem;
        gap: 2rem;
    }

    .hero-text {
        font-size: 4rem;
    }

    .cta-container {
        margin: 2rem 0;
    }

    .btn-outline {
        font-size: 1rem;
        padding: 10px 25px;
    }

    .hero-text .col-md-6 {
        padding: 0;
    }

    .logo-container img,
    .custom-logo {
        max-height: 150px;
    }

    .hero-section {
        padding-top: 80px; /* Sedikit lebih kecil di mobile */
    }
}

.cta-container {
    margin-bottom: 3rem;
}

.btn-outline {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 30px;
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* About Section */
.about-section {
    padding: 1rem 0;
    background-color: #C2A87D;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-section .container {
    width: 100%;
    padding: 0 1rem;
}

.about-title {
    font-family: 'Radley', serif;
    color: var(--green-primary);
    font-weight: normal;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease-out;
}

.about-text {
    color: var(--green-primary);
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 520px;
}

.btn-tour {
    color: var(--green-primary);
    border: 2px solid #05490e;
    padding: 12px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.btn-tour:hover {
    background-color: #05490e;
    color: white;
    text-decoration: none;
}

.about-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 394px;
    aspect-ratio: 394 / 590;
    border: 2px solid #05490e;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Responsive styles for about section */
@media (max-width: 991px) {
    .about-section {
        min-height: auto;
        padding: 4rem 0;
    }

    .about-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .about-text {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .btn-tour {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}


/* Services Section */
.services-section {
    padding: 5rem 0 2.3rem;
}

.services-title {
    color: var(--green-primary);
    font-family: 'Radley', serif;
    font-weight: normal;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}

.service-card {
    transition: all 0.3s ease;
    margin-right: 2rem;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--green-primary);
    font-family: 'Radley', serif;
    font-size: 1.6rem;
}

.service-card p {
    color: var(--green-primary);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Treatment Packages */
.packages-section {
    background-color: var(--tertiary-color);
    padding: 5rem 0 2.3rem;
}

.packages-title {
    font-family: 'Radley', serif;
    color: var(--green-primary);
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: normal;
    animation: fadeInDown 0.8s ease-out;
}

.package-card {
    margin-bottom: 2rem;
    padding: .5rem;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.package-type {
    color: var(--green-primary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.package-item {
    margin-bottom: 1.5rem;
}

.package-name {
    font-family: 'Radley', serif;
    color: var(--green-primary);
    font-size: 1.6rem;
    line-height: 1.2;
}

.package-price {
    color: var(--green-primary);
    font-size: 1.125rem;
    line-height: 1.4;
}

/* Responsive styles for packages */
@media (max-width: 991px) {
    .packages-title {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .packages-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

/* Rolfing Section */
.rolfing-section {
    min-height: 80vh;
    position: relative;
    padding: 0;
}

.rolfing-section .container {
    height: 100%;
}

.rolfing-content {
    padding: 4rem 2rem 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.rolfing-news {
    color: var(--green-primary);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.rolfing-title {
    font-family: 'Radley', serif;
    color: var(--green-primary);
    font-size: 4.5rem;
    line-height: .5;
    font-weight: normal;
    animation: fadeInDown 0.8s ease-out;
}

.rolfing-text {
    color: var(--green-primary);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.btn-subscribe {
    display: inline-block;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
    padding: 12px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 40px;
    width: fit-content;
}

.btn-subscribe:hover {
    background-color: var(--green-primary);
    color: white;
}

.rolfing-image {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.rolfing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive styles for rolfing section */
@media (max-width: 991px) {
    .rolfing-section {
        min-height: auto;
    }

    .rolfing-news {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .rolfing-title {
        font-size: 3rem;
    }

    .rolfing-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .btn-subscribe {
        font-size: 1.1rem;
        padding: 10px 30px;
    }
}

@media (max-width: 768px) {
    .rolfing-section {
        min-height: auto;
    } 
    .rolfing-news {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .rolfing-title {
        font-size: 2.5rem;
    }

    .rolfing-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Why Rolfing Section */
.why-rolfing-section {
    background-image: url('../images/massage/tr-ng-th-m-m-ana-anabeautyacademy-zv_3nC3e59E-unsplash.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    position: relative;
    min-height: 70vh;
}

.why-rolfing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.why-rolfing-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.why-rolfing-title {
    font-family: 'Radley', serif;
    color: var(--cream-text);
    font-size: 5rem;
    font-weight: normal;
    line-height: 1.2;
    animation: fadeInDown 0.8s ease-out;
}

.why-rolfing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.benefit-item {
    color: var(--cream-text);
}

.benefit-title {
    font-family: 'Radley', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.benefit-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive styles for why rolfing section */
@media (max-width: 991px) {
    .why-rolfing-section {
        min-height: auto;
    }

    .why-rolfing-title {
        font-size: 3rem;
    }

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

    .benefit-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .why-rolfing-section {
        min-height: auto;
    }    

    .why-rolfing-title {
        font-size: 2.5rem;
    }

    .benefit-title {
        font-size: 1.4rem;
    }

    .benefit-text {
        font-size: 0.9rem;
    }
}
/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-title {
    font-family: 'Radley', serif;
    color: var(--green-primary);
    font-size: 4rem;
    margin-bottom: 5rem;
    font-weight: normal;
    animation: fadeInDown 0.8s ease-out;
}

.testimonial-card {
    border: 1px solid var(--green-primary);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    margin: 0 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(5, 73, 14, 0.1);
}

.testimonial-text {
    color: var(--green-primary);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: var(--green-primary);
    font-size: 1.5rem;
}

/* Responsive styles for testimonials section */
@media (max-width: 991px) {
    .testimonials-title {
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .author-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .testimonial-text {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .author-name {
        font-size: 1.5rem;
    }
}

/* Team Section */
.team-section {
    background-color: #b89e6f;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.team-content {
    padding: 2rem 0;
    max-width: 800px;
}

.team-title {
    font-family: 'Radley', serif;
    color: var(--green-primary);
    font-size: 4rem;
    line-height: .8;
    font-weight: normal;
    animation: fadeInDown 0.8s ease-out;
}

.team-description {
    color: var(--green-primary);
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 500px;
}

.team-description p {
    margin-bottom: 2rem;
}

.team-images {
    height: 650px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.team-image-top,
.team-image-bottom {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    border: 2px solid var(--green-primary);
}

.team-image-top img,
.team-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-images img {
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

/* Responsive styles for team section */
@media (max-width: 991px) {
    .team-section {
        min-height: auto;
    }

    .team-title {
        font-size: 3rem;
    }

    .team-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        min-height: auto;
    }

    .team-title {
        font-size: 2.5rem;
    }

    .team-description {
        font-size: 1.1rem;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    background-image: url('../images/massage/alan-caishan-cU53ZFBr3lk-unsplash.jpg');
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    padding: 3rem 0;
    color: var(--cream-text);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.brand-name {
    margin-bottom: 1rem;
}

.brand-name h3 {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 0;
}

.brand-name p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-title {
    font-family: 'Radley', serif;
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: normal;
    color: var(--cream-text);
    animation: fadeInDown 0.8s ease-out;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-info p,
.contact-info a {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 0.3rem;
    color: var(--cream-text);
    text-decoration: none;
}

.location-info,
.hours-info {
    margin-bottom: 1.5rem;
}

.contact-text {
    margin: 1.5rem 0;
    max-width: 800px;
}

/* Responsive styles for contact section */
@media (max-width: 991px) {
    .contact-title {
        font-size: 3rem;
    }

    .contact-info h3 {
        font-size: 1.2rem;
    }

    .contact-info p,
    .contact-info a {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }

    .contact-info h3 {
        font-size: 1.1rem;
    }

    .contact-info p,
    .contact-info a {
        font-size: 1.1rem;
    }
}

/* Footer */
.footer {
    background-color: var(--tertiary-bg);
    padding: 2rem 0;
}

.footer .row {
    justify-content: center;
}

.footer h3 {
    color: var(--green-primary);
    font-size: 1.5rem;
    font-weight: bold;
}

.footer p,
.footer a {
    color: var(--green-primary);
    font-size: 1.3rem;
    text-decoration: none;
    margin: 0;
}

.footer a.social-link {
    font-size: 1.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--green-primary);
    font-size: 1.8rem;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
    transform: translateY(-3px) rotate(5deg);
}

@media (max-width: 768px) {
    .footer .col-md-4 {
        margin-bottom: 1.5rem;
    }
    .footer h3 {
        font-size: 1.3rem;
    }
    .footer p,
    .footer a {
        font-size: 1.2rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* responsive styles for team section */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
    }

    .footer {
        position: relative;
        width: 100%;
        overflow: visible;
    }

    .footer .row {
        margin: 0;
        width: 100%;
    }

    .footer .social-links {
        position: relative;
        z-index: 1;
        margin-bottom: 1rem;
    }
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-nav {
    animation: fadeInDown 0.8s ease-out;
}

.animate-logo {
    animation: slideInLeft 0.8s ease-out;
}

.img-fluid {
    transition: all 0.5s ease;
}

.img-fluid:hover {
    transform: scale(1.02);
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Hero Section Updates */
.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--cream-text);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--cream-text);
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--cream-text);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
    line-height: 1.7;
}

.btn-primary-cta {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 158, 111, 0.3);
}

.btn-primary-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 158, 111, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-cta {
    background: transparent;
    color: var(--cream-text);
    padding: 15px 30px;
    border: 2px solid var(--cream-text);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
    background: var(--cream-text);
    color: var(--green-primary);
    text-decoration: none;
}

/* About Section Updates */
.about-cta {
    margin-top: 2rem;
}

.cta-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* Benefits Section - NEW */
.benefits-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.benefits-section h2 {
    color: var(--green-primary);
    margin-bottom: 2rem;
}

.benefits-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.situation-list {
    list-style: none;
    padding: 0;
}

.situation-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.situation-list li:last-child {
    border-bottom: none;
}

.situation-list i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.symptom-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.symptom-item:hover {
    transform: translateX(5px);
}

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

/* Results Section - NEW */
.results-section {
    padding: 80px 0;
    background: white;
}

.results-section h2 {
    color: var(--green-primary);
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.3rem;
    margin-top: 3px;
}

.results-list {
    display: grid;
    gap: 20px;
}

.result-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
}

.result-item h4 {
    color: var(--green-primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.result-item p {
    color: var(--primary-color);
    font-style: italic;
    margin: 0;
}

/* Science Section - NEW */
.science-section {
    padding: 80px 0;
    background: var(--cream-bg);
}

.science-section h2 {
    color: var(--green-primary);
    margin-bottom: 1.5rem;
}

.science-intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.science-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.science-benefits li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.science-benefits i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.customer-quote {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    margin-top: 2rem;
}

.customer-quote p {
    font-size: 1.3rem;
    color: var(--green-primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.customer-quote cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.science-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Info-Gespräch CTA Section - NEW */
.info-gespraech-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-primary), var(--primary-color));
    color: white;
    text-align: center;
}

.info-gespraech-section h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    color: white !important;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-contact-phone,
.btn-contact-email,
.btn-contact-online {
    background: white;
    color: var(--green-primary);
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.btn-contact-phone:hover,
.btn-contact-email:hover,
.btn-contact-online:hover {
    background: var(--tertiary-color);
    color: var(--green-primary);
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-contact-phone i,
.btn-contact-email i,
.btn-contact-online i {
    font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        margin: 8px 0;
        width: 200px;
        text-align: center;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .btn-contact-phone,
    .btn-contact-email,
    .btn-contact-online {
        width: 200px;
    }

    .info-gespraech-section h2 {
        font-size: 2.2rem;
    }

    .results-list {
        grid-template-columns: 1fr;
    }
}
