/**
 * Juju Elementor Blocks - Frontend Styles
 */

/* ==========================================
   Common Header Styles
   ========================================== */
.juju-header,
.juju-header-home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

.juju-header {
    padding: 15px 30px;
    background: #FFFFFF;
}

.juju-header-home {
    padding: 20px 40px;
    background: transparent;
}

.elementor-sticky--effects .juju-header-home {
    background: #FFFFFF;
    padding: 15px 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ==========================================
   Brand/Logo Section
   ========================================== */
.juju-brand {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.juju-brand-item {
    display: block;
    text-decoration: none;
    opacity: 0.35;
    transition: all 0.3s ease;
}

.juju-brand-item:hover {
    opacity: 0.7;
}

.juju-brand-item.active {
    opacity: 1;
}

.juju-brand-item img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.4s ease;
}

.juju-header-home .juju-brand-item img {
    height: 55px;
}

.juju-brand-divider {
    width: 1px;
    height: 36px;
    background: #E8DDD3;
    transition: all 0.4s ease;
}

.juju-header-home .juju-brand-divider {
    height: 40px;
}

.elementor-sticky--effects .juju-brand-item img {
    height: 38px;
}

.elementor-sticky--effects .juju-header-home .juju-brand-item img {
    height: 42px;
}

.elementor-sticky--effects .juju-brand-divider {
    height: 28px;
}

/* ==========================================
   Navigation
   ========================================== */
.juju-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.juju-nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.juju-nav-menu > li {
    position: relative;
}

.juju-nav-menu > li > a {
    display: block;
    padding: 10px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #2d2d2d;
    transition: all 0.3s ease;
    position: relative;
}

.juju-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: #C9A889;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.juju-nav-menu > li > a:hover {
    color: #C9A889;
}

.juju-nav-menu > li > a:hover::after {
    transform: scaleX(1);
}

/* Submenu */
.juju-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #FFFFFF;
    border: 1px solid #E8DDD3;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    z-index: 1000;
}

.juju-nav-menu > li:hover .juju-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.juju-submenu li a {
    display: block;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #2d2d2d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.juju-submenu li a:hover {
    background: #FAF8F5;
    color: #C9A889;
    padding-left: 25px;
}

/* ==========================================
   Header Actions
   ========================================== */
.juju-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.juju-header-actions .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Cart/Devis Button */
.btn-cart,
.juju-header .btn-cart,
.juju-header-home .btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #2d2d2d;
    background: #FFFFFF;
    border: 1.5px solid #E8DDD3;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    background: #FAF8F5;
    border-color: #C9A889;
    color: #2d2d2d;
}

.btn-cart svg {
    width: 16px;
    height: 16px;
}

.juju-quote-count,
.btn-cart .juju-quote-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    color: #FFFFFF;
    background: #C9A889;
    border-radius: 50px;
}

.juju-quote-count.empty {
    display: none;
}

/* Account Button */
.btn-account,
.juju-header .btn-account,
.juju-header-home .btn-account {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-account:hover {
    background: linear-gradient(135deg, #C9A889, #B8977A);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 137, 0.4);
    color: #FFFFFF;
}

.btn-account svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ==========================================
   Mobile Menu Toggle
   ========================================== */
.juju-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border: 1.5px solid #E8DDD3;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.juju-menu-toggle:hover {
    background: #FAF8F5;
    border-color: #C9A889;
}

.juju-menu-toggle svg {
    width: 20px;
    height: 20px;
    color: #2d2d2d;
}

.juju-menu-toggle .icon-close {
    display: none;
}

.juju-menu-toggle.active .icon-open {
    display: none;
}

.juju-menu-toggle.active .icon-close {
    display: block;
}

/* ==========================================
   Tablet Styles
   ========================================== */
@media (max-width: 1024px) {
    .juju-header {
        padding: 12px 20px;
    }
    
    .juju-header-home {
        padding: 15px 25px;
    }
    
    .elementor-sticky--effects .juju-header-home {
        padding: 12px 25px;
    }
    
    .juju-nav-menu > li > a {
        padding: 10px 12px;
        font-size: 11px;
    }
}

/* ==========================================
   Mobile Styles
   ========================================== */
@media (max-width: 768px) {
    .juju-header,
    .juju-header-home {
        flex-wrap: wrap;
        padding: 12px 15px;
        position: relative;
    }
    
    /* Mobile: Show only active logo */
    .juju-brand-item:not(.active),
    .juju-brand-divider {
        display: none;
    }
    
    .juju-brand-item.active img {
        height: 45px;
    }
    
    .elementor-sticky--effects .juju-brand-item.active img {
        height: 38px;
    }
    
    /* Show menu toggle */
    .juju-menu-toggle {
        display: flex;
    }
    
    /* Mobile Nav */
    .juju-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        border-top: 1px solid #E8DDD3;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 20px;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .juju-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .juju-nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .juju-nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #F5F0EB;
    }
    
    .juju-nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .juju-nav-menu > li > a {
        padding: 15px 0;
        font-size: 13px;
        color: #2d2d2d;
    }
    
    .juju-nav-menu > li > a::after {
        display: none;
    }
    
    /* Mobile Submenu */
    .juju-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 10px 15px;
        background: transparent;
        display: none;
    }
    
    .juju-nav-menu > li:hover .juju-submenu,
    .juju-nav-menu > li.submenu-open .juju-submenu {
        display: block;
    }
    
    .juju-submenu li a {
        padding: 10px 0;
        font-size: 12px;
        color: #8B8178;
    }
    
    .juju-submenu li a:hover {
        background: transparent;
        padding-left: 10px;
    }
    
    /* Mobile Header Actions */
    .juju-header-actions {
        gap: 10px;
    }
    
    /* Hide cart on mobile */
    .btn-cart,
    .header-actions .btn-cart {
        display: none !important;
    }
    
    /* Account - Icon only on mobile */
    .btn-account,
    .header-actions .btn-account {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .btn-account .btn-text,
    .header-actions .btn-account .btn-text {
        display: none;
    }
    
    .btn-account svg,
    .header-actions .btn-account svg {
        width: 20px;
        height: 20px;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .juju-brand-item.active img {
        height: 38px;
    }
    
    .juju-menu-toggle,
    .btn-account {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================
   HERO BANNER STYLES
   ========================================== */

/* Hero Section */
.juju-hero {
    min-height: 100vh;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #FAF8F5;
    padding-top: 80px;
    padding-bottom: 120px;
    box-sizing: border-box;
}

/* Multi-layer parallax background */
.juju-hero-parallax {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.juju-hero-layer {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.juju-hero-layer-1 {
    opacity: 0.2;
    animation: jujuKenBurns 30s ease-in-out infinite alternate;
}

.juju-hero-layer-1.no-animation {
    animation: none;
}

@keyframes jujuKenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -1%); }
}

.juju-hero-layer-2 {
    background: radial-gradient(ellipse at 30% 20%, rgba(201, 168, 137, 0.15) 0%, transparent 50%);
}

.juju-hero-layer-3 {
    background: radial-gradient(ellipse at 70% 80%, rgba(232, 221, 211, 0.2) 0%, transparent 50%);
}

/* Floating decorative elements */
.juju-hero-float {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: jujuFloat 20s ease-in-out infinite;
}

.juju-hero-float-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    right: -5%;
    border: 1px solid #E8DDD3;
    animation-delay: 0s;
}

.juju-hero-float-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: -3%;
    background: linear-gradient(135deg, rgba(201, 168, 137, 0.1), transparent);
    animation-delay: -5s;
}

