/* CSS Variables inspired by the geisha.png color scheme */
:root {
    --primary-navy: #2C3E50;
    --primary-gold: #D4A574;
    --accent-gold: #F4E4BC;
    --dark-navy: #1A252F;
    --light-navy: #34495E;
    --cream: #FAF7F0;
    --warm-white: #FEFEFE;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --border-light: #E8E8E8;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Noto Sans', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-white);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.8s ease;
}

body.loaded {
    opacity: 1;
}

/* Remove the problematic fade-in animation for company section */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    gap: 5px;
    background: rgba(44, 62, 80, 0.9);
    padding: 8px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.lang-btn:hover {
    background: rgba(212, 165, 116, 0.2);
    color: var(--primary-gold);
}

.lang-btn.active {
    background: var(--primary-gold);
    color: var(--primary-navy);
    font-weight: 600;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    /* Transition will be set dynamically via JavaScript */
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7) 0%, rgba(26, 37, 47, 0.8) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--warm-white);
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-content::before {
    content: '';
    width: 160px;
    height: 160px;
    background-image: url('../images/logo.png');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin-bottom: 40px;
    border: 5px solid var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent-gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

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

.nav-dot:hover,
.nav-dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.title-decoration {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* Company Section */
.company-section {
    padding: var(--section-padding);
    background: var(--warm-white);
    position: relative;
    z-index: 2;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.company-subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-weight: 500;
}

.company-text .company-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
}

.company-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-navy);
    flex-shrink: 0;
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.company-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.company-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.15);
}

.company-image:hover img {
    transform: scale(1.05);
}

/* Nagoya Section */
.nagoya-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.nagoya-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nagoya-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.nagoya-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.15);
}

.nagoya-image:hover img {
    transform: scale(1.05);
}

.nagoya-subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-weight: 500;
}

.nagoya-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.nagoya-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.highlight-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Tours Section */
.tours-section {
    padding: var(--section-padding);
    background: var(--warm-white);
}

/* Featured Tours Section */
.featured-tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.featured-tour-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.featured-tour-card-link:hover {
    transform: translateY(-8px);
}

.featured-tour-card {
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.12);
    transition: all 0.4s ease;
    border: 2px solid var(--primary-gold);
    position: relative;
}


.featured-tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(44, 62, 80, 0.2);
}

.featured-tour-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.featured-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-tour-card:hover .featured-tour-image img {
    transform: scale(1.08);
}

.featured-tour-content {
    padding: 35px;
    position: relative;
}

.featured-tour-title {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-navy);
    font-weight: 600;
}

.featured-tour-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.featured-tour-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-navy);
    color: var(--warm-white);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.featured-tour-link:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateX(5px);
}

.featured-tour-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.featured-tour-link:hover::after {
    transform: translateX(3px);
}

/* Regular Tours Section */
.regular-tours-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--border-light);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.tour-card-link:hover {
    transform: translateY(-5px);
}

.tour-card {
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(44, 62, 80, 0.15);
}

.tour-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-content {
    padding: 30px;
}

.tour-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-feature-settings: "liga" 0; /* Disable ligatures for better & visibility */
}

.ampersand {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-weight: 600;
    font-feature-settings: "liga" off;
}

.tour-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.tour-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.tour-link:hover {
    color: var(--dark-navy);
    transform: translateX(5px);
}

.tour-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.tour-link:hover::after {
    transform: translateX(3px);
}

/* Influencer Section */
.influencer-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.influencer-single {
    max-width: 1000px;
    margin: 0 auto;
}

.influencer-card-large {
    background: var(--warm-white);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.1);
    border: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.influencer-image-large {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--primary-gold);
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.15);
}

