/* Modern Minimalist Design */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:opsz,wght@8..144,300;8..144,400;8..144,500;8..144,600;8..144,700&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #f5f5f5;
    --accent-dark: #e0e0e0;
    --accent-light: #fafafa;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --background: #000000;
    --surface: #1a1a1a;
    --border: #333333;
    --shadow: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    --gradient-secondary: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

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

body {
    font-family: 'Roboto Serif', serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin: 0;
    padding: 0;
    width: 100%;
}

body.loaded {
    opacity: 1;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

header.sticky {
    box-shadow: 0 4px 20px var(--shadow);
}

header .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FADADD;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
}

nav ul li a {
    color: #FADADD;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Currency Switcher */
.currency-item {
    margin-left: 1rem;
}

.currency-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    justify-content: space-between;
}

.currency-toggle:hover {
    background: var(--gradient-accent);
    border-color: var(--accent-color);
}

.currency-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.currency-toggle.active i {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow);
    min-width: 120px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.currency-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    background: transparent;
    border: none;
    color: #000000;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    width: 100%;
    text-align: left;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.currency-option:first-child {
    border-radius: 12px 12px 0 0;
}

.currency-option:last-child {
    border-radius: 0 0 12px 12px;
}

.currency-option:hover {
    background: rgba(250, 218, 221, 0.2);
}

.currency-option.selected {
    background: rgba(250, 218, 221, 0.3);
    color: #000000;
    font-weight: 600;
    position: relative;
}

.currency-option.selected::after {
    content: '✓';
    position: absolute;
    right: 1rem;
    color: #000000;
    font-weight: bold;
}

/* Currency Symbol Styling */
.currency-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

/* Hero Section */
#hero {
    min-height: 66.67vh; /* 2/3 of viewport height */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero.png') calc(50% - 10px) center/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding: 80px 0 4rem 0;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    background: transparent;
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: none;
    box-shadow: none;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #000000;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, rgba(250, 218, 221, 0.8) 0%, rgba(250, 218, 221, 0.6) 100%);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(250, 218, 221, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(250, 218, 221, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(250, 218, 221, 0.5);
    background: linear-gradient(135deg, rgba(250, 218, 221, 1) 0%, rgba(250, 218, 221, 0.8) 100%);
    color: #000000;
}

/* Quote Section */
#quote {
    background: var(--surface);
    padding: 4rem 2rem;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    width: 100%;
    box-sizing: border-box;
    max-width: none !important;
    margin: 0 !important;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.quote-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: #FADADD;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-content h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.quote-content blockquote {
    background: #FADADD;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(250, 218, 221, 0.3);
    backdrop-filter: blur(10px);
}

.quote-content blockquote p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #333333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-content blockquote p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #000000;
    font-style: normal;
}

/* Sections */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: #FADADD;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* About Section */
#about {
    background: var(--surface);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    filter: brightness(1.05) contrast(1.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(250, 218, 221, 0.1), rgba(250, 218, 221, 0.05));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image:hover img {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.social-links-about {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(250, 218, 221, 0.8) 0%, rgba(250, 218, 221, 0.6) 100%);
    border-radius: 25px;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(250, 218, 221, 0.5);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 218, 221, 0.4);
    background: linear-gradient(135deg, rgba(250, 218, 221, 1) 0%, rgba(250, 218, 221, 0.8) 100%);
    color: #000000;
}

.social-link i {
    font-size: 1.2rem;
}

/* Expertise Section */
#expertise {
    background: var(--surface);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-item {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.expertise-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.expertise-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FADADD;
    margin-bottom: 1rem;
}

.expertise-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-bottom: 4rem;
}

.expertise-price {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    background: linear-gradient(135deg, rgba(250, 218, 221, 0.8) 0%, rgba(250, 218, 221, 0.6) 100%);
    padding: 1rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(250, 218, 221, 0.5);
    box-shadow: 0 2px 8px rgba(250, 218, 221, 0.3);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    margin: 0;
    min-height: 3rem;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-item:hover::before {
    transform: scaleX(1);
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow);
}


/* Events Section */
#events {
    background: var(--surface);
}

#calendly-events {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    margin-top: 3rem;
    min-height: 600px;
}

/* Events Carousel */
.events-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

/* Mobile carousel improvements */
@media (max-width: 768px) {
    .events-carousel {
        overflow: visible; /* Allow partial cards to be visible */
    }
    
    .carousel-container {
        padding: 0 20px; /* Add padding to show partial next card */
    }
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    padding: 1rem 0;
    /* Disable any automatic animations */
    animation: none !important;
}

.event-card {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 2rem;
    min-width: 350px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: #ffffff;
    text-align: center;
    align-self: center;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.event-details {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FADADD;
    margin-bottom: 1rem;
}

.event-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.event-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.event-duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.event-price {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Fallback for old event-time class */
.event-time {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.book-button {
    background: linear-gradient(135deg, rgba(250, 218, 221, 0.8) 0%, rgba(250, 218, 221, 0.6) 100%);
    color: #000000;
    border: 1px solid rgba(250, 218, 221, 0.5);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    margin-top: 0.5rem;
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 218, 221, 0.4);
    background: linear-gradient(135deg, rgba(250, 218, 221, 1) 0%, rgba(250, 218, 221, 0.8) 100%);
    color: #000000;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

.carousel-btn {
    background: linear-gradient(135deg, rgba(250, 218, 221, 0.8) 0%, rgba(250, 218, 221, 0.6) 100%);
    color: #000000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.carousel-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(250, 218, 221, 0.6);
    background: linear-gradient(135deg, rgba(250, 218, 221, 1) 0%, rgba(250, 218, 221, 0.8) 100%);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Testimonials Section */
#testimonials {
    background: var(--surface);
}

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

.testimonial {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: serif;
    opacity: 0.3;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow);
}

.testimonial-icon {
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
}

.testimonial-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
}

/* Footer */
footer {
    background: var(--surface);
    color: var(--text-primary);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border);
}