.juju-hero-float-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    border: 1px solid rgba(201, 168, 137, 0.3);
    animation-delay: -10s;
}

.juju-hero-float-4 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 15%;
    background: #E8DDD3;
    opacity: 0.3;
    animation-delay: -15s;
}

@keyframes jujuFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(20px) rotate(-5deg); }
}

/* Hero Content */
.juju-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

/* Logo in Hero */
.juju-hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    line-height: 1;
}

.juju-hero-logo-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
}

.juju-hero-logo-juju {
    font-family: 'Pinyon Script', cursive;
    font-size: 3.5rem;
    color: #1a1a1a;
    line-height: 1;
}

.juju-hero-logo-wedding {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-transform: uppercase;
    line-height: 1;
}

.juju-hero-logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.juju-hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #B8977A;
    margin-bottom: 2rem;
}

/* Title with rotating words */
.juju-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.juju-hero-title-line {
    display: block;
}

.juju-hero-title-line.italic {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.juju-rotating-words {
    display: inline-block;
    position: relative;
    color: #B8977A;
    min-width: 320px;
    height: 1.3em;
    vertical-align: bottom;
}

.juju-rotating-word {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    opacity: 0;
    animation: jujuRotateWord 12s infinite;
    white-space: nowrap;
}

@keyframes jujuRotateWord {
    0%, 5% { opacity: 0; transform: translateX(-50%) translateY(15px); }
    10%, 20% { opacity: 1; transform: translateX(-50%) translateY(0); }
    25%, 100% { opacity: 0; transform: translateX(-50%) translateY(-15px); }
}

.juju-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: #4a4a4a;
    max-width: 550px;
    margin: 2rem auto 3rem;
}

/* Hero Buttons */
.juju-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.juju-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    padding: 1.3rem 2.8rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.juju-hero-cta:hover {
    background: linear-gradient(135deg, #C9A889, #B8977A);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 137, 0.4);
    color: #FFFFFF;
}

.juju-hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.juju-hero-cta:hover svg {
    transform: translateX(5px);
}

.juju-hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2d2d2d;
    background: transparent;
    padding: 1.3rem 2.8rem;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #C9A889;
    transition: all 0.4s ease;
}

.juju-hero-cta-secondary:hover {
    background: #E8DDD3;
    border-color: #E8DDD3;
    color: #2d2d2d;
}

/* Scroll indicator */
.juju-hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    z-index: 10;
    width: 100%;
}

.juju-hero-scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid #8B8178;
    border-radius: 15px;
    position: relative;
}

.juju-hero-scroll-wheel {
    width: 4px;
    height: 8px;
    background: #C9A889;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: jujuScrollWheel 2s ease-in-out infinite;
}

@keyframes jujuScrollWheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

.juju-hero-scroll span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8B8178;
}

/* Shape divider */
.juju-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.juju-shape-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

.juju-shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* Hero Mobile Responsive */
@media (max-width: 768px) {
    .juju-hero {
        padding-top: 100px;
        padding-bottom: 160px;
        min-height: 100vh;
    }
    
    .juju-hero-content {
        padding: 0 1.5rem;
    }
    
    .juju-hero-logo-juju {
        font-size: 2.5rem;
    }
    
    .juju-hero-logo-wedding {
        font-size: 1.6rem;
    }
    
    .juju-hero-logo-subtitle {
        font-size: 0.6rem;
    }
    
    .juju-hero-tagline {
        font-size: 0.7rem;
        letter-spacing: 0.3em;
    }
    
    .juju-hero-subtitle {
        font-size: 0.95rem;
        margin: 1.5rem auto 2rem;
    }
    
    .juju-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .juju-hero-cta,
    .juju-hero-cta-secondary {
        padding: 1rem 2rem;
        font-size: 0.75rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .juju-hero-float-1,
    .juju-hero-float-2 {
        display: none;
    }
    
    .juju-rotating-words {
        min-width: 200px;
    }
    
    .juju-hero-scroll {
        bottom: 80px;
    }
    
    .juju-shape-divider svg {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .juju-hero {
        padding-bottom: 140px;
    }
    
    .juju-hero-scroll {
        bottom: 70px;
    }
}

/* ==========================================
   STATS SECTION STYLES
   ========================================== */

.juju-stats {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 5rem 4rem;
    background: #FFFFFF;
    box-sizing: border-box;
}

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

.juju-stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

/* Divider between items */
.juju-stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #E8DDD3, transparent);
}

.juju-stat-item:last-child::after {
    display: none;
}

.juju-stats.no-dividers .juju-stat-item::after {
    display: none;
}

.juju-stat-icon {
    font-size: 2.5rem;
    color: #C9A889;
    margin-bottom: 1rem;
    line-height: 1;
}

.juju-stat-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.juju-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: #B8977A;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.juju-stat-number .juju-counter-suffix,
.juju-stat-number .juju-counter-prefix {
    font-size: 2rem;
}

.juju-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4a4a4a;
}

/* Stats Tablet Responsive */
@media (max-width: 1024px) {
    .juju-stats {
        padding: 4rem 3rem;
    }
    
    .juju-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .juju-stat-item:nth-child(2n)::after {
        display: none;
    }
    
    .juju-stat-number {
        font-size: 3.5rem;
    }
}

