:root {
    --primary-color: #58b2c2;
    --secondary-color: #82b35f;
    --accent-color: #7bc4d1;
    --light-accent: #e6f7f9;
    --dark-accent: #3a8a9a;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #334155;
    --gold: #d4a574;
    --shadow: rgba(88, 178, 194, 0.1);
    --shadow-hover: rgba(88, 178, 194, 0.2);
}

[data-theme="dark"] {
    --primary-color: #7bc4d1;
    --secondary-color: #9bc76f;
    --accent-color: #a8d4dc;
    --light-accent: #2a5a66;
    --dark-accent: #3a8a9a;
    --white: #0f172a;
    --light-gray: #1e293b;
    --medium-gray: #94a3b8;
    --dark-gray: #e2e8f0;
    --gold: #e6c08a;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.5);
}

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

/* Accessibility: visually hidden but accessible to screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1002;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(88, 178, 194, 0.1);
}

[data-theme="dark"] .navbar {
    background: rgba(0, 0, 0, 1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px var(--shadow);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
     transition: opacity 0.3s ease;
}

.logo-light {
    display: block;
    height: 70px;
    width: auto;
}

.logo-dark {
    display: none;
    height: 70px;
    width: auto;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex: 1;
    justify-content: space-evenly;
    margin: 0 2rem;
    max-width: 500px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

[data-theme="dark"] .nav-link {
    color: #ffffff;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Menu Mobile Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    max-width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 40px 0 0 0;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(88, 178, 194, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.mobile-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mobile-logo img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.mobile-logo-light {
    display: block;
}

.mobile-logo-dark {
    display: none;
}

[data-theme="dark"] .mobile-logo-light {
    display: none;
}

[data-theme="dark"] .mobile-logo-dark {
    display: block;
}

[data-theme="dark"] .mobile-menu-header {
    background: rgba(0, 0, 0, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .mobile-menu {
    background: rgba(0, 0, 0, 1);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.mobile-menu-item {
    margin-bottom: 1rem;
}

.mobile-menu-link {
    display: block;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.67rem 0;
    border-bottom: 1px solid rgba(44, 85, 48, 0.1);
    transition: all 0.3s ease;
}

[data-theme="dark"] .mobile-menu-link {
    color: #ffffff;
}

.mobile-menu-link:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

[data-theme="dark"] .mobile-menu-link:hover {
    background: rgba(59, 130, 246, 0.2);
}

/* Overlay pour fermer le menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--primary-color);
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: var(--light-accent);
    transform: scale(1.1);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
    position: absolute;
    transition: all 0.3s ease;
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

/* Hero Section with Dynamic Background */
.hero {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(135deg, rgba(88, 178, 194, 0.8), rgba(123, 196, 209, 0.6));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 0 0 50px 0;
}

/* Background slideshow container */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-image.active {
    opacity: 1;
}

/* Overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88, 178, 194, 0.3), rgba(123, 196, 209, 0.2));
    z-index: -1;
}

[data-theme="dark"] .hero::before {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4), rgba(30, 41, 59, 0.3));
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
    width: 100%;
}

.hero-content .about-text {
    margin-top: 1.5rem;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    margin-top: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* Tumblr Gallery Styles */
.tumblr-gallery {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .tumblr-gallery {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dark theme - black text for hero elements to stand out on bright background if needed, but we keep it white or dark appropriately */
[data-theme="dark"] .hero-subtitle,
[data-theme="dark"] .hero-tagline,
[data-theme="dark"] .hero h1 {
    color: #ffffff; /* Sane defaults instead of black to keep readability on dark slideshow */
}

.tumblr-gallery h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
    opacity: 0.95;
}

.tumblr-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.tumblr-photo-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.tumblr-photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tumblr-photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.loading-message {
    text-align: center;
    color: #ffffff;
    opacity: 0.8;
    font-size: 1.1rem;
    padding: 2rem;
}

.error-message {
    text-align: center;
    color: #ff6b6b;
    opacity: 0.9;
    font-size: 1rem;
    padding: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #c19b26);
    color: var(--white);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f, var(--gold));
    border-color: rgba(255, 255, 255, 0.2);
}

/* Sections */
.section {
    padding: 5rem 0;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Services Section */
#services {
    background: var(--light-gray);
}

[data-theme="dark"] .section {
    background: #1a2e33;
}

[data-theme="dark"] #services {
    background: #1a2e33;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Large screens - wider containers for services and portfolio */
