@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    /* Fonts */
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Theme - Dark Mode (Default) */
    --bg-main: hsl(222, 29%, 5%);
    --bg-surface: hsla(222, 25%, 10%, 0.7);
    --bg-surface-opaque: hsl(222, 25%, 10%);
    --bg-surface-hover: hsla(222, 25%, 15%, 0.8);
    
    --primary: hsl(180, 100%, 50%); /* Electric Cyan */
    --primary-glow: hsla(180, 100%, 50%, 0.25);
    --secondary: hsl(271, 91%, 65%); /* Neon Violet */
    --secondary-glow: hsla(271, 91%, 65%, 0.25);
    --accent: hsl(328, 100%, 59%); /* Hot Magenta */
    --accent-glow: hsla(328, 100%, 59%, 0.2);
    
    --text-primary: hsl(0, 0%, 98%);
    --text-secondary: hsl(218, 15%, 75%);
    --text-muted: hsl(218, 10%, 55%);
    
    --border: hsla(222, 16%, 22%, 0.6);
    --border-hover: hsla(180, 100%, 50%, 0.4);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
    --neon-shadow: 0 0 15px var(--primary-glow);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --blur: blur(16px);
}

/* Light Mode Variables Override */
[data-theme="light"] {
    --bg-main: hsl(220, 30%, 96%);
    --bg-surface: hsla(220, 30%, 100%, 0.8);
    --bg-surface-opaque: hsl(0, 0%, 100%);
    --bg-surface-hover: hsla(220, 30%, 93%, 0.8);
    
    --primary: hsl(190, 95%, 38%);
    --primary-glow: hsla(190, 95%, 38%, 0.15);
    --secondary: hsl(271, 75%, 50%);
    --secondary-glow: hsla(271, 75%, 50%, 0.15);
    --accent: hsl(328, 85%, 48%);
    --accent-glow: hsla(328, 85%, 48%, 0.15);
    
    --text-primary: hsl(222, 29%, 10%);
    --text-secondary: hsl(222, 15%, 35%);
    --text-muted: hsl(222, 10%, 55%);
    
    --border: hsla(222, 10%, 82%, 0.6);
    --border-hover: hsla(190, 95%, 38%, 0.4);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --neon-shadow: 0 0 15px var(--primary-glow);
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
}

ul {
    list-style: none;
}

/* --- BACKGROUND DECORATIONS --- */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-glow-1 {
    position: absolute;
    top: -10%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulseGlow 15s infinite alternate ease-in-out;
}

.bg-glow-2 {
    position: absolute;
    bottom: -10%;
    right: 5%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    filter: blur(100px);
    animation: pulseGlow 20s infinite alternate-reverse ease-in-out;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, var(--border) 1px, transparent 1px),
        linear-gradient(to bottom, var(--border) 1px, transparent 1px);
    opacity: 0.15;
    z-index: -2;
    pointer-events: none;
}

@keyframes pulseGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

/* --- UTILITY CLASSES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--bg-surface);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--neon-shadow);
    transform: translateY(-4px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: hsl(222, 29%, 5%);
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 242, 254, 0.5), 0 0 10px var(--primary);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    backdrop-filter: var(--blur);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--primary-glow);
    transform: translateY(-2px);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    background: var(--primary-glow);
    color: var(--primary);
    border: 1px solid hsla(180, 100%, 50%, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-purple {
    background: var(--secondary-glow);
    color: var(--secondary);
    border: 1px solid hsla(271, 91%, 65%, 0.3);
}

/* Scroll Animation classes */
.hidden-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.show-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* --- HEADER / NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: hsla(222, 29%, 5%, 0.7);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.6rem 0;
    background: hsla(222, 29%, 5%, 0.85);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2.5;
    animation: rotateLogo 20s infinite linear;
}

@keyframes rotateLogo {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.2rem 0;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--neon-shadow);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-title {
    font-family: var(--font-head);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Hero Visual Showcase */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-sphere-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
}

.visual-sphere {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    opacity: 0.15;
    filter: blur(30px);
}

.visual-mockup {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    backdrop-filter: var(--blur);
    padding: 1.2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.8rem;
}

.mockup-dots {
    display: flex;
    gap: 0.35rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.mockup-dot:nth-child(1) { background: hsl(0, 80%, 60%); }
.mockup-dot:nth-child(2) { background: hsl(40, 80%, 60%); }
.mockup-dot:nth-child(3) { background: hsl(120, 80%, 60%); }

.mockup-url {
    background: hsla(222, 16%, 22%, 0.4);
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.2rem 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.mockup-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
    justify-content: center;
}

.mockup-chart-item {
    height: 40px;
    background: hsla(222, 16%, 22%, 0.2);
    border-radius: 8px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.mockup-chart-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-glow), transparent);
    width: 0%;
    border-right: 2px solid var(--primary);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-chart-bar.loaded-bar-1 { width: 75%; }
.mockup-chart-bar.loaded-bar-2 { width: 90%; }
.mockup-chart-bar.loaded-bar-3 { width: 60%; }