/* Stats Mobile Responsive */
@media (max-width: 600px) {
    .juju-stats {
        padding: 3rem 1.5rem;
    }
    
    .juju-stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .juju-stat-item {
        padding: 1.5rem 1rem;
    }
    
    .juju-stat-item::after {
        display: none;
    }
    
    .juju-stat-item:nth-child(odd)::after {
        display: block;
        height: 50%;
    }
    
    .juju-stat-number {
        font-size: 2.5rem;
    }
    
    .juju-stat-number .juju-counter-suffix,
    .juju-stat-number .juju-counter-prefix {
        font-size: 1.5rem;
    }
    
    .juju-stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
}

/* Stats Extra Small - Stack Vertically */
@media (max-width: 400px) {
    .juju-stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .juju-stat-item::after {
        display: none !important;
    }
    
    .juju-stat-item {
        border-bottom: 1px solid #E8DDD3;
        padding-bottom: 1.5rem;
    }
    
    .juju-stat-item:last-child {
        border-bottom: none;
    }
}

/* ==========================================
   ABOUT SECTION STYLES
   ========================================== */

.juju-about {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 8rem 4rem;
    background: #FFFFFF;
    box-sizing: border-box;
    overflow: hidden;
}

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

/* Image on right side */
.juju-about.image-right .juju-about-container {
    direction: rtl;
}

.juju-about.image-right .juju-about-container > * {
    direction: ltr;
}

/* Image Wrapper with Decorations */
.juju-about-image-wrapper {
    position: relative;
}

/* Decorative elements */
.juju-about-decor {
    position: absolute;
    pointer-events: none;
}

.juju-about-decor-1 {
    width: 200px;
    height: 200px;
    border: 1px solid #C9A889;
    border-radius: 50%;
    top: -30px;
    left: -30px;
    animation: jujuAboutPulse 4s ease-in-out infinite;
}

.juju-about-decor-2 {
    width: 100px;
    height: 100px;
    background: #E8DDD3;
    border-radius: 50%;
    bottom: 50px;
    right: -20px;
    opacity: 0.5;
}

.juju-about-decor-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C9A889, #B8977A);
    border-radius: 50%;
    top: 40%;
    right: -40px;
    opacity: 0.3;
}

@keyframes jujuAboutPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Image shapes */
.juju-about-image-mask {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.juju-about-image-mask.shape-blob {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.juju-about-image-mask.shape-rounded {
    border-radius: 20px;
}

.juju-about-image-mask.shape-circle {
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.juju-about-image-mask.shape-square {
    border-radius: 0;
}

.juju-about-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.juju-about-image-wrapper:hover .juju-about-image-mask img {
    transform: scale(1.05);
}

/* Content */
.juju-about-content {
    padding: 2rem 0;
}

.juju-section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C9A889;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.juju-section-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: #C9A889;
}

.juju-section-eyebrow.no-line::before {
    display: none;
}

.juju-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.juju-section-title em {
    font-style: italic;
    color: #B8977A;
}

.juju-about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.juju-about-signature {
    font-family: 'Pinyon Script', cursive;
    font-size: 2.5rem;
    color: #B8977A;
    margin-top: 2rem;
}

/* About Button */
.juju-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    margin-top: 2rem;
}

.juju-about-btn.btn-primary {
    color: #FFFFFF;
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.juju-about-btn.btn-primary:hover {
    background: linear-gradient(135deg, #C9A889, #B8977A);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 137, 0.4);
}

.juju-about-btn.btn-secondary {
    color: #2d2d2d;
    background: transparent;
    border: 2px solid #C9A889;
}

.juju-about-btn.btn-secondary:hover {
    background: #E8DDD3;
    border-color: #E8DDD3;
}

/* About Tablet Responsive */
@media (max-width: 1024px) {
    .juju-about {
        padding: 6rem 3rem;
    }
    
    .juju-about-container {
        gap: 4rem;
    }
    
    .juju-about-decor-1 {
        width: 150px;
        height: 150px;
        top: -20px;
        left: -20px;
    }
    
    .juju-about-decor-2 {
        width: 80px;
        height: 80px;
        bottom: 30px;
        right: -10px;
    }
    
    .juju-about-decor-3 {
        width: 50px;
        height: 50px;
        right: -20px;
    }
}

/* About Mobile Responsive */
@media (max-width: 768px) {
    .juju-about {
        padding: 4rem 1.5rem;
    }
    
    .juju-about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .juju-about.image-right .juju-about-container {
        direction: ltr;
    }
    
    .juju-about-image-wrapper {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .juju-about-decor-1 {
        width: 120px;
        height: 120px;
        top: -15px;
        left: -15px;
    }
    
    .juju-about-decor-2 {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 0;
    }
    
    .juju-about-decor-3 {
        width: 40px;
        height: 40px;
        right: -10px;
    }
    
    .juju-about-content {
        padding: 0;
        text-align: center;
    }
    
    .juju-section-eyebrow {
        justify-content: center;
    }
    
    .juju-section-eyebrow::before {
        display: none;
    }
    
    .juju-section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .juju-about-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .juju-about-signature {
        font-size: 2rem;
    }
}

/* About Extra Small */
@media (max-width: 480px) {
    .juju-about {
        padding: 3rem 1rem;
    }
    
    .juju-about-image-wrapper {
        max-width: 300px;
    }
    
    .juju-about-decor-1,
    .juju-about-decor-3 {
        display: none;
    }
}

/* ==========================================
   PROCESS TIMELINE STYLES
   ========================================== */

.juju-process {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 8rem 4rem;
    background: #FAF8F5;
    box-sizing: border-box;
}

/* Header */
.juju-process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.juju-process-header .juju-section-eyebrow {
    justify-content: center;
}

.juju-process-header .juju-section-eyebrow::before {
    display: none;
}

.juju-process-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #4a4a4a;
    margin-top: 1rem;
}

/* Timeline */
.juju-process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Vertical line */
.juju-process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #E8DDD3, #C9A889, #E8DDD3);
    transform: translateX(-50%);
}

.juju-process-timeline.no-line::before {
    display: none;
}

/* Timeline Item */
.juju-process-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

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

/* Number Circle */
.juju-process-number {
    grid-column: 2;
    justify-self: center;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: 3px solid #C9A889;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #B8977A;
    z-index: 2;
    transition: all 0.4s ease;
}

.juju-process-number svg {
    width: 24px;
    height: 24px;
}

.juju-process-item:hover .juju-process-number {
    background: #C9A889;
    color: #FFFFFF;
    transform: scale(1.1);
}

.juju-process-item:hover .juju-process-number svg {
    fill: #FFFFFF;
}

/* Content Card */
.juju-process-content {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

/* Odd items - Content on LEFT */
.juju-process-item:nth-child(odd) .juju-process-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    margin-right: 10px;
}

.juju-process-item:nth-child(odd) .juju-process-number {
    grid-row: 1;
}

/* Even items - Content on RIGHT */
.juju-process-item:nth-child(even) .juju-process-content {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    margin-left: 10px;
}

.juju-process-item:nth-child(even) .juju-process-number {
    grid-row: 1;
}

.juju-process-item:hover .juju-process-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.juju-process-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.juju-process-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
}

/* Process Tablet Responsive */
@media (max-width: 1024px) {
    .juju-process {
        padding: 6rem 3rem;
    }
    
    .juju-process-header {
        margin-bottom: 4rem;
    }
    
    .juju-process-item {
        grid-template-columns: 1fr 70px 1fr;
        margin-bottom: 2.5rem;
    }
    
    .juju-process-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .juju-process-content {
        padding: 1.5rem;
    }
}

/* Process Mobile Responsive */
@media (max-width: 768px) {
    .juju-process {
        padding: 4rem 1.5rem;
    }
    
    .juju-process-header {
        margin-bottom: 3rem;
    }
    
    .juju-process-timeline::before {
        left: 25px;
    }
    
    .juju-process-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }
    
    .juju-process-number {
        order: -1;
        position: relative;
        left: 0;
        margin-left: 0;
        margin-bottom: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .juju-process-item:hover .juju-process-number {
        transform: scale(1.1);
    }
    
    .juju-process-content,
    .juju-process-item:nth-child(odd) .juju-process-content,
    .juju-process-item:nth-child(even) .juju-process-content {
        order: 1;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 1.5rem;
        text-align: left;
    }
    
    .juju-process-content h3 {
        font-size: 1.3rem;
    }
    
    .juju-process-content p {
        font-size: 0.85rem;
    }
}

/* Process Extra Small */
@media (max-width: 480px) {
    .juju-process {
        padding: 3rem 1rem;
    }
    
    .juju-process-timeline::before {
        display: none;
    }
    
    .juju-process-number {
        order: -1;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .juju-process-content,
    .juju-process-item:nth-child(odd) .juju-process-content,
    .juju-process-item:nth-child(even) .juju-process-content {
        order: 1;
        padding: 1.2rem;
    }
}

/* ==========================================
   SERVICES FLIP CARDS STYLES
   ========================================== */

.juju-services {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 8rem 4rem;
    background: #FFFFFF;
    box-sizing: border-box;
}

/* Header */
.juju-services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.juju-services-header .juju-section-eyebrow {
    justify-content: center;
}

.juju-services-header .juju-section-eyebrow::before {
    display: none;
}

/* Services Grid */
.juju-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* 3D Flip Card */
.juju-flip-card {
    height: 400px;
    perspective: 1000px;
}

.juju-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.juju-flip-card:hover .juju-flip-card-inner {
    transform: rotateY(180deg);
}

.juju-flip-card-front,
.juju-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    top: 0;
    left: 0;
}

/* Front of card */
.juju-flip-card-front {
    background: #FAF8F5;
}

.juju-flip-card-front-image {
    height: 65%;
    overflow: hidden;
}

.juju-flip-card-front-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.juju-flip-card:hover .juju-flip-card-front-image img {
    transform: scale(1.1);
}

.juju-flip-card-front-content {
    padding: 1.5rem;
    text-align: center;
}

.juju-flip-card-front h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.juju-flip-card-front p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #C9A889;
    letter-spacing: 0.1em;
    margin: 0;
}

