/* Global Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #666666;
    --background-color: #ffffff;
    --text-color: #1a1a1a;
    --spacing-unit: 1rem;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --box-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --background-light: #f8f8f8;
    --text-dark: #1a1a1a;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
header {
    padding: 2.5rem 0;
    text-align: center;
    background-color: var(--background-color);
    box-shadow: var(--box-shadow-sm);
    position: relative;
    z-index: 10;
}

.main-logo {
    max-width: 200px;
    height: auto;
    transition: transform var(--transition-normal);
}

.main-logo:hover {
    transform: scale(1.02);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 2);
}

section {
    margin: 8rem 0;
    position: relative;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.hero-text {
    text-align: left;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.75rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.hero-image {
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.1;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Slideshows */
.slideshows-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 5rem 0;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.slideshow:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.prev:hover, .next:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.hero-content {
    margin: 3rem 0 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    text-align: left;
}

.hero-feature {
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: rgba(0, 0, 0, 0.08);
}

.hero-feature .icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background-color: var(--background-color);
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-fast);
}

.hero-feature:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-feature .icon img {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.hero-feature h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 2rem 0;
}

.about-image {
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    transition: transform var(--transition-normal);
}

.about-image:hover img {
    transform: translateY(-8px);
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-normal);
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

.cta-button-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    padding: 2.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-md);
    border-color: rgba(0, 0, 0, 0.08);
}

.icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.75rem;
    transition: transform var(--transition-fast);
}

.service-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: block;
}

.service-card:hover .icon {
    transform: scale(1.1);
}

.icon svg {
    width: 100%;
    height: 100%;
}

.service-card .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    text-align: center;
    padding: 2rem 0;
}

.gallery h2 {
    margin-bottom: 3.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    aspect-ratio: 3/4;
    box-shadow: var(--box-shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Video Showcase Section */
.video-showcase {
    text-align: center;
    padding: 7rem 2rem;
    background-color: var(--background-light);
    margin: 5rem 0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
}

.video-showcase h2 {
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.video-showcase h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--background-color);
    aspect-ratio: 3/4;
    box-shadow: var(--box-shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
    border-color: rgba(0, 0, 0, 0.08);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.max-width-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.play-icon {
    width: 70px;
    height: 70px;
    fill: white;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.video-container:hover .play-icon {
    transform: scale(1.1);
}

/* Remove play button once playing */
.video-container.playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 300px;
    }

    .play-icon {
        width: 60px;
        height: 60px;
    }

    .video-item {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .play-icon {
        width: 50px;
        height: 50px;
    }

    .hero-feature {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .video-grid {
        gap: 1.5rem;
    }

    .footer-links a {
        margin: 0 0.5rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.9rem 1.8rem;
    }

    section {
        margin: 4rem 0;
    }
}

/* Ana's Story Section */
/* Founder Story Section */
.founder-story {
    padding: 7rem 0;
    background-color: var(--background-light);
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-lg);
    margin: 4rem 0;
}

.founder-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
    padding: 0 calc(var(--spacing-unit) * 2);
}

.founder-image {
    position: relative;
    text-align: center;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-lg);
    transition: transform var(--transition-normal);
}

.founder-image:hover img {
    transform: translateY(-8px);
}

.founder-logo-container {
    margin-top: 2rem;
}

.founder-logo {
    max-width: 200px;
    height: auto;
    transition: transform var(--transition-normal);
}

.founder-logo:hover {
    transform: scale(1.1);
}

.founder-text {
    padding: 2rem 0;
}

.founder-text h2 {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    position: relative;
}

.founder-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.founder-text p {
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* For backward compatibility */
.ana-story {
    padding: 7rem 0;
    background-color: var(--background-light);
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-lg);
    margin: 4rem 0;
}

.ana-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
    padding: 0 calc(var(--spacing-unit) * 2);
}

.ana-image {
    position: relative;
    text-align: center;
}

.ana-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-lg);
    transition: transform var(--transition-normal);
}

.ana-image:hover img {
    transform: translateY(-8px);
}

.ana-logo-container {
    margin-top: 2rem;
}

.ana-logo {
    max-width: 200px;
    height: auto;
    transition: transform var(--transition-normal);
}

