/* ==========================================================================
   Felix Electrical Services Ltd - Holding Page Styles
   Designed & Developed by RealCode.co.uk
   ========================================================================== */

:root {
    --bg-main: #0c0e12;
    --bg-card: rgba(22, 27, 34, 0.78);
    --bg-card-border: rgba(154, 204, 36, 0.18);
    --bg-card-hover-border: rgba(154, 204, 36, 0.45);
    
    --primary-color: #98c928;
    --primary-hover: #adcf36;
    --primary-glow: rgba(152, 201, 40, 0.35);
    --primary-glow-strong: rgba(152, 201, 40, 0.65);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Typography */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Ambient Animated Lighting */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-1 {
    top: -100px;
    left: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary-glow-strong) 0%, rgba(152, 201, 40, 0) 70%);
}

.orb-2 {
    bottom: -100px;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.25) 0%, rgba(20, 184, 166, 0) 70%);
    animation-duration: 16s;
    animation-delay: -3s;
}

.orb-3 {
    top: 40%;
    left: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.2) 0%, rgba(152, 201, 40, 0) 70%);
    animation-duration: 14s;
    animation-delay: -6s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, 30px) scale(1.08);
    }
    100% {
        transform: translate(-30px, -20px) scale(0.95);
    }
}

/* Grid Pattern Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

/* Main Layout */
.holding-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.25rem 2.5rem;
    max-width: 860px;
    margin: 0 auto;
}

/* Main Holding Card */
.holding-card {
    position: relative;
    width: 100%;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 3.25rem 2.5rem 2.75rem;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(152, 201, 40, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    animation: cardEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.holding-card:hover {
    border-color: var(--bg-card-hover-border);
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(152, 201, 40, 0.12);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(152, 201, 40, 0.1);
    border: 1px solid rgba(152, 201, 40, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseRing {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }
}

/* Logo Wrapper & Glow */
.logo-wrapper {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(152, 201, 40, 0) 70%);
    border-radius: 50%;
    filter: blur(25px);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.15);
        opacity: 0.85;
    }
}

.brand-logo {
    position: relative;
    z-index: 1;
    width: 210px;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo:hover {
    transform: scale(1.04);
}

/* Content Header */
.content-header {
    max-width: 650px;
    margin-bottom: 2.25rem;
}

.title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.domain-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.domain-prefix {
    color: var(--text-muted);
}

.domain-highlight {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 12px rgba(152, 201, 40, 0.4);
}

.subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 680px;
    margin-bottom: 0.5rem;
}

.feature-item {
    background: rgba(30, 36, 45, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(35, 42, 53, 0.8);
    border-color: rgba(152, 201, 40, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(152, 201, 40, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.feature-details {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Holding Footer & Developer Attribution */
.holding-footer {
    width: 100%;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.holding-footer strong {
    color: var(--text-secondary);
}

.developer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 24, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.dev-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: #38bdf8;
    font-weight: 600;
    transition: var(--transition-smooth);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.dev-link:hover {
    color: #7dd3fc;
    background: rgba(56, 189, 248, 0.1);
    transform: translateY(-1px);
}

.dev-brand {
    font-family: var(--font-heading);
    font-weight: 700;
}

.dev-tld {
    color: var(--primary-color);
}

.code-bracket {
    color: #64748b;
    font-family: monospace;
    font-weight: bold;
}

.external-icon {
    width: 13px;
    height: 13px;
    margin-left: 0.15rem;
    opacity: 0.7;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .holding-card {
        padding: 2.25rem 1.5rem;
    }

    .title {
        font-size: 1.75rem;
    }

    .domain-tag {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .holding-footer {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .holding-container {
        padding: 2rem 1rem;
    }

    .brand-logo {
        width: 170px;
    }
}