@media (min-width: 1400px) {
    #services .container,
    #portfolio .container {
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    #services .container,
    #portfolio .container {
        max-width: 1600px;
    }
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* Dark theme overrides for about */
[data-theme="dark"] .about-text,
[data-theme="dark"] .about-text p {
    color: var(--dark-gray);
}

.about-image {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Large screens - wider service cards */
@media (min-width: 1400px) {
    .services-grid {
        gap: 3rem;
        max-width: 1200px;
        margin: 3rem auto 0;
    }
}

@media (min-width: 1600px) {
    .services-grid {
        gap: 4rem;
        max-width: 1400px;
        margin: 3rem auto 0;
    }
}

/* Responsive layout for services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(88, 178, 194, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

[data-theme="dark"] .service-card {
    background: #000000;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

[data-theme="dark"] .service-card:hover {
    border-color: var(--primary-color);
}

.service-icon {
    width: 100%;
    height: 240px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    flex-shrink: 0;
}

.service-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.3px;
}

/* Encart Pub SwapMyFlat */
.promo-banner {
    display: block;
    text-decoration: none;
    margin-top: 3.5rem;
    padding: 2.75rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(112, 66, 215, 0.2);
    box-shadow: 0 10px 30px rgba(112, 66, 215, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
    cursor: pointer;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7042d7, #9b6ff5, #7042d7);
    border-radius: 20px 20px 0 0;
}

.promo-banner:hover,
.promo-banner:focus-visible {
    transform: translateY(-6px) !important;
    box-shadow: 0 18px 45px rgba(112, 66, 215, 0.2);
    border-color: rgba(112, 66, 215, 0.5);
    outline: none;
}

[data-theme="dark"] .promo-banner {
    background: #0d1520;
    border: 1px solid rgba(112, 66, 215, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .promo-banner:hover,
[data-theme="dark"] .promo-banner:focus-visible {
    box-shadow: 0 18px 45px rgba(112, 66, 215, 0.35);
    border-color: #9b6ff5;
}

.promo-banner-inner {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.promo-banner-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 800;
    color: #7042d7;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    transition: transform 0.3s ease;
}

.promo-banner:hover .promo-banner-title {
    transform: scale(1.02);
}

.promo-banner-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.4;
}

[data-theme="dark"] .promo-banner-subtitle {
    color: #f1f5f9;
}

.promo-banner-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--dark-gray);
    margin: 0.25rem 0 0 0;
    line-height: 1.65;
    max-width: 680px;
    opacity: 0.9;
}

[data-theme="dark"] .promo-banner-text {
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .promo-banner {
        margin-top: 2.5rem;
        padding: 2rem 1.25rem;
    }
}

/* Portfolio Section */
.portfolio {
    background: var(--primary-color);
}

.portfolio .section-title {
    color: white;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Large screens - wider portfolio items */
@media (min-width: 1400px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 4rem;
    }
}

@media (min-width: 1600px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
        gap: 5rem;
    }
}

.portfolio-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(88, 178, 194, 0.1);
}

[data-theme="dark"] .portfolio-item {
    background: #000000;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

.video-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.3px;
}

.portfolio-info p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--light-accent);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(88, 178, 194, 0.2);
}

[data-theme="dark"] .tag {
    background: var(--dark-accent);
    color: var(--accent-color);
    border: 1px solid rgba(123, 196, 209, 0.3);
}

/* Video Player Container - Desktop Layout */
.video-player-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-top: 3rem;
}

.main-video-section {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
    border: 1px solid rgba(88, 178, 194, 0.1);
}

[data-theme="dark"] .main-video-section {
    background: #1a1a1a;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.main-video-player {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.main-video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.main-video-info {
    padding: 2rem;
}

.main-video-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.3px;
}

.main-video-info p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Playlist Sidebar */
.playlist-sidebar {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 25px var(--shadow);
    border: 1px solid rgba(88, 178, 194, 0.1);
    height: fit-content;
}

