/* 
   Development Page Stylesheet - Premium High-Tech Design 
   Biazotto Solutions v2 
*/

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

:root {
    --dev-primary: #2bb0ef;
    --dev-primary-glow: rgba(43, 176, 239, 0.15);
    --dev-accent: #007bb5;
    --dev-accent-glow: rgba(0, 123, 181, 0.15);
    --dev-dark-bg: #0b132b;
    --dev-dark-card: #1c2541;
    --dev-dark-card-border: rgba(43, 176, 239, 0.25);
    --dev-text-light: #f8fafc;
    --dev-text-muted: #94a3b8;
    --dev-gradient-text: linear-gradient(135deg, #ffffff 0%, #a5d8ff 100%);
    --dev-gradient-accent: linear-gradient(135deg, #2bb0ef 0%, #007bb5 100%);
}

/* Base resets & Fonts */
.dev-page {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    overflow-x: hidden;
}

.dev-page h1, .dev-page h2, .dev-page h3, .dev-page h4, .dev-page h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #0b132b;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 242, 255, 0.1); }
    50% { box-shadow: 0 0 35px rgba(0, 242, 255, 0.25); }
}

@keyframes scan-line {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Hero Section */
.dev-hero {
    position: relative;
    padding: 180px 0 100px;
    background: radial-gradient(circle at 50% 30%, rgba(43, 176, 239, 0.05) 0%, #ffffff 70%);
    border-bottom: 1px solid rgba(51, 65, 85, 0.15);
}

.dev-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 48c-2 0-3 1-3 3 0 2 1 3 3 3s3-1 3-3c0-2-1-3-3-3zm-6-24c-2 0-3 1-3 3 0 2 1 3 3 3s3-1 3-3c0-2-1-3-3-3zM30 0c-2 0-3 1-3 3 0 2 1 3 3 3s3-1 3-3c0-2-1-3-3-3zm0 36c-2 0-3 1-3 3 0 2 1 3 3 3s3-1 3-3c0-2-1-3-3-3zm-6-24c-2 0-3 1-3 3 0 2 1 3 3 3s3-1 3-3c0-2-1-3-3-3zM6 48c-2 0-3 1-3 3 0 2 1 3 3 3s3-1 3-3c0-2-1-3-3-3z' fill='%232bb0ef' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.dev-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43, 176, 239, 0.08);
    border: 1px solid rgba(43, 176, 239, 0.25);
    color: #007bb5;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(43, 176, 239, 0.08);
}

.dev-hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #0b132b 0%, #1c2541 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dev-hero-title span {
    background: var(--dev-gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dev-hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 40px;
}

.dev-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.dev-btn-primary {
    background: var(--dev-gradient-accent);
    color: #0b132b !important;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(43, 176, 239, 0.25);
    border: none;
}

.dev-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(43, 176, 239, 0.4);
}

.dev-btn-secondary {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155 !important;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.dev-btn-secondary:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Floating widgets in Hero */
.dev-hero-visual {
    position: relative;
    max-width: 550px;
    margin: 40px auto 0;
}

.dev-hero-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--dev-dark-card-border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

/* Service Pillars Section */
.dev-services {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.dev-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.dev-section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0b132b;
}

.dev-section-header p {
    font-size: 1.15rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.dev-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.dev-service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 100%, var(--dev-primary-glow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dev-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(43, 176, 239, 0.5);
    box-shadow: 0 20px 40px rgba(43, 176, 239, 0.08);
}

.dev-service-card:hover::after {
    opacity: 1;
}

.dev-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(43, 176, 239, 0.05);
    border: 1px solid rgba(43, 176, 239, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dev-primary);
    font-size: 24px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.dev-service-card:hover .dev-service-icon {
    background: var(--dev-primary);
    color: #ffffff;
    box-shadow: 0 0 15px var(--dev-primary-glow);
}

.dev-service-card h3 {
    font-size: 1.4rem;
    color: #0b132b;
    margin-bottom: 15px;
}

.dev-service-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.dev-service-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dev-service-bullets li {
    font-size: 0.88rem;
    color: #334155;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dev-service-bullets li i {
    color: var(--dev-primary);
    font-size: 0.8rem;
}

/* Interactive Portfolio Showcase Section */
.dev-showcase {
    padding: 100px 0;
    background: var(--dev-dark-bg);
    border-top: 1px solid rgba(51, 65, 85, 0.2);
    border-bottom: 1px solid rgba(51, 65, 85, 0.2);
    color: var(--dev-text-light);
}

.dev-showcase .dev-section-header h2 {
    background: var(--dev-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dev-showcase .dev-section-header p {
    color: var(--dev-text-muted);
}

.dev-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.dev-tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--dev-text-muted);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dev-tab-btn i {
    margin-right: 8px;
}

.dev-tab-btn:hover {
    color: var(--dev-text-light);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.dev-tab-btn.active {
    background: var(--dev-gradient-accent);
    color: #0b132b;
    border: none;
    box-shadow: 0 0 20px var(--dev-primary-glow);
}

.dev-showcase-panel {
    display: none;
}

.dev-showcase-panel.active {
    display: block;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.dev-mockup-browser {
    background: #090d16;
    border: 1px solid var(--dev-dark-card-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.dev-mockup-header {
    background: #0f172a;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.dev-mockup-dots {
    display: flex;
    gap: 8px;
    margin-right: 25px;
}

.dev-mockup-dot {
    width: 10px; height: 10px; border-radius: 50%;
}
.dev-mockup-dot.r { background: #ef4444; }
.dev-mockup-dot.y { background: #f59e0b; }
.dev-mockup-dot.g { background: #10b981; }

.dev-mockup-address {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 4px 15px;
    font-size: 0.8rem;
    color: var(--dev-text-muted);
    flex-grow: 1;
    max-width: 320px;
    text-align: center;
    font-family: monospace;
}

/* Simulated System Elements inside Mockups */
.dev-mockup-body {
    padding: 20px;
    min-height: 380px;
    background: #0f172a;
    color: #e2e8f0;
}

.dev-sys-dashboard {
    display: flex;
    gap: 20px;
    height: 100%;
}

.dev-sys-sidebar {
    width: 25%;
    border-right: 1px solid rgba(51, 65, 85, 0.4);
    padding-right: 15px;
}

.dev-sys-menu-item {
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--dev-text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dev-sys-menu-item.active {
    background: rgba(43, 176, 239, 0.06);
    color: var(--dev-primary);
}

.dev-sys-content {
    flex-grow: 1;
    padding-left: 5px;
}

/* Stats Cards */
.dev-sys-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.dev-sys-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.4);
    border-radius: 10px;
    padding: 15px;
}

.dev-sys-card .title {
    font-size: 0.72rem;
    color: var(--dev-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dev-sys-card .val {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-top: 5px;
}

.dev-sys-card .trend {
    font-size: 0.7rem;
    color: #10b981;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dev-sys-chart-box {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.4);
    border-radius: 10px;
    padding: 20px;
    height: 180px;
}

.dev-sys-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dev-sys-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
    margin-top: 10px;
}

.dev-sys-chart-bar {
    flex-grow: 1;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.dev-sys-chart-bar:hover {
    background: var(--dev-gradient-accent);
}

.dev-sys-chart-bar::before {
    content: attr(data-label);
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--dev-text-muted);
}

/* Moves Video Player Simulation */
.dev-sys-player-wrap {
    display: flex;
    gap: 20px;
    height: 100%;
}

.dev-sys-video {
    width: 65%;
    background: #020617;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.dev-sys-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.dev-sys-play-btn {
    width: 60px; height: 60px;
    background: var(--dev-gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b132b;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(43,176,239,0.4);
    transition: transform 0.2s ease;
}

.dev-sys-play-btn:hover {
    transform: scale(1.1);
}

.dev-sys-video-sidebar {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dev-sys-playlist-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.8rem;
}

.dev-sys-playlist-item.active {
    background: rgba(0,242,255,0.08);
    border-color: var(--dev-primary);
}

.dev-sys-playlist-item img {
    width: 45px; height: 45px;
    object-fit: cover;
    border-radius: 6px;
}

/* Hotspot Wifi Simulation */
.dev-sys-hotspot {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.dev-sys-connections-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.dev-sys-connections-table th {
    text-align: left;
    padding: 8px 12px;
    color: var(--dev-text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dev-sys-connections-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.dev-sys-pulse-green {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10b981;
}

/* Timeline Process Section */
.dev-timeline {
    padding: 100px 0;
    background: #f8fafc;
}

.dev-timeline-row {
    position: relative;
}

.dev-timeline-row::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: rgba(51, 65, 85, 0.4);
    transform: translateX(-50%);
}

.dev-timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.dev-timeline-item:last-child {
    margin-bottom: 0;
}

.dev-timeline-marker {
    position: absolute;
    top: 0; left: 50%;
    width: 40px; height: 40px;
    background: #ffffff;
    border: 2px solid var(--dev-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b132b;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(43, 176, 239, 0.15);
}

.dev-timeline-content {
    width: 45%;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.dev-timeline-item:nth-child(even) .dev-timeline-content {
    margin-left: auto;
}

.dev-timeline-item:nth-child(odd) .dev-timeline-content {
    text-align: right;
}

.dev-timeline-content h3 {
    font-size: 1.3rem;
    color: #007bb5;
    margin-bottom: 10px;
}

.dev-timeline-content p {
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Call to Action Section */
.dev-cta-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 100%, rgba(43, 176, 239, 0.1) 0%, var(--dev-dark-bg) 75%);
    border-top: 1px solid rgba(51, 65, 85, 0.2);
}

.dev-cta-box {
    background: var(--dev-dark-card);
    border: 1px solid rgba(43, 176, 239, 0.15);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.dev-cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--dev-gradient-accent);
}

.dev-cta-box h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.dev-cta-box p {
    font-size: 1.15rem;
    color: var(--dev-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Form Styles */
.dev-briefing-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.dev-form-group {
    margin-bottom: 20px;
}

.dev-form-group label {
    display: block;
    color: var(--dev-text-light);
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dev-input {
    width: 100%;
    background: rgba(11, 19, 43, 0.6);
    border: 1px solid var(--dev-dark-card-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dev-input:focus {
    border-color: var(--dev-primary);
    box-shadow: 0 0 10px var(--dev-primary-glow);
    outline: none;
}

.dev-submit-btn {
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
    justify-content: center;
}

/* Responsiveness adjustments */
@media (max-width: 991px) {
    .dev-hero-title { font-size: 3rem; }
    .dev-timeline-row::before { left: 40px; }
    .dev-timeline-marker { left: 40px; }
    .dev-timeline-content { width: calc(100% - 80px); margin-left: 80px !important; text-align: left !important; }
}

@media (max-width: 767px) {
    .dev-hero-title { font-size: 2.4rem; }
    .dev-hero-btns { flex-direction: column; align-items: stretch; }
    .dev-btn-primary, .dev-btn-secondary { justify-content: center; }
    .dev-sys-dashboard { flex-direction: column; }
    .dev-sys-sidebar { width: 100%; border-right: none; border-bottom: 1px solid rgba(51, 65, 85, 0.4); padding-bottom: 15px; margin-bottom: 15px; }
    .dev-sys-grid { grid-template-columns: 1fr; }
    .dev-sys-player-wrap { flex-direction: column; }
    .dev-sys-video { width: 100%; height: 200px; }
    .dev-sys-video-sidebar { width: 100%; }
    .dev-sys-hotspot { grid-template-columns: 1fr; }
    .dev-cta-box { padding: 40px 20px; }
}
