/* Sticky Contact Button */
.sticky-contact-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    background-color: var(--color-accent);
    color: var(--color-on-accent);
    padding: 15px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: "Play", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sticky-contact-btn:hover {
    background-color: var(--color-accent-muted);
    color: var(--color-on-accent);
    padding-right: 20px; /* Slide out effect */
    text-decoration: none;
}

/* Ensure dropdown works correctly */
.header__nav__menu ul li .dropdown {
    width: 280px; /* Wider for service names */
    background: #121821; /* Match dark theme */
    border: 1px solid var(--color-border);
}

.header__nav__menu ul li .dropdown li a {
    color: #EAECEF; /* Light text for dark theme */
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
}

.header__nav__menu ul li .dropdown li a:hover {
    background: var(--color-accent);
    color: var(--color-on-accent);
}

/* Header Actions (Theme Toggle) */
.header__nav__actions {
    display: inline-flex;
    align-items: center;
    margin-left: 24px;
}

.header__nav__actions .theme-toggle {
    margin-right: 0;
}

/* Light theme overrides for dropdown */
[data-theme="light"] .header__nav__menu ul li .dropdown {
    background: #ffffff;
    border: 1px solid #e1e1e1;
}

[data-theme="light"] .header__nav__menu ul li .dropdown li a {
    color: #111111;
    border-bottom: 1px solid #f0f0f0;
}

[data-theme="light"] .header__nav__menu ul li .dropdown li a:hover {
    background: var(--color-accent);
    color: var(--color-on-accent);
}

/* Service Card Links (Replaces Expandable Trigger) */
.service-link-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-link-card:hover {
    text-decoration: none;
    color: inherit;
}
