/* 
 * Main Stylesheet for yunoxelvira.shop
 * Theme: Vegetarian weight loss menu without exhaustion
 */

/* ===== BASE STYLES ===== */
:root {
    /* Main color palette */
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #A5D6A7;
    --accent-yellow: #FFEB3B;
    --accent-orange: #FF9800;
    --bg-color: #FAFAF8;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --white: #FFFFFF;
    --black: #000000;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Fonts */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --accent-font: 'Poppins', sans-serif;
    
    /* Sizes and spacing */
    --container-width: 1200px;
    --section-spacing: 80px;
    --component-spacing: 40px;
    --border-radius-small: 5px;
    --border-radius-medium: 10px;
    --border-radius-large: 20px;
    --border-radius-circle: 50%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 25px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    border-radius: var(--border-radius-small);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.3);
}

.btn-secondary:hover {
    background-color: #FFD600;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 8px 18px;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-medium);
}

.btn-nav:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: var(--border-radius-medium);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-light);
    padding: 10px 0;
}

header.scrolled .nav-links a {
    color: var(--text-dark);
}

header.scrolled .nav-links a:hover {
    color: var(--primary-color);
}

header.scrolled .btn-nav {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

header.scrolled .logo img {
    filter: none;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--white);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1010;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

header.scrolled .menu-toggle span {
    background-color: var(--text-dark);
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg') center/cover no-repeat;
    color: var(--white);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius-large);
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-family: var(--accent-font);
    opacity: 0.9;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background-color: var(--white);
    padding: var(--section-spacing) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius-medium);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.benefit-card.highlight {
    background-color: var(--primary-light);
    position: relative;
    z-index: 1;
    transform: scale(1.05);
}

.benefit-card.highlight:hover {
    transform: scale(1.05) translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-light);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/how.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 3px;
    background-color: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.5rem;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: var(--shadow-medium);
}

.timeline-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
    width: 45%;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
    top: 15px;
    left: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--white);
    top: 15px;
    right: -10px;
}

.timeline-image {
    margin-bottom: 20px;
    border-radius: var(--border-radius-small);
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.timeline-content:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* ===== MENU EXAMPLES SECTION ===== */
.menu-examples-section {
    background-color: var(--white);
    position: relative;
}

.menu-examples-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    pointer-events: none;
}

.menu-slider {
    position: relative;
    display: flex;
    overflow-x: hidden;
    margin: 0 -15px 40px;
    padding-bottom: 20px;
}

.menu-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    transition: transform 0.5s ease;
}

.menu-card {
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.menu-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.energy-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-light);
}

.menu-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.menu-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.menu-nutrition {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
}

.menu-nutrition li {
    font-size: 0.9rem;
    color: var(--text-medium);
    position: relative;
}

.menu-nutrition li span {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 5px;
}

.menu-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.menu-prev, .menu-next {
    background-color: var(--white);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    border: 2px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.menu-prev:hover, .menu-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: var(--border-radius-circle);
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 235, 59, 0.1);
    border-radius: var(--border-radius-circle);
    z-index: 0;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    overflow: hidden;
    margin: 0 -15px 40px;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: var(--border-radius-circle);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 1;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
    text-align: center;
    margin-top: -50px;
    padding-top: 60px;
    position: relative;
    z-index: 0;
    flex-grow: 1;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    margin: 0 2px;
}

blockquote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 20px;
    position: relative;
}

blockquote::before, blockquote::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    font-family: serif;
    position: absolute;
}

blockquote::before {
    top: -15px;
    left: 0;
}

blockquote::after {
    bottom: -30px;
    right: 0;
}

.testimonial-name {
    font-weight: 600;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--primary-dark);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
}

.testimonial-prev, .testimonial-next {
    background-color: var(--white);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    border: 2px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: var(--white);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    background-color: var(--bg-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 20px;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    padding-right: 30px;
    flex-grow: 1;
}

.faq-question span {
    position: absolute;
    right: 20px;
    transition: all 0.3s ease;
}

.faq-question i.fa-plus {
    display: block;
}

.faq-question i.fa-minus {
    display: none;
}

.faq-item.active .faq-question i.fa-plus {
    display: none;
}

.faq-item.active .faq-question i.fa-minus {
    display: block;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 10%;
    width: 200px;
    height: 200px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: var(--border-radius-circle);
    z-index: 0;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: 10%;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 152, 0, 0.05);
    border-radius: var(--border-radius-circle);
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom-left-radius: var(--border-radius-small);
}

.pricing-header {
    padding: 30px 25px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-header h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.period {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.pricing-features {
    padding: 30px 25px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features i {
    margin-right: 10px;
    font-size: 1rem;
}

.pricing-features i.fa-check {
    color: var(--primary-color);
}

.pricing-features i.fa-times {
    color: var(--text-light);
}

.pricing-footer {
    padding: 25px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.02);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/cta.jpg') center/cover fixed no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-content .btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info h2::after {
    left: 0;
    transform: none;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--text-medium);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
}

.contact-item i {
    width: 25px;
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text-dark);
}

.contact-map {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.contact-form-container {
    background-color: var(--bg-color);
    border-radius: var(--border-radius-medium);
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-small);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-circle);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 15px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
    font-family: var(--body-font);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
    padding: 0 25px;
}

.newsletter-privacy {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.newsletter-privacy a {
    color: var(--white);
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: #263238;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-info p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact i {
    width: 25px;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    padding: 20px;
    box-shadow: var(--shadow-dark);
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--shadow-medium);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card.highlight {
        transform: scale(1);
        grid-column: span 2;
    }

    .timeline-content {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-top: 70px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-number {
        left: 20px;
        transform: none;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        display: none;
    }

    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 576px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 20px;
        transition: all 0.4s ease;
        z-index: 1000;
        box-shadow: var(--shadow-dark);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card.highlight {
        grid-column: span 1;
    }

    .menu-slider {
        margin: 0 -10px 30px;
    }

    .menu-slide {
        padding: 0 10px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: var(--border-radius-small);
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: var(--border-radius-small);
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 25px 15px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .contact-form-container {
        padding: 25px 20px;
    }
}

/* Menu active state for mobile */
.main-nav.active .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.main-nav.active .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.main-nav.active .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}