.mockup-text {
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.mockup-creative-circle {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px dashed var(--secondary);
    animation: rotateLogo 30s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- ABOUT SECTION --- */
.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.detail-card {
    padding: 1.5rem;
    text-align: left;
}

.detail-card h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.detail-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- SHOWCASE / INTERACTIVE DASHBOARD SECTION --- */
.dashboard-simulator {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-surface-opaque);
}

.dash-header {
    background: hsla(222, 25%, 8%, 0.9);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.1rem;
}

.dash-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.dash-controls {
    display: flex;
    gap: 0.5rem;
}

.dash-btn {
    background: var(--border);
    border: none;
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.dash-btn.active {
    background: var(--primary);
    color: hsl(222, 29%, 5%);
}

.dash-body {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.dash-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-container {
    background: hsla(222, 16%, 22%, 0.2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem;
    height: 220px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.chart-title span {
    color: var(--primary);
}

.svg-chart {
    width: 100%;
    height: 140px;
}

.svg-chart path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s forwards ease-in-out;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

.dash-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.widget {
    background: hsla(222, 16%, 22%, 0.25);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.widget-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.widget-value {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.widget-trend {
    font-size: 0.7rem;
    color: hsl(120, 80%, 40%);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.widget-trend.down {
    color: hsl(0, 80%, 50%);
}

.dash-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-panel {
    background: hsla(222, 16%, 22%, 0.25);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.panel-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.interactive-control {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.control-input {
    width: 100%;
    accent-color: var(--primary);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    overflow-y: auto;
    max-height: 150px;
}

.activity-item {
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.4rem;
}

.activity-time {
    color: var(--text-muted);
}

/* --- SERVICES & PRICING --- */
.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid hsla(180, 100%, 50%, 0.2);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.service-card-purple .service-icon {
    background: var(--secondary-glow);
    color: var(--secondary);
    border-color: hsla(271, 91%, 65%, 0.2);
}

.service-card-magenta .service-icon {
    background: var(--accent-glow);
    color: var(--accent);
    border-color: hsla(328, 100%, 59%, 0.2);
}

.service-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 600;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-box {
    margin-top: 4rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem;
}

.pricing-price {
    font-family: var(--font-head);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 1rem 0;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.pricing-price span {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 3;
}

/* --- CONTACT & INQUIRY FORM --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.info-text h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.info-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-form-card {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

input, select, textarea {
    background: hsla(222, 16%, 22%, 0.2);
    border: 1px solid var(--border);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--neon-shadow);
    background: hsla(222, 16%, 22%, 0.4);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Toast Message */
.toast {
    position: fixed;
    bottom: -100px;
    right: 20px;
    background: var(--bg-surface-opaque);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg), var(--neon-shadow);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1000;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    bottom: 20px;
}

.toast-icon {
    color: var(--primary);
    display: flex;
}

.toast-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- FOOTER & ADMIN ENTRY --- */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    background: hsla(222, 29%, 5%, 0.95);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.admin-lock-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.admin-lock-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.admin-lock-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* --- ADMIN PANEL MODAL --- */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 22, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.admin-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.admin-login-box {
    width: 100%;
    max-width: 400px;
    padding: 2.5rem;
    text-align: center;
}

.admin-login-box h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-login-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-glow);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    border: 1px solid hsla(328, 100%, 59%, 0.2);
}

.admin-login-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Admin Dashboard View */
.admin-dashboard-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    z-index: 999;
    display: none;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
}

.admin-dashboard-view.show {
    display: flex;
}

.admin-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.admin-dash-title {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
}

.admin-dash-actions {
    display: flex;
    gap: 1rem;
}

.inquiry-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.inquiry-stat-card {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.inquiry-stat-card h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.inquiry-stat-card .val {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
}

.inquiry-table-wrapper {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    flex-grow: 1;
}

.table-header-bar {
    padding: 1rem 1.5rem;
    background: hsla(222, 25%, 8%, 0.5);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-search {
    background: var(--bg-main);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    width: 250px;
}

.inquiry-list {
    display: flex;
    flex-direction: column;
    max-height: 500px;
    overflow-y: auto;
}

.inquiry-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 2.5fr 1.2fr 0.8fr;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: var(--transition);
}

.inquiry-row:hover {
    background: var(--bg-surface-hover);
}

.inquiry-field {
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 0.8rem;
}

.inquiry-desc-field {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.inquiry-status-pill {
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
}

.status-new {
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary);
    border: 1px solid hsla(180, 100%, 50%, 0.2);
}

.status-progress {
    background: rgba(271, 91, 65, 0.1);
    color: var(--secondary);
    border: 1px solid hsla(271, 91%, 65%, 0.2);
}

.status-done {
    background: rgba(120, 220, 100, 0.1);
    color: hsl(120, 80%, 40%);
    border: 1px solid hsla(120, 80%, 40%, 0.2);
}

.inquiry-actions-col {
    display: flex;
    gap: 0.5rem;
}

.action-icon-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.action-icon-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.action-icon-btn.btn-delete:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.action-icon-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Empty State */
.inquiry-empty-state {
    padding: 4rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .dash-body {
        grid-template-columns: 1fr;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .inquiry-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .inquiry-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }
    
    .inquiry-row .inquiry-desc-field,
    .inquiry-row .inquiry-field:nth-child(5) {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-surface-opaque);
        border-bottom: 1px solid var(--border);
        padding: 2rem;
        box-shadow: var(--shadow-lg);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
