/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Beige & Lila Color Palette */
    --beige-light: #F5F1EB;
    --beige-medium: #E8DFD4;
    --beige-dark: #D4C4B0;
    --lila-light: #E8D5E8;
    --lila-medium: #D4A5D4;
    --lila-dark: #B87BB8;
    --lila-deep: #9A5A9A;
    --text-dark: #4A4A4A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --gold: #C9A961;
    --gradient-1: linear-gradient(135deg, #F5F1EB 0%, #E8D5E8 100%);
    --gradient-2: linear-gradient(135deg, #E8DFD4 0%, #D4A5D4 100%);
    --gradient-3: linear-gradient(135deg, #F5F1EB 0%, #D4C4B0 50%, #E8D5E8 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-2);
    box-shadow: 0 4px 15px rgba(184, 123, 184, 0.3);
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--lila-deep);
}

.logo-img {
    max-height: 85px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--lila-deep);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lila-deep);
    transition: width 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--lila-deep);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px;
    border-bottom: 1px solid var(--beige-light);
    transition: all 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--lila-deep);
    padding-left: 15px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-3);
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.flower-decoration {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 213, 232, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-dark);
}

.hero-welcome {
    font-family: 'Dancing Script', cursive;
    font-size: 72px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.hero-languages {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-languages-label {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-languages-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.language-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--lila-light);
    color: var(--lila-deep);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--lila-medium);
    transition: all 0.3s ease;
}

.language-badge:hover {
    background: var(--lila-medium);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 123, 184, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--lila-deep);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(184, 123, 184, 0.3);
    transition: all 0.3s;
    border: 2px solid var(--lila-light);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(184, 123, 184, 0.4);
    background: var(--lila-light);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--lila-deep);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(184, 123, 184, 0.3);
    transition: all 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(184, 123, 184, 0.4);
    background: var(--lila-dark);
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--lila-deep);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid var(--lila-deep);
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--lila-deep);
    color: var(--white);
    transform: translateY(-3px);
}

/* Home Links Section */
.home-links {
    padding: 60px 0;
    background: var(--beige-light);
}

.home-links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.home-link-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: block;
}

.home-link-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(184, 123, 184, 0.2);
    border-color: var(--lila-light);
}

.home-link-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--lila-deep);
    margin-bottom: 12px;
    text-align: left;
}

.home-link-box p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Welcome Section */
.welcome-section {
    padding: 60px 20px;
    background: var(--white);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.welcome-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--lila-deep);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
}

.welcome-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--lila-deep);
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
}

.welcome-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 0;
}

.welcome-languages {
    font-size: 18px;
    color: var(--lila-deep);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.6;
    padding: 0 20px;
}

.welcome-description {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 0;
    text-align: left;
    padding: 0;
    width: 100%;
}

.welcome-description h2 {
    margin-bottom: 20px;
    margin-top: 0;
}

.welcome-description h3 {
    margin-bottom: 30px;
    margin-top: 0;
}

.welcome-description p {
    margin-bottom: 20px;
    text-align: left;
    font-size: 18px;
    line-height: 1.9;
    max-width: 100%;
    word-wrap: break-word;
}

.welcome-description p:last-of-type:not(.welcome-note) {
    margin-bottom: 25px;
}

