/* 
* LunaVionica Stylesheet
* Version: 1.0
*/

/* ===== Base Styles ===== */
:root {
    --primary-color: #00796B;
    --secondary-color: #CDDC39;
    --dark-color: #004D40;
    --light-color: #E0F2F1;
    --text-color: #333333;
    --bg-color: #FFFFFF;
    --gray-color: #F5F5F5;
    --dark-gray: #757575;
    --shadow: 0 4px 12px rgba(0, 121, 107, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    width: 180px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.preloader-icons {
    display: flex;
    gap: 20px;
}

.preloader-icons span {
    font-size: 24px;
    animation: bounce 1.5s infinite alternate;
}

.preloader-icons span:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ===== Header ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 100;
    transition: var(--transition);
}

#header.scrolled {
    background: var(--bg-color);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

#header.scrolled .logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    color: var(--bg-color);
    font-weight: 600;
    padding: 5px 10px;
    position: relative;
}

#header.scrolled .main-nav a {
    color: var(--text-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--secondary-color);
    color: var(--dark-color) !important;
    padding: 8px 15px !important;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--dark-color);
    color: var(--bg-color) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--bg-color);
    transition: var(--transition);
}

#header.scrolled .mobile-menu-toggle span {
    background: var(--text-color);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-color);
    z-index: 99;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.mobile-menu a:hover {
    border-left-color: var(--secondary-color);
    color: var(--primary-color);
    background: var(--light-color);
}

/* ===== Hero Section ===== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--bg-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 77, 64, 0.9), rgba(0, 121, 107, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-tagline {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-tagline span {
    position: relative;
}

.hero-tagline span::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-left: 10px;
    vertical-align: middle;
}

.hero-tagline span:last-child::after {
    display: none;
}

.accent {
    color: var(--secondary-color);
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(205, 220, 57, 0.4);
}

.cta-button:hover {
    background: var(--bg-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(205, 220, 57, 0.5);
}

/* ===== Why Section ===== */
.why-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 121, 107, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--bg-color);
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: rgba(0, 121, 107, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(205, 220, 57, 0.1);
    border-radius: 50%;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: rgba(0, 121, 107, 0.1);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.service-cta {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.service-cta::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.service-cta:hover::after {
    margin-left: 10px;
}

/* ===== Process Section ===== */
.process-section {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
    width: 4px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(205, 220, 57, 0.3);
}

.timeline-content {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 24px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid var(--light-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* ===== Results Section ===== */
.results-section {
    padding: 100px 0;
    background: linear-gradient(to right, var(--primary-color), var(--dark-color));
    color: var(--bg-color);
}

.results-section .section-title {
    color: var(--bg-color);
}

.results-section .section-title::after {
    background: var(--secondary-color);
}

.results-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.case-image {
    height: 250px;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    padding: 25px;
}

.case-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.stat-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
}

/* ===== Reviews Section ===== */
.reviews-section {
    padding: 100px 0;
    background: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.reviews-section::before,
.reviews-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}

.reviews-section::before {
    background: rgba(0, 121, 107, 0.05);
    top: -150px;
    left: -150px;
}

.reviews-section::after {
    background: rgba(205, 220, 57, 0.05);
    bottom: -150px;
    right: -150px;
}

.reviews-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.review-card {
    flex: 1 0 100%;
    background: var(--bg-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-content {
    position: relative;
    margin-bottom: 25px;
    padding: 15px 0;
}

.review-content::before,
.review-content::after {
    content: '"';
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    color: rgba(0, 121, 107, 0.1);
    position: absolute;
    line-height: 1;
}

.review-content::before {
    top: 0;
    left: 0;
}

.review-content::after {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

.review-content p {
    font-style: italic;
    z-index: 1;
    position: relative;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.reviewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.reviewer-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

.reviews-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.prev-review,
.next-review {
    background: var(--primary-color);
    color: var(--bg-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.prev-review:hover,
.next-review:hover {
    background: var(--dark-color);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background: var(--light-color);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 121, 107, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-color);
}

.faq-icon {
    transform: rotate(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    background: var(--bg-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0f2f1 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(205, 220, 57, 0.1), transparent);
    top: -200px;
    right: -200px;
}

.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.pricing-plan {
    background: var(--bg-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: var(--transition);
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-plan.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary-color);
}

.pricing-plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
}

.plan-header {
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 30px 20px;
    text-align: center;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.currency {
    font-size: 1.2rem;
    vertical-align: super;
    margin-left: 5px;
}

.period {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.plan-features {
    padding: 30px;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.fa-check {
    color: var(--primary-color);
}

.fa-times {
    color: var(--dark-gray);
}

.not-included {
    color: var(--dark-gray);
    text-decoration: line-through;
    opacity: 0.7;
}

.plan-cta {
    display: block;
    background: var(--primary-color);
    color: var(--bg-color);
    text-align: center;
    padding: 15px;
    margin: 0 30px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.plan-cta:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

/* ===== Consultation Section ===== */
.consultation-section {
    padding: 100px 0;
    background: url('images/consultation-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--bg-color);
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 77, 64, 0.9);
}

.consultation-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.consultation-section .section-title {
    color: var(--bg-color);
}

.consultation-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.consultation-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

.consultation-form {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox {
    display: flex;
    align-items: flex-start;
}

.checkbox input {
    width: auto;
    margin-top: 5px;
    margin-right: 10px;
}

.checkbox label {
    font-size: 0.9rem;
    font-weight: 400;
}

.submit-button {
    background: var(--primary-color);
    color: var(--bg-color);
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--dark-color);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    background: var(--primary-color);
    color: var(--bg-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-color);
    color: var(--bg-color);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-top h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
}

.footer-nav li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-nav a,
.footer-legal a {
    color: var(--bg-color);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-nav a:hover,
.footer-legal a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.newsletter-form .form-group {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--bg-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline-content::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-tagline span::after {
        display: none;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .reviews-nav {
        position: relative;
        transform: none;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    
    .pricing-plan.featured {
        transform: none;
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        margin-bottom: 30px;
    }
    
    .timeline-number {
        position: relative;
        margin-bottom: 15px;
    }
    
    .consultation-form {
        padding: 20px;
    }
}