.ana-logo:hover {
    transform: scale(1.1);
}

.ana-text {
    padding: 2rem 0;
}

.ana-text h2 {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    position: relative;
}

.ana-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ana-text p {
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Shine Section */
.shine-section {
    text-align: center;
    padding: 4rem 3rem;
    max-width: 900px;
    margin: 3rem auto 0;
    background-color: var(--background-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.shine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.shine-text {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 12px;
    text-align: center;
}

.testimonial-card span {
    display: block;
    margin-top: 1rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: #f8f8f8;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-3px);
}

.contact-button span {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-button .icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0 4rem;
    margin-top: 8rem;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 2.5rem;
    transition: transform var(--transition-normal);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.footer-links {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: all var(--transition-normal);
    padding: 0.5rem 0;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width var(--transition-normal);
}

.footer-links a:hover {
    opacity: 0.9;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        order: 2;
        padding-right: 0;
    }

    .hero-image {
        order: 1;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-image::after {
        top: 10px;
        left: 10px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
        padding: 0 1.5rem;
    }

    .about-image {
        max-width: 90%;
        margin: 0 auto;
    }

    .about-image::after {
        top: 10px;
        right: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .slideshows-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .slideshow {
        height: 350px;
    }

    .slideshow-right {
        display: none;
    }

    .video-showcase {
        padding: 5rem 1.5rem;
        margin: 4rem 1rem;
    }

    .founder-story, .ana-story {
        padding: 4rem 0;
        margin: 3rem 0;
    }

    .founder-content, .ana-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .founder-image, .ana-image {
        order: 1;
        max-width: 90%;
        margin: 0 auto;
    }

    .founder-text, .ana-text {
        order: 2;
        padding: 1.5rem;
    }

    .shine-section {
        padding: 3rem 1.5rem;
        margin: 2rem 1rem 0;
    }

    .cta-button {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
    }

    section {
        margin: 6rem 0;
    }

    .contact-info {
        flex-direction: column;
    }

    section {
        margin: 4rem 0;
    }

    .about {
        padding: 3rem var(--spacing-unit);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ana-story {
        padding: 4rem 0;
        margin: 0;
        width: 100%;
    }

    .ana-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
        max-width: 100%;
    }

    .ana-text {
        padding: 0;
    }

    .ana-text h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .ana-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0;
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .main-logo {
        max-width: 150px;
    }

    section {
        margin: 3rem 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .slideshow {
        height: 250px;
    }

    .ana-story {
        padding: 3rem 0;
    }

    .ana-content {
        padding: 0 1.5rem;
    }

    .ana-text h2 {
        font-size: 2rem;
        padding: 0;
    }

    .ana-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
}

.map-section {
    padding: 4rem 2rem;
    background-color: var(--background-light); /* Note: --background-light is not defined, default needed */
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark); /* Note: --text-dark is not defined, default needed */
    font-family: 'Playfair Display', serif;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-section .icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

    .map-container iframe {
        height: 350px;
    }
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

#chat-icon {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 220px;
    background-color: var(--primary-color);
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#chat-icon.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.chat-icon-inner {
    display: flex;
    align-items: center;
    padding: 0 15px;
    width: 100%;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    border: 2px solid #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.chat-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

#chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    height: 500px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

#chat-container.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.chat-header {
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
}

.chat-header .chat-avatar {
    margin-right: 12px;
}

.chat-title {
    flex: 1;
}

.chat-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-title p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

#close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

#close-chat:hover {
    background: rgba(255, 255, 255, 0.3);
}

#close-chat svg {
    width: 16px;
    height: 16px;
    fill: white;
}

#chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f7f7f7;
}

.message {
    display: flex;
    margin-bottom: 15px;
    max-width: 85%;
}

.message.user {
    margin-left: auto;
    justify-content: flex-end;
}

.message .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-image: url('images/ana.jpg');
    background-size: cover;
    background-position: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.message .text {
    padding: 12px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.message.bot .text {
    background-color: #f0f0f0;
    border-top-left-radius: 4px;
    color: #333;
}

.message.user .text {
    background-color: var(--primary-color);
    border-top-right-radius: 4px;
    color: white;
}

.typing-indicator {
    display: flex;
    align-items: center;
}

.typing-indicator span {
    height: 8px;
    width: 8px;
    float: left;
    margin: 0 1px;
    background-color: #9E9EA1;
    display: block;
    border-radius: 50%;
    opacity: 0.4;
}

.typing-indicator span:nth-of-type(1) {
    animation: 1s blink infinite 0.3333s;
}

.typing-indicator span:nth-of-type(2) {
    animation: 1s blink infinite 0.6666s;
}

.typing-indicator span:nth-of-type(3) {
    animation: 1s blink infinite 0.9999s;
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}

.chat-footer {
    padding: 15px;
    border-top: 1px solid #eaeaea;
    background-color: white;
}

#chat-form {
    display: flex;
    align-items: center;
}

#chat-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s;
}

#chat-input:focus {
    border-color: var(--primary-color);
}