/* Back of card */
.juju-flip-card-back {
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
    box-sizing: border-box;
}

.juju-flip-card-back h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 0.75rem 0;
}

.juju-flip-card-back p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin: 0 0 1rem 0;
}

.juju-flip-card-back ul {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    width: 100%;
}

.juju-flip-card-back li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.juju-flip-card-back li:last-child {
    border-bottom: none;
}

.juju-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2d2d2d;
    background: #FFFFFF;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.juju-card-cta:hover {
    background: #C9A889;
    color: #FFFFFF;
}

/* Services Tablet Responsive */
@media (max-width: 1024px) {
    .juju-services {
        padding: 6rem 3rem;
    }
    
    .juju-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .juju-flip-card {
        height: 380px;
    }
}

/* Services Mobile Responsive */
@media (max-width: 768px) {
    .juju-services {
        padding: 4rem 1.5rem;
    }
    
    .juju-services-header {
        margin-bottom: 3rem;
    }
    
    .juju-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .juju-flip-card {
        height: 400px;
    }
}

/* Services Extra Small */
@media (max-width: 480px) {
    .juju-services {
        padding: 3rem 1rem;
    }
    
    .juju-flip-card {
        height: 380px;
    }
    
    .juju-flip-card-back {
        padding: 1.5rem;
    }
    
    .juju-flip-card-back h3 {
        font-size: 1.4rem;
    }
    
    .juju-flip-card-back p {
        font-size: 0.85rem;
    }
    
    .juju-flip-card-back li {
        font-size: 0.8rem;
    }
}

/* ==========================================
   VIDEO SHOWCASE STYLES
   ========================================== */

.juju-video-showcase {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* Background Image with Ken Burns */
.juju-video-showcase-bg {
    position: absolute;
    inset: 0;
}

.juju-video-showcase-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: jujuVideoKenBurns 30s ease-in-out infinite alternate;
}

.juju-video-showcase-bg.no-animation img {
    animation: none;
}

@keyframes jujuVideoKenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -1%); }
}

/* Dark Overlay */
.juju-video-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(26, 26, 26, 0.5) 50%,
        rgba(26, 26, 26, 0.7) 100%
    );
}

/* Content */
.juju-video-showcase-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.juju-video-section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C9A889;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.juju-video-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
}

.juju-video-section-title em {
    font-style: italic;
    color: #C9A889;
}

/* Play Button */
.juju-play-button {
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    border: none;
    outline: none;
}

.juju-play-button::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: jujuPlayPulse 2s ease-out infinite;
}

.juju-play-button.no-pulse::before {
    display: none;
}

@keyframes jujuPlayPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.juju-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    background: #C9A889;
}

.juju-play-button:hover svg {
    color: #FFFFFF;
}

.juju-play-button svg {
    width: 30px;
    height: 30px;
    color: #B8977A;
    margin-left: 5px;
}