[data-theme="dark"] .playlist-sidebar {
    background: #1a1a1a;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.playlist-sidebar h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.playlist-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 520px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom Scrollbar Styles */
.playlist-items::-webkit-scrollbar {
    width: 6px;
}

.playlist-items::-webkit-scrollbar-track {
    background: rgba(88, 178, 194, 0.1);
    border-radius: 3px;
}

.playlist-items::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.playlist-items::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

[data-theme="dark"] .playlist-items::-webkit-scrollbar-track {
    background: rgba(123, 196, 209, 0.1);
}

[data-theme="dark"] .playlist-items::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

.playlist-item {
    display: flex;
    gap: 1rem;
    padding: 15px 10px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 100px;
    align-items: center;
    width: 100%;
}

.playlist-item:hover {
    background: var(--light-accent);
}

.playlist-item.active {
    background: var(--light-accent);
    border-color: var(--primary-color);
}

[data-theme="dark"] .playlist-item:hover {
    background: #2a2a2a;
}

[data-theme="dark"] .playlist-item.active {
    background: var(--dark-accent);
    border-color: var(--accent-color);
}

.playlist-thumbnail {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.playlist-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.playlist-item:hover .play-overlay {
    opacity: 1;
}

.playlist-info {
    flex: 1;
    min-width: 0;
}

.playlist-info h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.playlist-info p {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Values Section */
.values {
    background: var(--primary-color);
    color: var(--white);
}

.values .section-title {
    color: var(--white);
}

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

.value-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-item:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s ease;
}

.value-item:hover::before {
    left: 100%;
}

.value-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.value-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    letter-spacing: -0.2px;
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

[data-theme="dark"] .contact {
    background: #1a2e33;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid rgba(88, 178, 194, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 15px 40px var(--shadow-hover);
    transform: translateY(-2px);
}

[data-theme="dark"] .contact-form {
    background: #000000;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--light-accent);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    color: var(--dark-gray);
    letter-spacing: 0.3px;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: #2a2a2a;
    border-color: #444;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    background: #333;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: 0 4px 15px rgba(88, 178, 194, 0.2);
}

.submit-btn:hover {
    background: #4a9fb0;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(88, 178, 194, 0.3);
}

.contact-info {
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid rgba(88, 178, 194, 0.1);
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
}

[data-theme="dark"] .contact-info {
    background: #000000;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-info:hover {
    box-shadow: 0 15px 40px var(--shadow-hover);
    transform: translateY(-2px);
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-color);
    letter-spacing: -0.2px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(88, 178, 194, 0.05);
}

[data-theme="dark"] .contact-item:hover {
    background: rgba(88, 178, 194, 0.1);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(88, 178, 194, 0.2);
}

.email-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.email-text {
    margin: 0;
}

.copy-email-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(88, 178, 194, 0.2);
    align-self: center;
}

.copy-email-btn:hover {
    background: #4a9fb0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 178, 194, 0.3);
}

.copy-email-btn:active {
    transform: translateY(0);
}

.copy-success {
    background: #28a745 !important;
}