.footer-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-links i {
    font-size: 1.2rem;
}

/* Footer Social Icons */
.social-links-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-icon-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(250, 218, 221, 0.8) 0%, rgba(250, 218, 221, 0.6) 100%);
    border-radius: 50%;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(250, 218, 221, 0.5);
    box-shadow: 0 4px 15px rgba(250, 218, 221, 0.3);
}

.social-icon-footer:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(135deg, rgba(250, 218, 221, 1) 0%, rgba(250, 218, 221, 0.8) 100%);
    box-shadow: 0 8px 25px rgba(250, 218, 221, 0.5);
    color: #000000;
}

.social-icon-footer i {
    font-size: 1.3rem;
}

/* Contact Link in Expertise */
.contact-link {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #000000;
    text-decoration: underline;
    transform: scale(1.05);
}

/* Mobile Menu */
.burger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FADADD;
    transition: color 0.3s ease;
}

.burger-menu:hover {
    color: var(--accent-color);
}

.burger-menu.active {
    color: var(--accent-color);
}

/* Mobile currency switcher - hidden on desktop */
.mobile-currency-switcher {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem;
        max-width: none;
        margin: 0;
    }
    
    /* Mobile currency switcher */
    .mobile-currency-switcher {
        display: block;
        margin-right: 0.5rem;
    }
    
    .mobile-currency-btn {
        background: linear-gradient(135deg, rgba(250, 218, 221, 0.8) 0%, rgba(250, 218, 221, 0.6) 100%);
        border: 1px solid rgba(250, 218, 221, 0.5);
        color: #ffffff;
        padding: 0.5rem;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(250, 218, 221, 0.3);
    }
    
    .mobile-currency-btn:hover {
        background: linear-gradient(135deg, rgba(250, 218, 221, 1) 0%, rgba(250, 218, 221, 0.8) 100%);
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(250, 218, 221, 0.5);
    }
    
    .mobile-currency-btn .currency-symbol {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
        border-radius: 50%;
        font-size: 0.7rem;
        font-weight: bold;
        font-family: Arial, sans-serif;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .mobile-currency-btn[data-currency="EUR"] .currency-symbol {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
        font-size: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .mobile-currency-btn[data-currency="EUR"] .currency-symbol::before {
        content: '€';
        font-family: Arial, sans-serif;
        font-weight: bold;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    nav.active {
        display: block;
        transform: translateY(0);
        opacity: 1;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }

    nav ul li a {
        display: block;
        padding: 0.5rem 0;
    }
    
    .currency-item {
        margin-left: 0;
        margin-top: 1rem;
        align-self: center;
    }
    
    .currency-switcher {
        justify-content: center;
    }
    
    .currency-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .currency-dropdown.active {
        transform: translateX(-50%) translateY(0);
    }

    .burger-menu {
        display: block;
    }

    /* Hero responsive */
    #hero {
        height: 49vh; /* 30% smaller than 70vh */
        min-height: 280px; /* 30% smaller than 400px */
    }
    
    .hero-text {
        padding: 2rem;
        margin: 0 1rem;
        background: transparent;
    }
    
    .quote-content blockquote {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-image img {
        max-width: 300px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-text p {
        padding-left: 0;
    }
    
    .social-links-about {
        order: 3; /* Ensure social links come after text */
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        grid-column: 1; /* Take only one column */
    }

    section {
        padding: 4rem 1rem;
    }

    .expertise-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links-footer {
        gap: 1rem;
    }
    
    .social-icon-footer {
        width: 45px;
        height: 45px;
    }
    
    .social-icon-footer i {
        font-size: 1.1rem;
    }

    #calendly-events {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .carousel-container {
        gap: 1rem;
        padding: 0 1rem; /* Add padding to show partial next card */
    }
    
    .event-card {
        min-width: 280px; /* Slightly smaller to fit better */
        flex: 0 0 280px; /* Fixed width for consistent sizing */
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .event-details h3 {
        font-size: 1.2rem;
    }
    
    .event-details p {
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

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

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

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Smooth transitions for all interactive elements */
a, button, .price-item, .expertise-item, .testimonial {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
a:focus, button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Moon Guide Section */
#moon-guide {
    background: var(--gradient-primary);
    padding: 4rem 0;
    margin: 4rem 0;
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
}

.guide-content {
    width: 100%;
}

.guide-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #FADADD;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.guide-content p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.guide-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.feature i {
    font-size: 1.2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.guide-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.guide-price .price {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
}

.guide-price .original-price {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

.guide-price .discount {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.guide-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--accent-color);
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.guide-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.guide-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.moon-illustration {
    width: clamp(150px, 20vw, 200px);
    height: clamp(150px, 20vw, 200px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.moon-illustration i {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    animation: moonGlow 3s ease-in-out infinite alternate;
}

@keyframes moonGlow {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Responsive Design for Moon Guide */
@media (max-width: 768px) {
    .guide-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .guide-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .guide-price {
        justify-content: center;
    }
}

/* Blog Section */
#blog {
    background: white;
    padding: 4rem 2rem;
}

#blog h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FADADD;
    margin-bottom: 3rem;
    position: relative;
}

#blog h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
}

.blog-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image i {
    font-size: 3rem;
    color: white;
    z-index: 2;
    position: relative;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FADADD;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-date {
    font-weight: 500;
}

.blog-category {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-post {
        margin: 0 1rem;
    }
}