.juju-video-showcase-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Video Lightbox / Modal */
.juju-video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.juju-video-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.juju-video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    height: 0;
    padding-bottom: 50.625%; /* 16:9 aspect ratio */
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.juju-video-lightbox.active .juju-video-lightbox-content {
    transform: scale(1);
}

.juju-video-lightbox iframe,
.juju-video-lightbox #jujuVideoContainer,
.juju-video-lightbox [id^="jujuVideoContainer_"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.juju-video-lightbox [id^="jujuVideoContainer_"] iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Close Button */
.juju-video-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.juju-video-close:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
}

.juju-video-close svg {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.juju-video-close:hover svg {
    color: #1a1a1a;
}

/* Video Showcase Mobile Responsive */
@media (max-width: 768px) {
    .juju-video-showcase {
        min-height: 70vh;
    }
    
    .juju-video-showcase-content {
        padding: 1.5rem;
    }
    
    .juju-play-button {
        width: 80px;
        height: 80px;
    }
    
    .juju-play-button::before {
        inset: -10px;
    }
    
    .juju-play-button svg {
        width: 24px;
        height: 24px;
    }
    
    .juju-video-showcase-text {
        font-size: 1rem;
    }
    
    .juju-video-lightbox-content {
        width: 95%;
    }
    
    .juju-video-close {
        top: -45px;
        right: 5px;
        width: 35px;
        height: 35px;
    }
}

/* Video Showcase Extra Small */
@media (max-width: 480px) {
    .juju-video-showcase {
        min-height: 60vh;
    }
    
    .juju-play-button {
        width: 70px;
        height: 70px;
    }
    
    .juju-video-showcase-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* ==========================================
   FAQ ACCORDION STYLES
   ========================================== */

.juju-faq {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 8rem 4rem;
    background: #FAF8F5;
    box-sizing: border-box;
}

.juju-faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.juju-faq-header .juju-section-eyebrow {
    justify-content: center;
}

.juju-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.juju-faq-item {
    background: #FFFFFF;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease;
}

.juju-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.juju-faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #1a1a1a;
    text-align: left;
    transition: all 0.3s ease;
}

.juju-faq-question:hover {
    color: #B8977A;
}

.juju-faq-question-text {
    flex: 1;
}

.juju-faq-icon {
    width: 36px;
    height: 36px;
    background: #E8DDD3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.juju-faq-icon span {
    font-size: 1.2rem;
    color: #B8977A;
    transition: transform 0.3s ease;
    line-height: 1;
}

.juju-faq-icon svg {
    width: 18px;
    height: 18px;
    color: #B8977A;
    transition: transform 0.3s ease;
}

.juju-faq-item.active .juju-faq-icon {
    background: #C9A889;
}

.juju-faq-item.active .juju-faq-icon span {
    color: #FFFFFF;
    transform: rotate(45deg);
}

.juju-faq-item.active .juju-faq-icon svg {
    color: #FFFFFF;
    transform: rotate(180deg);
}

.juju-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.juju-faq-answer-inner {
    padding: 0 2rem 1.5rem;
}

.juju-faq-answer,
.juju-faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: #4a4a4a;
}

.juju-faq-answer p {
    margin: 0 0 1rem;
}

.juju-faq-answer p:last-child {
    margin-bottom: 0;
}

/* FAQ Tablet Responsive */
@media (max-width: 768px) {
    .juju-faq {
        padding: 4rem 1.5rem;
    }
    
    .juju-faq-header {
        margin-bottom: 3rem;
    }
    
    .juju-faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .juju-faq-answer-inner {
        padding: 0 1.5rem 1.2rem;
    }
    
    .juju-faq-answer,
    .juju-faq-answer p {
        font-size: 0.9rem;
    }
    
    .juju-faq-icon {
        width: 32px;
        height: 32px;
    }
    
    .juju-faq-icon span {
        font-size: 1rem;
    }
    
    .juju-faq-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* FAQ Extra Small */
@media (max-width: 480px) {
    .juju-faq {
        padding: 3rem 1rem;
    }
    
    .juju-faq-question {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .juju-faq-answer-inner {
        padding: 0 1.2rem 1rem;
    }
    
    .juju-faq-answer,
    .juju-faq-answer p {
        font-size: 0.85rem;
    }
}

/* ==========================================
   TESTIMONIALS SLIDER STYLES
   ========================================== */

.juju-testimonials {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 8rem 4rem;
    background: #FAF8F5;
    box-sizing: border-box;
    overflow: hidden;
}

.juju-testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.juju-testimonials-header .juju-section-eyebrow {
    justify-content: center;
}

.juju-testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.juju-testimonial-slide {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 3rem;
    display: none;
    animation: jujuFadeSlide 0.5s ease;
}

.juju-testimonial-slide.active {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.juju-testimonial-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #E8DDD3;
    border-style: solid;
}

.juju-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.juju-testimonial-content {
    flex: 1;
}

.juju-testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.juju-testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #C9A889;
}

.juju-testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.juju-testimonial-author h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.juju-testimonial-author p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #8B8178;
    margin: 0;
}

/* Navigation Dots */
.juju-testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.juju-testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E8DDD3;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.juju-testimonial-dot:hover {
    background: #C9A889;
}

.juju-testimonial-dot.active {
    background: #C9A889;
    transform: scale(1.2);
}

/* Navigation Arrows */
.juju-testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #C9A889;
    color: #C9A889;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.juju-testimonial-arrow:hover {
    background: #C9A889;
    color: #FFFFFF;
}

.juju-testimonial-arrow svg {
    width: 24px;
    height: 24px;
}

.juju-testimonial-prev {
    left: -70px;
}

.juju-testimonial-next {
    right: -70px;
}

/* Testimonials Tablet Responsive */
@media (max-width: 1100px) {
    .juju-testimonial-prev {
        left: -10px;
    }
    
    .juju-testimonial-next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .juju-testimonials {
        padding: 4rem 1.5rem;
    }
    
    .juju-testimonial-slide.active {
        flex-direction: column;
        text-align: center;
    }
    
    .juju-testimonial-image {
        width: 150px;
        height: 150px;
    }
    
    .juju-testimonial-stars {
        justify-content: center;
    }
    
    .juju-testimonial-text {
        font-size: 1.2rem;
    }
    
    .juju-testimonial-arrow {
        display: none;
    }
}