/* Footer */
.footer {
    background: var(--dark-accent);
    color: #ffffff;
    text-align: center;
    padding: 2rem 0;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

.footer a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.footer-locations {
    font-size: 0.65rem;
    opacity: 0.7;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

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

/* Tablet and small desktop responsive */
@media (min-width: 769px) and (max-width: 992px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-controls {
        gap: 0.8rem;
    }
    
    .theme-toggle {
        width: 36px;
        height: 36px;
        padding: 0.4rem;
    }
}

/* Tablet responsive for video playlist */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-player-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .playlist-sidebar {
        order: -1;
    }
    
    .playlist-items {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        max-height: none;
        overflow-y: visible;
    }
    
    .playlist-item {
        min-height: 80px;
    }
    
    .main-video-player {
        height: 350px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo {
        margin-left: -0.5rem;
    }
    
    .logo img {
        height: 55px;
    }
    
    .logo-light, .logo-dark {
        height: 70px;
    }
    
    .hero {
        padding: 80px 0 50px 0;
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content {
        margin-top: 0;
        padding: 1.5rem;
        position: relative;
        top: 0px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-info {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
        padding: 0.8rem;
    }
    
    .contact-item-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
        font-size: 1.1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .portfolio-item {
        margin: 10px auto;
        max-width: 100%;
    }
    
    .video-container {
        height: 200px;
    }
    
    /* Show video player container on mobile with vertical layout */
    .video-player-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .main-video-section {
        order: 1;
    }
    
    .playlist-sidebar {
        order: 2;
        width: 100%;
        max-height: 400px;
        overflow: visible;
    }
    
    /* Make playlist title sticky on mobile */
    .playlist-sidebar h4 {
        position: sticky;
        top: 0;
        background: var(--white);
        z-index: 10;
        padding: 12px 0;
        margin-top: 0;
        margin-bottom: 0;
        border-bottom: 1px solid var(--light-accent);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        border-radius: 15px 15px 0 0;
    }
    
    [data-theme="dark"] .playlist-sidebar h4 {
        background: #1a1a1a;
        border-bottom-color: var(--dark-accent);
        box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .playlist-items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.3rem;
        max-height: 340px;
        overflow-y: auto;
        scroll-padding-top: 60px;
        padding-top: 1rem;
        border-radius: 0 0 8px 8px;
    }
    
    .playlist-item {
        display: flex;
        gap: 1rem;
        padding: 10px;
        width: 100%;
        border-radius: 8px;
        min-height: 80px;
    }
    
    .playlist-thumbnail {
        width: 100px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .playlist-info {
        flex: 1;
    }
    
    .playlist-info h5 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .playlist-info p {
        font-size: 0.8rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .main-video-player {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .logo {
        margin-left: -1rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo-light, .logo-dark {
        height: 60px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .playlist-item {
        gap: 0.8rem;
        padding: 8px;
    }
    
    .playlist-thumbnail {
        width: 90px;
        height: 54px;
    }
    
    .playlist-info h5 {
        font-size: 0.85rem;
    }
    
    .playlist-info p {
        font-size: 0.75rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem 1rem;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        padding: 1rem 0.5rem;
    }
    
    .contact-item-icon {
        width: 45px;
        height: 45px;
        margin-right: 0;
        margin-bottom: 0.8rem;
        align-self: center;
    }
    
    .contact-item div:last-child {
        width: 100%;
    }
    
    .email-container {
        align-items: center;
        width: 100%;
    }
    
    .email-text {
        word-break: break-all;
        font-size: 0.9rem;
    }
    
    .copy-email-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 0;
    }
    
    .service-card .service-content {
        padding: 1.5rem;
    }
    
    .service-icon {
        border-radius: 20px 20px 0 0;
    }
    
    .portfolio-info {
        padding: 1.5rem;
    }
    
    .video-container {
        height: 180px;
    }
}

@media (max-width: 320px) {
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .logo {
        margin-left: -0.5rem;
    }

    .logo img {
        height: 35px;
    }

    .logo-light, .logo-dark {
        height: 35px;
    }

    .nav-controls {
        gap: 0.3rem;
    }
    
    .theme-toggle {
        width: 32px;
        height: 32px;
        padding: 0.2rem;
    }

    .hamburger {
        padding: 0.25rem;
    }

    .hero h1 {
        font-size: 1.6rem;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .service-content h3, 
    .contact-info h3,
    .tumblr-gallery h3 {
        font-size: 1.2rem;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
}

/* Stats Section */
.stats-section {
    background: #ffffff;
    padding: 1rem 0;
    padding-top: calc(100px + 1rem);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .stats-section {
    background: #000000;
}

[data-theme="dark"] .stat-number,
[data-theme="dark"] .stat-label {
    color: #000000;
}

[data-theme="dark"] .stat-item {
    background: var(--primary-color);
}

.stats-section::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: white;
    flex: 1;
    min-width: 90px;
    height: 100px;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    background: var(--primary-color) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    hyphens: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.4em;
}

@media (max-width: 1200px) {
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.1;
        max-height: 2.2em;
    }
}

@media (max-width: 1000px) {
    .stat-label {
        font-size: 0.6rem;
        line-height: 1.1;
        max-height: 2.2em;
    }
}

@media (max-width: 768px) {
    .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding: 0 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stat-item {
        min-width: auto;
        width: 100%;
        max-width: none;
        height: 65px;
        padding: 0.4rem 0.3rem;
        border-radius: 6px;
    }
    
    .stat-number {
        font-size: 1.2rem;
        margin-bottom: 0.15rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.1;
        max-height: 2.2em;
    }
    
    .stats-section {
        padding: 0.6rem 0;
    }
}

@media (max-width: 480px) {
    .stats-container {
        gap: 0.4rem;
        padding: 0 0.5rem;
        max-width: 350px;
    }
    
    .stat-item {
        height: 60px;
        padding: 0.3rem 0.2rem;
    }
    
    .stat-number {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
        line-height: 0.95;
        max-height: 1.9em;
    }
}

/* Canon Images Section */
.canon-images-section {
    padding: 0;
    padding-top: calc(100px + 1rem);
    background: var(--background-color);
    transition: background-color 0.3s ease;
    width: 100%;
    overflow: hidden;
}

.canon-images-container {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

.canon-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .canon-images-section {
        padding: 0;
    }
    
    .canon-images-container {
        padding: 0;
    }
}

/* FAQ Section */
.faq-item {
    background: var(--white);
    border: 1px solid rgba(88, 178, 194, 0.15);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px var(--shadow);
}

.faq-item[open] {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark-gray);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

[open] .faq-question::after {
    content: '\2212';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

[data-theme="dark"] .faq-item {
    background: #000000;
    border-color: rgba(123, 196, 209, 0.2);
}

[data-theme="dark"] .faq-question {
    color: #e2e8f0;
}

[data-theme="dark"] .faq-item:hover {
    border-color: var(--primary-color);
}