.welcome-description a {
    color: var(--lila-deep);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.welcome-description a:hover {
    color: var(--lila-dark);
}

.welcome-contact-info {
    font-size: 16px;
    color: var(--text-dark);
    margin: 20px 0;
    text-align: center;
    padding: 0 20px;
    line-height: 1.6;
}

.welcome-contact-info a {
    color: var(--lila-deep);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.welcome-contact-info a:hover {
    color: var(--lila-dark);
}

.welcome-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 0;
    text-align: left;
    padding: 0;
    line-height: 1.6;
}

/* Content Sections */
.content-section {
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Section Header with Icon */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.section-icon {
    font-size: 36px;
    line-height: 1;
    flex-shrink: 0;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.benefits-list li {
    padding: 15px 0 15px 50px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    border-bottom: 1px solid var(--beige-medium);
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    position: absolute;
    left: 0;
    font-size: 24px;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

/* Process List */
.process-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    counter-reset: step-counter;
}

.process-list li {
    padding: 15px 0 15px 70px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    border-bottom: 1px solid var(--beige-medium);
    counter-increment: step-counter;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.process-list li:last-child {
    border-bottom: none;
}

.process-list li:before {
    content: counter(step-counter) ".";
    position: absolute;
    left: 0;
    top: 20px;
    color: var(--lila-deep);
    font-weight: bold;
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.process-icon {
    position: absolute;
    left: 35px;
    top: 20px;
    font-size: 24px;
    width: 35px;
    text-align: center;
    flex-shrink: 0;
}

.process-content {
    flex: 1;
}

.process-list li strong {
    color: var(--lila-deep);
    font-weight: 600;
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.topic-item {
    padding: 15px 20px;
    background: var(--beige-light);
    border-left: 4px solid var(--lila-medium);
    border-radius: 4px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.topic-item:hover {
    background: var(--lila-light);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(184, 123, 184, 0.15);
}

.topic-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.topic-text {
    flex: 1;
    line-height: 1.5;
}

/* Pricing Items */
.pricing-item {
    background: var(--white);
    border: 2px solid var(--beige-medium);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    border-color: var(--lila-medium);
    box-shadow: 0 4px 15px rgba(184, 123, 184, 0.1);
}

.pricing-header-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pricing-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--lila-deep);
    margin: 0;
}

.pricing-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-details li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.pricing-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--lila-deep);
    font-weight: bold;
    font-size: 20px;
}

/* Cancellation List */
.cancellation-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.cancellation-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    border-bottom: 1px solid var(--beige-medium);
}

.cancellation-list li:last-child {
    border-bottom: none;
}

.cancellation-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--lila-deep);
    font-size: 18px;
}

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.about-text {
    width: 100%;
    text-align: left;
    direction: ltr;
    writing-mode: horizontal-tb;
}

.about-intro,
.about-education,
.about-experience,
.about-intercultural {
    margin-bottom: 40px;
    width: 100%;
    text-align: left;
}

.about-intro p,
.about-education p,
.about-experience p,
.about-intercultural p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
    direction: ltr;
    writing-mode: horizontal-tb;
}

.about-intro p:last-child,
.about-education p:last-child,
.about-experience p:last-child,
.about-intercultural p:last-child {
    margin-bottom: 0;
}

.welcome-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Quick Links */
.quick-links {
    padding: 80px 0;
    background: var(--beige-light);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.quick-link-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(184, 123, 184, 0.2);
    border-color: var(--lila-light);
}

.quick-link-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.quick-link-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--lila-deep);
    margin-bottom: 15px;
}

.quick-link-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-3);
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

/* Section Styles */
.section {
    padding: 50px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-page {
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    display: block;
}

.about-image {
    display: none;
}

.image-placeholder {
    display: none;
}

.about-text {
    width: 100%;
    text-align: left;
    direction: ltr;
    writing-mode: horizontal-tb;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--lila-deep);
    margin-bottom: 20px;
    text-align: left;
}

.about-text p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.9;
    text-align: left;
    direction: ltr;
    writing-mode: horizontal-tb;
}

.credentials-section {
    margin-top: 80px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.credential-card {
    background: var(--beige-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--beige-medium);
    transition: all 0.3s;
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 123, 184, 0.2);
    border-color: var(--lila-medium);
}

.credential-card .credential-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.credential-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--lila-deep);
    margin-bottom: 10px;
}

.credential-card p {
    color: var(--text-light);
    font-size: 14px;
}

.approach-section {
    margin-top: 80px;
}

.approach-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.approach-item {
    background: var(--beige-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--lila-medium);
}

.approach-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--lila-deep);
    margin-bottom: 15px;
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Page */
.services-page {
    background: var(--beige-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(184, 123, 184, 0.2);
    border-color: var(--lila-light);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--lila-deep);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 14px;
    border-bottom: 1px solid var(--beige-light);
}

.service-features li:last-child {
    border-bottom: none;
}

.therapy-process {
    margin-top: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 20px;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--lila-deep);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Pricing Page */
.pricing-page {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--beige-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid var(--beige-medium);
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(184, 123, 184, 0.2);
}

.pricing-card.featured {
    background: var(--gradient-2);
    border-color: var(--lila-medium);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--lila-deep);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--lila-deep);
}

.price-period {
    font-size: 18px;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--beige-medium);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    display: inline-block;
    padding: 12px 35px;
    background: var(--lila-deep);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-pricing:hover {
    background: var(--lila-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(184, 123, 184, 0.3);
}

.package-pricing {
    margin-top: 80px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: var(--beige-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid var(--beige-medium);
    transition: all 0.3s;
}

.package-card.featured-package {
    background: var(--gradient-2);
    border-color: var(--lila-medium);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(184, 123, 184, 0.2);
}

.package-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.package-price {
    margin-bottom: 15px;
}

.package-original {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 10px;
}

.package-discount {
    font-size: 36px;
    font-weight: 700;
    color: var(--lila-deep);
}

.package-savings {
    color: var(--lila-deep);
    font-weight: 600;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-features li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--beige-medium);
}

.package-features li:last-child {
    border-bottom: none;
}

.btn-package {
    display: inline-block;
    padding: 12px 35px;
    background: var(--lila-deep);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-package:hover {
    background: var(--lila-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(184, 123, 184, 0.3);
}

.payment-info {
    margin-top: 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--beige-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--beige-medium);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 123, 184, 0.2);
    border-color: var(--lila-medium);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--lila-deep);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 14px;
}