/* Testimonials Extra Small */
@media (max-width: 480px) {
    .juju-testimonials {
        padding: 3rem 1rem;
    }
    
    .juju-testimonial-slide {
        padding: 2rem 1.5rem;
    }
    
    .juju-testimonial-image {
        width: 120px;
        height: 120px;
    }
    
    .juju-testimonial-text {
        font-size: 1.1rem;
    }
}

/* ==========================================
   CONTACT SECTION STYLES
   ========================================== */

.juju-contact {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 8rem 4rem;
    background: #FAF8F5;
    box-sizing: border-box;
}

.juju-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info */
.juju-contact-info {
    padding: 2rem 0;
}

.juju-contact-info .juju-section-title {
    text-align: left;
}

.juju-contact-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

/* Contact Details */
.juju-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.juju-contact-detail {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    background: #FFFFFF;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.juju-contact-detail:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.juju-contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E8DDD3, #C9A889);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.juju-contact-detail-icon svg {
    width: 22px;
    height: 22px;
    color: #FFFFFF;
}

.juju-contact-detail-text span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8B8178;
    display: block;
    margin-bottom: 0.2rem;
}

.juju-contact-detail-text a,
.juju-contact-detail-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.juju-contact-detail-text a:hover {
    color: #C9A889;
}

/* Social Links */
.juju-contact-social {
    display: flex;
    gap: 1rem;
}

.juju-contact-social a {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.juju-contact-social a:hover {
    background: #C9A889;
    transform: translateY(-5px) rotate(5deg);
}

.juju-contact-social svg {
    width: 22px;
    height: 22px;
    color: #FFFFFF;
}

/* Form Wrapper */
.juju-contact-form-wrapper {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.juju-contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #E8DDD3, #C9A889, #B8977A);
}

/* Form Placeholder */
.juju-contact-form-placeholder {
    text-align: center;
    padding: 3rem 2rem;
}

.juju-form-placeholder-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E8DDD3, #C9A889);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.juju-form-placeholder-icon svg {
    width: 36px;
    height: 36px;
    color: #FFFFFF;
}

.juju-contact-form-placeholder h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}

.juju-contact-form-placeholder p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0;
}

/* Custom Form Styles */
.juju-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.juju-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.juju-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.juju-form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #4a4a4a;
}

.juju-form-group input,
.juju-form-group select,
.juju-form-group textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #1a1a1a;
    background: #FAF8F5;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    transition: all 0.3s ease;
    outline: none;
}

.juju-form-group input::placeholder,
.juju-form-group textarea::placeholder {
    color: rgba(0,0,0,0.35);
}

.juju-form-group input:focus,
.juju-form-group select:focus,
.juju-form-group textarea:focus {
    border-color: #C9A889;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(201, 168, 137, 0.1);
}

.juju-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
}

.juju-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.juju-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    border: none;
    border-radius: 50px;
    padding: 1.3rem 3rem;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.juju-form-submit:hover {
    background: linear-gradient(135deg, #C9A889, #B8977A);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 137, 0.4);
}

.juju-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.juju-form-submit svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.juju-form-submit:hover svg {
    transform: translateX(5px);
}

/* Success Message */
.juju-form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.juju-form-success.show {
    display: block;
}

.juju-form-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E8DDD3, #C9A889);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.juju-form-success-icon svg {
    width: 40px;
    height: 40px;
    color: #FFFFFF;
}

.juju-form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}

.juju-form-success p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #4a4a4a;
    margin: 0;
}

/* Form Shortcode Container - Style overrides for CF7/WPForms */
.juju-contact-form-shortcode {
    /* These help normalize plugin form styles */
}

.juju-contact-form-shortcode input[type="text"],
.juju-contact-form-shortcode input[type="email"],
.juju-contact-form-shortcode input[type="tel"],
.juju-contact-form-shortcode input[type="number"],
.juju-contact-form-shortcode input[type="date"],
.juju-contact-form-shortcode select,
.juju-contact-form-shortcode textarea {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.95rem !important;
    color: #1a1a1a !important;
    background: #FAF8F5 !important;
    border: 2px solid transparent !important;
    border-radius: 12px !important;
    padding: 1rem 1.2rem !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.juju-contact-form-shortcode input:focus,
.juju-contact-form-shortcode select:focus,
.juju-contact-form-shortcode textarea:focus {
    border-color: #C9A889 !important;
    background: #FFFFFF !important;
    box-shadow: 0 0 0 4px rgba(201, 168, 137, 0.1) !important;
    outline: none !important;
}

.juju-contact-form-shortcode input[type="submit"],
.juju-contact-form-shortcode button[type="submit"] {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 1.3rem 3rem !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

.juju-contact-form-shortcode input[type="submit"]:hover,
.juju-contact-form-shortcode button[type="submit"]:hover {
    background: linear-gradient(135deg, #C9A889, #B8977A) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(201, 168, 137, 0.4) !important;
}

/* Contact Tablet Responsive */
@media (max-width: 992px) {
    .juju-contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .juju-contact-info {
        padding: 0;
    }
}

/* Contact Mobile Responsive */
@media (max-width: 768px) {
    .juju-contact {
        padding: 4rem 1.5rem;
    }
    
    .juju-contact-form-wrapper {
        padding: 2rem;
    }
    
    .juju-form-row {
        grid-template-columns: 1fr;
    }
    
    .juju-contact-detail {
        padding: 0.8rem;
    }
    
    .juju-contact-detail-icon {
        width: 45px;
        height: 45px;
    }
    
    .juju-contact-social a {
        width: 45px;
        height: 45px;
    }
}

/* Contact Extra Small */
@media (max-width: 480px) {
    .juju-contact {
        padding: 3rem 1rem;
    }
    
    .juju-contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .juju-form-group input,
    .juju-form-group select,
    .juju-form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }
    
    .juju-form-submit {
        width: 100%;
        padding: 1.2rem 2rem;
    }
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.juju-footer {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #1a1a1a;
    box-sizing: border-box;
}

/* Newsletter Bar */
.juju-footer-newsletter {
    background: #C9A889;
    padding: 3rem 4rem;
}

.juju-footer-newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.juju-footer-newsletter-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 0.5rem;
}

.juju-footer-newsletter-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.juju-footer-newsletter-form {
    flex-shrink: 0;
}

.juju-newsletter-form {
    display: flex;
    gap: 0;
}

.juju-newsletter-form input[type="email"] {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px 0 0 50px;
    background: #FFFFFF;
    color: #1a1a1a;
    width: 280px;
    outline: none;
}

.juju-newsletter-form input[type="email"]::placeholder {
    color: rgba(0,0,0,0.4);
}

.juju-newsletter-form button {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0 50px 50px 0;
    background: #1a1a1a;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

.juju-newsletter-form button:hover {
    background: #2d2d2d;
}

/* Main Footer */
.juju-footer-main {
    padding: 5rem 4rem 3rem;
}

.juju-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* Footer Column */
.juju-footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 1.5rem;
}

/* Brand Column */
.juju-footer-brand {
    padding-right: 2rem;
}

.juju-footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.juju-footer-logo:hover {
    color: #C9A889;
}

.juju-footer-logo-img {
    display: inline-block;
    margin-bottom: 1rem;
}

.juju-footer-logo-img img {
    max-height: 50px;
    width: auto;
}

.juju-footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin: 0 0 1.5rem;
}

/* Social Links */
.juju-footer-social {
    display: flex;
    gap: 0.75rem;
}

.juju-footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.juju-footer-social a:hover {
    background: #C9A889;
    transform: translateY(-3px);
}

.juju-footer-social svg {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
}

/* Footer Links */
.juju-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.juju-footer-links li {
    margin-bottom: 0.8rem;
}

.juju-footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.juju-footer-links a:hover {
    color: #C9A889;
    transform: translateX(5px);
}

/* Contact Items */
.juju-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.juju-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.juju-footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: #C9A889;
    flex-shrink: 0;
    margin-top: 2px;
}

