/* Elektrik Landing Page Specific Styles */
body {
    background-color: #3C4C6C;
    color: #D7D7FF;
    overflow-x: hidden;
}

/* Essential Loader */
#loader {
    position: fixed; inset: 0; background: #3C4C6C; z-index: 100;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 1.5s cubic-bezier(0.8, 0, 0.2, 1);
}
.loader-text {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.3em;
    color: #F034FD;
    animation: pulse 2s infinite ease-in-out;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; }

/* Typography Refinement */
.editorial-text { line-height: 1.8; font-weight: 300; }

.glass-nav {
    background: rgba(60, 76, 108, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(215, 215, 255, 0.05);
}

/* Media Overlay for dark mood */
.overlay-dark {
    background: linear-gradient(to bottom, rgba(60, 76, 108, 0.8), rgba(60, 76, 108, 0.4), rgba(60, 76, 108, 0.9));
}

/* Buttons */
.btn-premium {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(215, 215, 255, 0.3);
    transition: all 0.4s ease;
}
.btn-premium:hover {
    border-color: #F034FD;
    background: rgba(240, 52, 253, 0.1);
    color: #D7D7FF;
}
.btn-filled {
    background: #062EF9;
    color: #D7D7FF;
    transition: background 0.4s ease;
}
.btn-filled:hover { background: #F034FD; }

/* image cards */
.stone-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    border-radius: 8px;
}
.stone-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 0.8s;
    filter: brightness(0.6) saturate(1.2);
}
.stone-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.9) saturate(1.5);
}
.stone-card-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(60,76,108,0.95), transparent);
    transform: translateY(20px);
    opacity: 0.8;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.stone-card:hover .stone-card-content {
    transform: translateY(0);
    opacity: 1;
}

/* Other Services Cards */
.other-srv-card {
    border: 1px solid rgba(215, 215, 255, 0.1);
    background: rgba(60,76,108,0.4);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    border-radius: 8px;
}
.other-srv-card:hover {
    border-color: #F034FD;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 46, 249, 0.2);
}

/* Form Inputs */
input, textarea, select {
    background: transparent;
    border-bottom: 1px solid rgba(215, 215, 255, 0.3);
    color: #D7D7FF;
    transition: border-color 0.4s ease;
}
input:focus, textarea:focus, select:focus {
    outline: none; border-color: #F034FD;
}

/* Mobile Menu */
#mobile-menu {
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}
#mobile-menu.open { transform: translateY(0); }