.influencer-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.influencer-content-large {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.influencer-name-large {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.influencer-title-large {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.influencer-description-large {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    flex: 1;
}

.influencer-description-large p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.influencer-description-large p:last-child {
    margin-bottom: 0;
}

.social-links-large {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links-large .social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    padding: 10px 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links-large .social-link:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

.book-icon svg {
    color: #FF9500;
}

.youtube-icon svg {
    color: #FF0000;
}

.instagram-icon svg {
    color: #E4405F;
}

.facebook-icon svg {
    color: #1877F2;
}

.twitch-icon svg {
    color: #9146FF;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    color: var(--primary-gold);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--primary-gold);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--warm-white);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--warm-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-brand-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.footer-brand-text p {
    color: var(--accent-gold);
    font-style: italic;
}

.footer-social-inline {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-self: end;
}

.follow-text {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-social .social-link {
    color: var(--warm-white);
    border-color: var(--light-navy);
}

.footer-social .social-link:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-navy);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-navy);
    color: var(--text-light);
    font-size: 0.9rem;
}

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

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .language-switcher {
        top: 20px;
        right: 20px;
        padding: 6px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .slide-content::before {
        width: 120px;
        height: 120px;
        margin-bottom: 30px;
        border-width: 4px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .company-content,
    .nagoya-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .company-image,
    .nagoya-image {
        order: -1;
    }
    
    .company-image img,
    .nagoya-image img {
        height: 300px;
    }
    
    /* Featured Tours Mobile */
    .featured-tours-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .featured-tour-card {
        border-radius: 20px;
    }
    
    .featured-tour-image {
        height: 250px;
    }
    
    .featured-tour-content {
        padding: 25px;
    }
    
    .featured-tour-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .featured-tour-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .featured-tour-link {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .regular-tours-section {
        margin-top: 60px;
        padding-top: 50px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .influencer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social-inline {
        justify-self: center;
        margin-top: 20px;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-logo img {
        width: 60px;
        height: 60px;
    }
    
    /* Influencer section mobile styles */
    .influencer-card-large {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
        text-align: center;
    }
    
    .influencer-image-large {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .influencer-name-large {
        font-size: 1.8rem;
    }
    
    .social-links-large {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tour-content,
    .influencer-card {
        padding: 20px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Topics Section Styles */
.topics-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    position: relative;
    z-index: 2;
    margin-top: 0;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(44, 62, 80, 0.1);
    transition: margin-top 0.3s ease;
}

.topics-content {
    max-width: 1000px;
    margin: 0 auto;
}

.topics-tours-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.topics-tour-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.topics-tour-card-link:hover {
    transform: translateY(-5px);
}

.topics-tour-card {
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-gold);
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.topics-tour-card:hover {
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.15);
}

.topics-tour-image {
    position: relative;
    overflow: hidden;
    height: 120px;
    width: 180px;
    min-width: 180px;
    flex-shrink: 0;
}

.topics-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.topics-tour-card:hover .topics-tour-image img {
    transform: scale(1.05);
}

.topics-tour-content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

.topics-tour-title {
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: var(--primary-navy);
    font-weight: 600;
}

/* Description and link styles removed for simplified design */

.topics-social {
    text-align: center;
    padding: 40px 20px;
    background: rgba(212, 165, 116, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.social-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-navy);
    margin-bottom: 25px;
    font-weight: 600;
}

.topics-social .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.topics-social .social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    background: var(--warm-white);
    padding: 12px 24px;
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.2);
}

.topics-social .social-link:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.topics-social .social-link svg {
    width: 20px;
    height: 20px;
}

.topics-social .facebook svg {
    color: #1877F2;
}

.topics-social .instagram svg {
    color: #E4405F;
}

/* YouTube Videos Section Styles */
.youtube-videos-section {
    margin: 30px 0;
    padding: 25px;
    background: rgba(212, 165, 116, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.youtube-section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-navy);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.youtube-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.youtube-video-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: var(--warm-white);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

.youtube-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.15);
}

.youtube-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

.youtube-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-video-card:hover .youtube-thumbnail img {
    transform: scale(1.05);
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.youtube-video-card:hover .youtube-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.youtube-video-info {
    padding: 15px;
    text-align: center;
}

.youtube-video-info h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-navy);
    font-weight: 600;
    margin: 0;
}

/* LAB TRAVEL Info Styles */
.lab-travel-info {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 60px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.1);
}

.lab-travel-header {
    text-align: center;
    margin-bottom: 30px;
}

.lab-travel-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lab-travel-logo-link:hover {
    transform: translateY(-3px);
}

.lab-travel-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.lab-travel-details {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.lab-travel-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-section h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 5px;
}

.contact-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-section a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: var(--primary-navy);
    text-decoration: underline;
}

.lab-travel-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.lab-travel-social .social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    background: var(--warm-white);
    padding: 12px 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.2);
}

.lab-travel-social .social-link:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.lab-travel-social .facebook svg {
    color: #1877F2;
}

.lab-travel-social .instagram svg {
    color: #E4405F;
}

/* Topics Mobile Styles */
@media (max-width: 768px) {
    .topics-section {
        padding: var(--section-padding-mobile);
    }

    .topics-tours-grid {
        gap: 15px;
        margin-bottom: 40px;
    }

    .topics-tour-card {
        flex-direction: column;
    }

    .topics-tour-image {
        height: 150px;
        width: 100%;
        min-width: auto;
    }

    .topics-tour-content {
        padding: 15px 20px;
    }

    .topics-tour-title {
        font-size: 15px;
        text-align: center;
    }

    .topics-social {
        padding: 30px 15px;
    }

    .social-header h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .topics-social .social-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .topics-social .social-link {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 160px;
        justify-content: center;
    }

    /* LAB TRAVEL Mobile Styles */
    .lab-travel-info {
        padding: 25px;
        margin-bottom: 40px;
        border-radius: 20px;
    }


    .lab-travel-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .lab-travel-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-section h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .contact-section p {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .lab-travel-social .social-link {
        padding: 10px 18px;
        font-size: 13px;
    }

    /* YouTube Videos Mobile Styles */
    .youtube-videos-section {
        margin: 20px 0;
        padding: 20px;
    }

    .youtube-section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .youtube-videos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .youtube-video-info {
        padding: 12px;
    }

    .youtube-video-info h5 {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .language-switcher,
    .slider-nav {
        display: none;
    }
    
    .hero-slider {
        height: auto;
        min-height: 300px;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}