.juju-footer-contact-item a,
.juju-footer-contact-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.juju-footer-contact-item a:hover {
    color: #C9A889;
}

/* Bottom Bar */
.juju-footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 4rem;
}

.juju-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.juju-footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.juju-footer-legal {
    display: flex;
    gap: 2rem;
}

.juju-footer-legal a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.juju-footer-legal a:hover {
    color: #C9A889;
}

/* Footer Tablet Responsive */
@media (max-width: 1024px) {
    .juju-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .juju-footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }
    
    .juju-footer-tagline {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .juju-footer-social {
        justify-content: center;
    }
    
    .juju-footer-newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .juju-footer-newsletter {
        padding: 2rem 1.5rem;
    }
    
    .juju-newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 320px;
    }
    
    .juju-newsletter-form input[type="email"] {
        width: 100%;
        border-radius: 50px;
        text-align: center;
    }
    
    .juju-newsletter-form button {
        width: 100%;
        border-radius: 50px;
    }
    
    .juju-footer-main {
        padding: 3rem 1.5rem 2rem;
    }
    
    .juju-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .juju-footer-column h4 {
        margin-bottom: 1rem;
    }
    
    .juju-footer-links a:hover {
        transform: none;
    }
    
    .juju-footer-contact {
        align-items: center;
    }
    
    .juju-footer-contact-item {
        justify-content: center;
    }
    
    .juju-footer-bottom {
        padding: 1.5rem;
    }
    
    .juju-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .juju-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }
}

/* Footer Extra Small */
@media (max-width: 480px) {
    .juju-footer-newsletter {
        padding: 1.5rem 1rem;
    }
    
    .juju-footer-newsletter-content h4 {
        font-size: 1.5rem;
    }
    
    .juju-footer-main {
        padding: 2rem 1rem 1.5rem;
    }
    
    .juju-footer-logo {
        font-size: 1.8rem;
    }
    
    .juju-footer-bottom {
        padding: 1rem;
    }
    
    .juju-footer-legal {
        gap: 0.75rem 1rem;
    }
    
    .juju-footer-legal a {
        font-size: 0.75rem;
    }
}

/* ==========================================
   PORTFOLIO GRID STYLES
   ========================================== */

.juju-portfolio {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 8rem 4rem;
    background: #2d2d2d;
    box-sizing: border-box;
}

.juju-portfolio-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.juju-portfolio-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C9A889;
    margin-bottom: 1rem;
}

.juju-portfolio-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.juju-portfolio-title em {
    font-style: italic;
    color: #C9A889;
}

/* Filter Tabs */
.juju-portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.juju-portfolio-tab {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.juju-portfolio-tab::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #C9A889;
    transition: width 0.3s ease;
}

.juju-portfolio-tab:hover {
    color: #FFFFFF;
}

.juju-portfolio-tab:hover::after,
.juju-portfolio-tab.active::after {
    width: 30px;
}

.juju-portfolio-tab.active {
    color: #FFFFFF;
    background: rgba(255,255,255,0.1);
}

/* Portfolio Grid */
.juju-portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Portfolio Item */
.juju-portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.juju-portfolio-item.hidden {
    display: none;
}

.juju-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.juju-portfolio-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.juju-portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.juju-portfolio-item:hover .juju-portfolio-item-overlay {
    opacity: 1;
}

/* Content */
.juju-portfolio-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.juju-portfolio-item:hover .juju-portfolio-item-content {
    transform: translateY(0);
    opacity: 1;
}

.juju-portfolio-item-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 0.3rem 0;
}

.juju-portfolio-item-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #E8DDD3;
    margin: 0;
}

/* Expand Icon */
.juju-portfolio-item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.juju-portfolio-item:hover .juju-portfolio-item-icon {
    transform: translate(-50%, -50%) scale(1);
}

.juju-portfolio-item-icon svg {
    width: 24px;
    height: 24px;
    color: #2d2d2d;
}

/* Lightbox */
.juju-portfolio-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.juju-portfolio-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.juju-portfolio-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.juju-portfolio-lightbox.active .juju-portfolio-lightbox-content {
    transform: scale(1);
}

.juju-portfolio-lightbox img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}

.juju-portfolio-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.juju-portfolio-lightbox-close:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
}

.juju-portfolio-lightbox-close svg {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.juju-portfolio-lightbox-close:hover svg {
    color: #1a1a1a;
}

.juju-portfolio-lightbox-caption {
    text-align: center;
    margin-top: 1rem;
}

.juju-portfolio-lightbox-caption h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin: 0 0 0.3rem 0;
}

.juju-portfolio-lightbox-caption p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #E8DDD3;
    margin: 0;
}

/* Portfolio Animation */
@keyframes jujuPfFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   LANGUAGE SELECTOR STYLES
   ========================================== */

