/**
 * Ekomodus - Custom Styles
 * Based on EcoCycle dark theme design
 */

/* ========================================
   CSS VARIABLES (Design System)
   ======================================== */
:root {
    --bg-dark: #05140d;
    --bg-darker: #030b07;
    --primary: #1e4d3b;
    --accent: #ccff00;
    --accent-glow: rgba(204, 255, 0, 0.4);
    --text-light: #f4fdf8;
    --text-dim: #9abfb0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(204, 255, 0, 0.3);
}

/* ========================================
   BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 1rem;
    z-index: 10001;
    transition: top 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.skip-link:focus {
    top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   AMBIENT GLOW BACKGROUNDS
   ======================================== */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
    animation: float 10s infinite ease-in-out;
}

.ambient-glow-accent {
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
    100% { transform: translate(0, 0); }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar-eco {
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(5, 20, 13, 0.8);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-eco.scrolled {
    padding: 1rem 0;
    background: rgba(5, 20, 13, 0.95);
}

.navbar-brand-eco {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-light) !important;
}

.navbar-brand-eco span {
    color: var(--accent);
}

.nav-link-eco {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link-eco::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link-eco:hover::after,
.nav-link-eco.active::after {
    width: calc(100% - 2rem);
}

.nav-link-eco:hover,
.nav-link-eco.active {
    color: var(--accent) !important;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-switcher a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dim);
    padding: 0.25rem 0.5rem;
    transition: color 0.3s ease;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    color: var(--accent);
}

.lang-switcher .separator {
    color: var(--border);
}

/* CTA Button in Nav */
.btn-nav-cta {
    background: var(--accent);
    color: var(--bg-dark) !important;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background: transparent;
    color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

/* Mobile Menu Toggle */
.navbar-toggler-eco {
    border: 1px solid var(--border);
    padding: 0.5rem;
}

.navbar-toggler-eco:focus {
    box-shadow: none;
}

.navbar-toggler-eco .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28204, 255, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas Mobile Menu */
.offcanvas-eco {
    background: var(--bg-dark);
    border-left: 1px solid var(--border);
}

.offcanvas-eco .offcanvas-header {
    border-bottom: 1px solid var(--border);
}

.offcanvas-eco .btn-close {
    filter: invert(1);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary-eco {
    background: var(--accent);
    color: var(--bg-dark);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid var(--accent);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

.btn-primary-eco:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 40px rgba(204, 255, 0, 0.4);
    transform: scale(1.02);
}

.btn-outline-eco {
    background: transparent;
    color: var(--text-light);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-eco:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(5, 20, 13, 0.85) 0%,
        rgba(5, 20, 13, 0.6) 50%,
        rgba(5, 20, 13, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-title .outline-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 500px;
    margin-bottom: 2rem;
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
    background: rgba(30, 77, 59, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.hero-icon {
    font-size: 8rem;
    color: var(--accent);
}

/* ========================================
   PAGE HERO (For inner pages)
   ======================================== */
.page-hero {
    padding: 150px 0 80px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.page-hero-tag {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

.page-hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.page-hero-title .outline-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
    padding: 100px 0;
}

.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-dim);
    max-width: 600px;
}

/* ========================================
   BENTO GRID (Services)
   ======================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.bento-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.bento-item:hover {
    background: var(--glass-hover);
    border-color: var(--accent);
    transform: translateY(-5px);
    color: inherit;
}

.bento-item.span-2 {
    grid-column: span 2;
}

.bento-item.span-row-2 {
    grid-row: span 2;
}

.bento-item.featured {
    background: linear-gradient(135deg, var(--glass) 0%, rgba(204, 255, 0, 0.05) 100%);
}



.service-tag {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin: 0;
}

.bento-item.span-2 .service-title,
.bento-item.span-row-2 .service-title {
    font-size: 2rem;
}

.service-desc {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.service-arrow {
    align-self: flex-end;
    font-size: 1rem;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.bento-item:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Bento Grid */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-item.span-2,
    .bento-item.span-row-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-item {
        min-height: 180px;
    }
}

/* ========================================
   SERVICES LIST (Index page)
   ======================================== */
.services-list {
    padding-bottom: 50px;
}

.service-row {
    display: flex;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.service-row:hover {
    background-color: rgba(204, 255, 0, 0.03);
    padding-left: 2rem;
}

.service-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--accent);
    width: 60px;
    font-weight: 300;
}

.service-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    font-weight: 500;
    flex-grow: 1;
    text-transform: uppercase;
}

.service-brief {
    max-width: 300px;
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-right: 30px;
    display: none;
}

@media (min-width: 992px) {
    .service-brief {
        display: block;
    }
}

.service-row .service-arrow {
    font-size: 1.5rem;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.service-row:hover .service-arrow {
    opacity: 1;
    transform: translateX(10px);
    color: var(--accent);
}

/* ========================================
   SPLIT LAYOUT (About, Location, Service detail)
   ======================================== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.split-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) contrast(1.1);
    transition: all 1s ease;
}

.split-image:hover img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.05);
}

.split-text .accent-line {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin-bottom: 2rem;
}

.split-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.split-text p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .split-image {
        height: 50vh;
        order: -1;
    }

    .split-text {
        padding: 60px 30px;
    }
}

/* ========================================
   MATERIAL LIST
   ======================================== */
.material-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.material-list li {
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.material-list li span {
    color: var(--accent);
}

/* ========================================
   VALUES GRID
   ======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.value-card h4 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.cta-title .outline-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
}

.cta-desc {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: calc(100vh - 80px);
}

.contact-info {
    padding: 120px 60px 60px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.contact-method {
    margin-bottom: 2.5rem;
}

.contact-method .label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-method .value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: var(--text-light);
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-method a.value:hover {
    color: var(--accent);
    transform: translateX(10px);
}

.contact-form-side {
    padding: 120px 60px 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 120px 30px 60px;
    }

    .contact-form-side {
        padding: 60px 30px;
    }
}

/* ========================================
   FORMS
   ======================================== */
.form-group-eco {
    position: relative;
    margin-bottom: 2rem;
}

.form-group-eco input,
.form-group-eco textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    color: var(--text-light);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group-eco input:focus,
.form-group-eco textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.form-group-eco label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-dim);
    pointer-events: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.form-group-eco input:focus ~ label,
.form-group-eco input:not(:placeholder-shown) ~ label,
.form-group-eco textarea:focus ~ label,
.form-group-eco textarea:not(:placeholder-shown) ~ label {
    top: -1.2rem;
    font-size: 0.65rem;
    color: var(--accent);
}

.cf-turnstile {
    margin: 1.5rem 0;
}

.form-submit-area {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-dim);
    max-width: 180px;
    line-height: 1.3;
}

/* ========================================
   LOCATION PAGE
   ======================================== */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: calc(100vh - 80px);
}

.location-info {
    padding: 120px 60px 60px;
    border-right: 1px solid var(--border);
}

.location-map {
    position: relative;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    filter: grayscale(0.8) contrast(1.2);
    transition: filter 0.3s ease;
}

.location-map:hover iframe {
    filter: grayscale(0.3) contrast(1.1);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block .label {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.info-block .value {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.info-block .value.muted {
    color: var(--text-dim);
}

@media (max-width: 992px) {
    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .location-info {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 120px 30px 60px;
    }

    .location-map {
        height: 400px;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer-eco {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--accent);
}

.footer-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--text-dim);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ========================================
   404 PAGE
   ======================================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.error-code {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    line-height: 1;
}

.error-title {
    font-size: 2rem;
    margin: 1rem 0;
}

.error-desc {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

/* ========================================
   UTILITIES
   ======================================== */
.text-accent {
    color: var(--accent);
}

.text-muted-eco {
    color: var(--text-dim);
}

.bg-glass {
    background: var(--glass);
}

.border-eco {
    border: 1px solid var(--border);
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-section {
        padding-top: 80px;
    }

    .hero-visual {
        display: none;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-primary-eco,
    .hero-cta .btn-outline-eco {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   FORM MESSAGES
   ======================================== */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-message.success {
    background: rgba(204, 255, 0, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.form-message.error {
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid #ff6464;
    color: #ff6464;
}

.form-message ul {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
}

.form-message ul li {
    margin-bottom: 0.25rem;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