.pricing-note {
    background: var(--beige-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--lila-medium);
    margin-top: 50px;
}

.pricing-note p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

/* Contact Page */
.contact-page {
    background: var(--beige-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--lila-deep);
    margin-bottom: 20px;
}

.contact-intro {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--lila-deep);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-link {
    color: var(--lila-deep);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--lila-dark);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--lila-deep);
    margin-bottom: 10px;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.required {
    color: var(--lila-deep);
}

.form-group input,
.form-group textarea,
.form-select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--beige-medium);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
    background: var(--beige-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--lila-medium);
    background: var(--white);
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 20px;
    background: var(--beige-light);
    border-radius: 10px;
    border: 2px solid var(--beige-medium);
    transition: all 0.3s;
    flex: 1;
    min-width: 150px;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

.radio-label input[type="radio"]:checked + span {
    color: var(--lila-deep);
    font-weight: 600;
}

.radio-label:has(input[type="radio"]:checked) {
    background: var(--lila-light);
    border-color: var(--lila-medium);
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-light);
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--lila-deep);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background: var(--lila-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(184, 123, 184, 0.3);
}

.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-placeholder {
    height: 400px;
    background: var(--beige-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px dashed var(--beige-medium);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-2);
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-img {
        max-height: 60px !important;
    }

    .header {
        padding: 10px 0;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-welcome {
        font-size: 48px;
    }

    .hero-name {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-content {
        padding: 0;
    }

    .about-page .container {
        padding: 0 20px;
    }

    .about-text {
        width: 100%;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-icon {
        font-size: 32px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .pricing-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .page-title {
        font-size: 36px;
    }

    .welcome-title {
        font-size: 32px;
    }

    .welcome-buttons {
        flex-direction: column;
    }

    .welcome-buttons a {
        width: 100%;
        text-align: center;
    }

    .welcome-languages {
        font-size: 16px;
        padding: 0 15px;
    }

    .welcome-description {
        font-size: 16px;
        padding: 0;
        text-align: left;
    }

    .welcome-contact-info {
        font-size: 15px;
        padding: 0;
    }

    .welcome-note {
        font-size: 13px;
        padding: 0;
    }

    .welcome-intro {
        padding: 0;
    }

    .welcome-content {
        padding: 0;
    }

    .welcome-section .container {
        padding: 0 20px;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-label {
        width: 100%;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 0 15px;
    }

    .pricing-item {
        padding: 20px;
    }

    .pricing-header-icon {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pricing-icon {
        font-size: 28px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-icon {
        font-size: 32px;
    }

    .process-list li {
        padding-left: 60px;
    }

    .process-icon {
        left: 25px;
        font-size: 20px;
    }

    .benefits-list li {
        padding-left: 45px;
    }

    .benefit-icon {
        font-size: 20px;
        width: 35px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .logo-img {
        max-height: 50px !important;
    }

    .header {
        padding: 8px 0;
    }

    .header .container {
        padding: 0 15px;
    }

    .welcome-languages {
        font-size: 15px;
        padding: 0;
    }

    .welcome-section {
        padding: 30px 10px;
        min-height: auto;
    }

    .welcome-title {
        font-size: 20px;
        margin-bottom: 12px;
        padding: 0 5px;
    }

    .welcome-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .welcome-description {
        font-size: 15px;
        padding: 0 5px;
        line-height: 1.8;
    }

    .welcome-description p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .welcome-contact-info {
        font-size: 14px;
        padding: 0;
    }

    .welcome-note {
        font-size: 12px;
        padding: 0;
    }

    .hero-welcome {
        font-size: 48px !important;
    }

    .hero-name {
        font-size: 32px !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
    }

    .welcome-content {
        padding: 0;
    }

    .welcome-intro {
        padding: 0;
    }

    .welcome-section .container {
        padding: 0 15px;
    }

    .about-content {
        padding: 0;
    }

    .about-page .container {
        padding: 0 15px;
    }

    .section.about-page .container {
        padding: 0 15px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
