
body {
    font-family: 'Inter', sans-serif;
    color: #E5E7EB;
    background-image: linear-gradient(rgba(17, 24, 39, 0.2), rgba(17, 24, 39, 0.5)), url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.font-dancing-script {
    font-family: 'Dancing Script', cursive;
}
.glass-panel, .glass-modal, .slide-in-panel {
    background: rgba(17, 24, 39, 0.6); /* Slightly more opaque for readability */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.accent-bg { background-color: #0891B2; }
.accent-text { color: #0891B2; }
.accent-border { border-color: #0891B2; }

/* Shared Nav Item Styles */
.nav-item {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* Desktop Nav Link Styles */
.nav-item-desktop {
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.nav-item-desktop.active {
    color: #67E8F9;
    border-color: #67E8F9;
}
.nav-item-desktop:hover {
    color: #67E8F9;
}

/* Mobile Nav Link Styles */
#mobile-menu .nav-item.active {
    background-color: rgba(103, 232, 249, 0.1);
    color: #67E8F9;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 17px; /* Adjusted for visual centering */
    top: 0; /* Starts from top of container, behind circle */
    bottom: -2rem;
    width: 4px; /* Made wider */
    background-color: #374151;
    z-index: 0;
}
.process-step::after {
    content: '';
    position: absolute;
    left: 17px; /* Adjusted for visual centering */
    top: 0; /* Starts from top of container, behind circle */
    bottom: -2rem;
    width: 4px; /* Made wider */
    background-color: #0891B2;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s ease-in-out;
    z-index: 1;
}
.process-step.is-animated::after {
    transform: scaleY(1);
}
.process-step:last-child::before,
.process-step:last-child::after {
    display: none;
}
.no-transition::after {
    transition: none !important;
}

/* Slide-in Panel Styles */
#panel-overlay {
    transition: opacity 0.3s ease-in-out;
}
#slide-in-panel {
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}
body.panel-open #slide-in-panel {
    transform: translateX(0);
}
body.panel-open main, body.panel-open footer, body.panel-open #header-wrapper {
    filter: blur(4px);
    transform: scale(0.99);
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Custom bullet points for the panel */
.panel-list li {
    position: relative;
    padding-left: 28px; /* Space for the icon */
    margin-bottom: 12px;
}
.panel-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    color: #67E8F9;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}