.juju-lang-selector {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

/* Dropdown Style */
.juju-lang-dropdown-wrap {
    position: relative;
}

.juju-lang-current {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: inherit;
    transition: all 0.3s ease;
}

.juju-lang-current:hover {
    background: rgba(0,0,0,0.05);
}

.juju-lang-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.juju-lang-dropdown-wrap.open .juju-lang-arrow {
    transform: rotate(180deg);
}

.juju-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 120px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.juju-lang-dropdown-wrap.open .juju-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.juju-lang-dropdown li {
    margin: 0;
    padding: 0;
}

.juju-lang-dropdown .juju-lang-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.juju-lang-dropdown .juju-lang-item:hover {
    background: #FAF8F5;
    color: #C9A889;
}

/* Inline Style */
.juju-lang-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.juju-lang-inline .juju-lang-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: inherit;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.juju-lang-inline .juju-lang-item:hover,
.juju-lang-inline .juju-lang-item.active {
    opacity: 1;
}

.juju-lang-inline .juju-lang-item.active {
    background: rgba(201, 168, 137, 0.15);
    color: #C9A889;
}

/* Text Style */
.juju-lang-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
}

.juju-lang-text .juju-lang-item {
    text-decoration: none;
    color: inherit;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.juju-lang-text .juju-lang-item:hover,
.juju-lang-text .juju-lang-item.active {
    opacity: 1;
    color: #C9A889;
}

.juju-lang-sep {
    opacity: 0.3;
}

/* Flag */
.juju-lang-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Mobile */
@media (max-width: 991px) {
    .juju-lang-selector {
        margin-left: 0.5rem;
    }
    
    .juju-lang-current .juju-lang-code,
    .juju-lang-inline .juju-lang-code,
    .juju-lang-inline .juju-lang-name {
        display: none;
    }
    
    .juju-lang-text {
        font-size: 0.75rem;
    }
}

/* Portfolio Responsive */
@media (max-width: 1024px) {
    .juju-portfolio {
        padding: 6rem 3rem;
    }
    .juju-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .juju-portfolio {
        padding: 4rem 1.5rem;
    }
    .juju-portfolio-tabs {
        margin-bottom: 2rem;
        gap: 0.3rem;
    }
    .juju-portfolio-tab {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }
    .juju-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
    }
    .juju-portfolio-item-content {
        padding: 1.5rem;
    }
    .juju-portfolio-item-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .juju-portfolio {
        padding: 3rem 1rem;
    }
    .juju-portfolio-tab {
        padding: 0.5rem 0.8rem;
        font-size: 0.65rem;
    }
}

/* ==========================================
   PORTFOLIO GRID STYLES
   ========================================== */

.juju-portfolio {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 8rem 4rem;
    background: #2d2d2d;
    box-sizing: border-box;
}

/* Portfolio Header */
.juju-portfolio-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.juju-portfolio-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C9A889;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.juju-portfolio-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.2;
    text-align: center;
    margin: 0;
}

.juju-portfolio-title em {
    font-style: italic;
    color: #C9A889;
}

/* Filter Tabs */
.juju-portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.juju-portfolio-tab {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.juju-portfolio-tab::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #C9A889;
    transition: width 0.3s ease;
}

.juju-portfolio-tab:hover {
    color: #FFFFFF;
}

.juju-portfolio-tab:hover::after {
    width: 30px;
}

.juju-portfolio-tab.active {
    color: #FFFFFF;
    background: rgba(255,255,255,0.1);
}

.juju-portfolio-tab.active::after {
    width: 30px;
}

/* Portfolio Grid */
.juju-portfolio-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Portfolio Item */
.juju-portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.juju-portfolio-item.hidden {
    display: none;
}

.juju-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.juju-portfolio-item:hover img {
    transform: scale(1.1);
}

.juju-portfolio-item-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Overlay */
.juju-portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(26, 26, 26, 0.3) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.juju-portfolio-item:hover .juju-portfolio-item-overlay {
    opacity: 1;
}

/* Content */
.juju-portfolio-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.juju-portfolio-item:hover .juju-portfolio-item-content {
    transform: translateY(0);
    opacity: 1;
}

.juju-portfolio-item-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 0.3rem 0;
}

.juju-portfolio-item-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #E8DDD3;
    margin: 0;
}

/* Expand Icon */
.juju-portfolio-item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    pointer-events: none;
}

.juju-portfolio-item:hover .juju-portfolio-item-icon {
    transform: translate(-50%, -50%) scale(1);
}

.juju-portfolio-item-icon svg {
    width: 24px;
    height: 24px;
    color: #2d2d2d;
}

/* Portfolio Lightbox */
.juju-portfolio-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.juju-portfolio-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.juju-portfolio-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.juju-portfolio-lightbox.active .juju-portfolio-lightbox-content {
    transform: scale(1);
}

.juju-portfolio-lightbox img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}

.juju-portfolio-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.juju-portfolio-lightbox-close:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
}

.juju-portfolio-lightbox-close svg {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.juju-portfolio-lightbox-close:hover svg {
    color: #1a1a1a;
}

.juju-portfolio-lightbox-caption {
    text-align: center;
    margin-top: 1rem;
}

.juju-portfolio-lightbox-caption h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin: 0 0 0.3rem 0;
}

.juju-portfolio-lightbox-caption p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #E8DDD3;
    margin: 0;
}

/* Portfolio Filter Animation */
@keyframes jujuPortfolioFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Portfolio Tablet Responsive */
@media (max-width: 1024px) {
    .juju-portfolio {
        padding: 6rem 3rem;
    }
    
    .juju-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Portfolio Mobile Responsive */
@media (max-width: 768px) {
    .juju-portfolio {
        padding: 4rem 1.5rem;
    }
    
    .juju-portfolio-header {
        margin-bottom: 2rem;
    }
    
    .juju-portfolio-tabs {
        margin-bottom: 2rem;
        gap: 0.3rem;
    }
    
    .juju-portfolio-tab {
        padding: 0.6rem 1rem;
        font-size: 0.7rem;
    }
    
    .juju-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
    }
    
    .juju-portfolio-item-content {
        padding: 1.5rem;
    }
    
    .juju-portfolio-item-content h4 {
        font-size: 1.2rem;
    }
    
    .juju-portfolio-item-icon {
        width: 50px;
        height: 50px;
    }
    
    .juju-portfolio-item-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Portfolio Extra Small */
@media (max-width: 480px) {
    .juju-portfolio {
        padding: 3rem 1rem;
    }
    
    .juju-portfolio-tab {
        padding: 0.5rem 0.8rem;
        font-size: 0.65rem;
    }
}