#send-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

#send-button:hover {
    background-color: #555;
}

#send-button svg {
    width: 18px;
    height: 18px;
}

#send-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    #chat-container {
        width: calc(100% - 30px);
        height: 70vh;
        bottom: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
    }

    #chat-icon {
        width: auto;
        max-width: 200px;
        right: 15px;
        bottom: 15px;
        padding: 8px 12px;
    }

    .chat-icon-inner {
        padding: 0 5px;
    }

    .chat-text {
        font-size: 13px;
    }

    .chat-avatar {
        width: 36px;
        height: 36px;
        min-width: 36px;
        margin-right: 8px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: #f8f8f8;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="%23333" fill-opacity="0.03"><circle cx="10" cy="10" r="1" /><circle cx="30" cy="10" r="1" /><circle cx="50" cy="10" r="1" /><circle cx="70" cy="10" r="1" /><circle cx="90" cy="10" r="1" /><circle cx="10" cy="30" r="1" /><circle cx="30" cy="30" r="1" /><circle cx="50" cy="30" r="1" /><circle cx="70" cy="30" r="1" /><circle cx="90" cy="30" r="1" /><circle cx="10" cy="50" r="1" /><circle cx="30" cy="50" r="1" /><circle cx="50" cy="50" r="1" /><circle cx="70" cy="50" r="1" /><circle cx="90" cy="50" r="1" /><circle cx="10" cy="70" r="1" /><circle cx="30" cy="70" r="1" /><circle cx="50" cy="70" r="1" /><circle cx="70" cy="70" r="1" /><circle cx="90" cy="70" r="1" /><circle cx="10" cy="90" r="1" /><circle cx="30" cy="90" r="1" /><circle cx="50" cy="90" r="1" /><circle cx="70" cy="90" r="1" /><circle cx="90" cy="90" r="1" /></g></svg>');
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #6d5c5c;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.pricing-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pricing-category {
    padding: 0 1rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #6d5c5c;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.4;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.price-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #6d5c5c;
    font-style: italic;
    text-align: left;
    padding-right: 10px;
    flex: 1;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #6d5c5c;
    text-align: right;
    min-width: 60px;
}

.main-price {
    font-size: 1.4rem;
    margin: 0 auto;
}

.technique-item {
    margin-bottom: 0.8rem;
    text-align: left;
}

.technique {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #6d5c5c;
    line-height: 1.4;
    margin: 0;
}

.pricing-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.divider-line {
    height: 1px;
    flex-grow: 1;
    background-color: #ddd;
}

.divider-icon {
    padding: 0 1rem;
    position: relative;
    top: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-title {
        font-size: 2.8rem;
    }

    .pricing-column:first-child {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 2.2rem;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .price-description, .technique {
        font-size: 0.9rem;
    }

    .price-value {
        font-size: 1.1rem;
    }

    .pricing-section {
        padding: 4rem 0;
    }
}

/* Language Switcher Styles */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.language-switcher {
    text-align: center;
    margin-top: 10px;
}

.language-title {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.flag-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.flag-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.6);
    border: 2px solid transparent;
}

.flag-icon:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.flag-icon.active {
    filter: grayscale(0%) opacity(1);
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }

    .flag-icon {
        width: 25px;
        height: 25px;
    }

    .language-title {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .flag-container {
        gap: 8px;
    }

    .flag-icon {
        width: 22px;
        height: 22px;
    }
}