:root {
--bg:         #080c10;
--bg2:        #0e1318;
--bg3:        #131a22;
--accent:     #00d4ff;
--accent2:    #ff6b35;
--text:       #e8edf2;
--text-muted: #7a8a9a;
--border:     rgba(0,212,255,0.15);
--glass:      rgba(14,19,24,0.85);
--radius:     12px;
--font-display: 'Syne', sans-serif;
--font-mono:    'Space Mono', monospace;
--font-body:    'Inter', sans-serif;
--shadow:     0 8px 40px rgba(0,0,0,0.5);
--glow:       0 0 30px rgba(0,212,255,0.2);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--font-body);
font-size: 16px;
line-height: 1.7;
overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 0;
opacity: 0.4;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; position: relative; }
.section-tag {
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 4px;
color: var(--accent);
text-transform: uppercase;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 10px;
}
.section-tag::before {
content: '';
width: 30px;
height: 1px;
background: var(--accent);
}
.section-title {
font-family: var(--font-display);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
line-height: 1.15;
color: var(--text);
}
.section-title span { color: var(--accent); }
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 28px;
border-radius: 6px;
font-family: var(--font-mono);
font-size: 13px;
letter-spacing: 1px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
border: none;
}
.btn-primary {
background: var(--accent);
color: #000;
}
.btn-primary:hover {
background: #fff;
color: #000;
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0,212,255,0.3);
}
.btn-outline {
background: transparent;
color: var(--text);
border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
border-color: var(--accent);
color: var(--accent);
transform: translateY(-2px);
}
.btn-accent2 {
background: var(--accent2);
color: #fff;
}
.btn-accent2:hover {
background: #ff8555;
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(255,107,53,0.3);
}
#scrollProgress {
position: fixed;
top: 0; left: 0;
height: 3px;
width: 0%;
background: linear-gradient(90deg, var(--accent), var(--accent2));
z-index: 2000;
transition: width 0.1s linear;
}
#navbar {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 1000;
padding: 18px 0;
transition: all 0.4s ease;
}
#navbar.scrolled {
background: rgba(8,12,16,0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
padding: 12px 0;
box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}
.nav-brand {
display: flex;
align-items: center;
gap: 16px;
min-width: 0;
flex-shrink: 0;
}
.nav-logo-img {
width: 46px;
height: 46px;
border-radius: 12px;
object-fit: cover;
border: 1px solid var(--border);
background: var(--bg3);
flex-shrink: 0;
}
.brand-text {
display: flex;
flex-direction: column;
line-height: 1;
white-space: nowrap;
}
.btc-big {
font-family: var(--font-display);
font-size: 30px;
font-weight: 800;
letter-spacing: 1px;
background: linear-gradient(135deg, var(--text) 30%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.btc-full {
font-family: var(--font-mono);
font-size: 10px;
font-weight: 700;
letter-spacing: 3px;
color: var(--text-muted);
text-transform: uppercase;
margin-top: 5px;
}
.nav-links {
display: flex;
align-items: center;
gap: 34px;
list-style: none;
}
.nav-links a {
font-family: var(--font-mono);
font-size: 12px;
letter-spacing: 1.5px;
color: var(--text-muted);
text-transform: uppercase;
transition: color 0.3s;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -4px; left: 0;
width: 0; height: 1px;
background: var(--accent);
transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.lang-switch {
display: flex;
align-items: center;
gap: 6px;
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 1px;
color: var(--text-muted);
}
.lang-switch a { color: var(--text-muted); transition: color 0.2s; }
.lang-switch a.active { color: var(--accent); font-weight: 700; }
.lang-switch a:hover { color: var(--accent); }
.lang-switch span { color: rgba(122,138,154,0.4); }
.nav-cta { padding: 10px 22px; font-size: 12px; }
.nav-contact-wrap { position: relative; display: none; }
.nav-contact-btn {
display: flex;
align-items: center;
gap: 7px;
padding: 9px 16px;
border-radius: 100px;
background: var(--accent);
color: #000;
border: none;
font-family: var(--font-mono);
font-size: 11px;
font-weight: 700;
letter-spacing: 0.5px;
cursor: pointer;
white-space: nowrap;
}
.nav-contact-menu {
position: absolute;
top: calc(100% + 12px);
right: 0;
background: var(--bg2);
border: 1px solid var(--border);
border-radius: 10px;
padding: 8px;
min-width: 210px;
box-shadow: var(--shadow);
opacity: 0;
visibility: hidden;
transform: translateY(-8px);
transition: all 0.25s ease;
z-index: 1100;
}
.nav-contact-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-contact-menu a {
display: flex;
align-items: center;
gap: 10px;
padding: 11px 12px;
border-radius: 6px;
color: var(--text);
font-size: 13px;
}
.nav-contact-menu a i { color: var(--accent); width: 16px; text-align: center; }
.nav-contact-menu a:hover { background: rgba(0,212,255,0.08); color: var(--accent); }
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 4px;
background: none;
border: none;
}
.hamburger span {
display: block;
width: 24px; height: 2px;
background: var(--text);
transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding: 120px 0 80px;
}
.hero-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
background-size: 60px 60px;
mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-glow {
position: absolute;
top: 20%;  left: 10%;
width: 600px; height: 600px;
background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
pointer-events: none;
transition: transform 0.3s ease-out;
}
.hero-glow2 {
position: absolute;
bottom: 10%; right: 5%;
width: 400px; height: 400px;
background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
pointer-events: none;
transition: transform 0.3s ease-out;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 760px;
}
.hero-tag {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(0,212,255,0.08);
border: 1px solid var(--border);
padding: 8px 16px;
border-radius: 100px;
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 2px;
color: var(--accent);
margin-bottom: 28px;
opacity: 0;
animation: fadeUp 0.6s 0.2s forwards;
}
.hero-tag::before {
content: '';
width: 6px; height: 6px;
background: var(--accent);
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50%       { opacity: 0.5; transform: scale(1.5); }
}
.hero-hi {
font-family: var(--font-mono);
font-size: 16px;
color: var(--text-muted);
margin-bottom: 8px;
opacity: 0;
animation: fadeUp 0.6s 0.4s forwards;
}
.hero-name {
font-family: var(--font-display);
font-size: clamp(2.8rem, 6vw, 5rem);
font-weight: 800;
line-height: 1.05;
letter-spacing: -2px;
background: linear-gradient(135deg, var(--text) 40%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 12px;
opacity: 0;
animation: fadeUp 0.6s 0.5s forwards;
}
.hero-subtitle {
font-family: var(--font-mono);
font-size: clamp(13px, 2vw, 16px);
color: var(--accent2);
letter-spacing: 1px;
margin-bottom: 24px;
opacity: 0;
animation: fadeUp 0.6s 0.6s forwards;
}
.hero-desc {
font-size: 17px;
color: var(--text-muted);
line-height: 1.8;
max-width: 580px;
margin-bottom: 32px;
opacity: 0;
animation: fadeUp 0.6s 0.7s forwards;
}
.hero-btns {
display: flex;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 40px;
opacity: 0;
animation: fadeUp 0.6s 0.8s forwards;
}
.hero-stats {
display: flex;
gap: 48px;
flex-wrap: wrap;
opacity: 0;
animation: fadeUp 0.6s 0.9s forwards;
}
.stat-item {
position: relative;
}
.stat-item::after {
content: '';
position: absolute;
right: -24px; top: 50%;
transform: translateY(-50%);
width: 1px; height: 40px;
background: var(--border);
}
.stat-item:last-child::after { display: none; }
.stat-num {
font-family: var(--font-display);
font-size: 2.2rem;
font-weight: 800;
color: var(--accent);
line-height: 1;
}
.stat-label {
font-family: var(--font-mono);
font-size: 11px;
color: var(--text-muted);
letter-spacing: 1px;
margin-top: 4px;
}
.service-area-strip {
display: flex;
align-items: center;
gap: 10px;
margin-top: 32px;
padding: 12px 18px;
background: rgba(0,212,255,0.05);
border: 1px solid var(--border);
border-radius: 100px;
font-family: var(--font-mono);
font-size: 11px;
color: var(--text-muted);
letter-spacing: 0.5px;
max-width: fit-content;
opacity: 0;
animation: fadeUp 0.6s 1s forwards;
}
.service-area-strip i { color: var(--accent); }
.service-area-strip strong { color: var(--text); font-weight: 600; }
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to   { opacity: 1; transform: translateY(0); }
}
.scroll-indicator {
position: absolute;
bottom: 40px; left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
opacity: 0;
animation: fadeUp 0.6s 1.2s forwards;
}
.scroll-indicator span {
font-family: var(--font-mono);
font-size: 10px;
color: var(--text-muted);
letter-spacing: 2px;
}
.scroll-arrow {
width: 20px; height: 30px;
border: 1px solid var(--border);
border-radius: 10px;
position: relative;
}
.scroll-arrow::after {
content: '';
position: absolute;
top: 6px; left: 50%;
transform: translateX(-50%);
width: 3px; height: 8px;
background: var(--accent);
border-radius: 2px;
animation: scrollBob 1.5s infinite;
}
@keyframes scrollBob {
0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
100%      { transform: translateX(-50%) translateY(10px); opacity: 0; }
}
#about { background: var(--bg2); }
.about-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.about-text p {
color: var(--text-muted);
margin-top: 20px;
font-size: 16px;
line-height: 1.9;
}
.about-visual {
position: relative;
}
.about-card-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-top: 0;
}
.feature-card {
background: var(--bg3);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 24px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.feature-card::before {
content: '';
position: absolute;
top: 0; left: 0;
right: 0; height: 2px;
background: linear-gradient(90deg, var(--accent), transparent);
opacity: 0;
transition: opacity 0.3s;
}
.feature-card:hover {
border-color: rgba(0,212,255,0.3);
transform: translateY(-4px);
box-shadow: var(--glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
font-size: 24px;
color: var(--accent);
margin-bottom: 12px;
}
.feature-card h4 {
font-family: var(--font-display);
font-size: 15px;
font-weight: 700;
color: var(--text);
margin-bottom: 6px;
}
.feature-card p {
font-size: 13px;
color: var(--text-muted);
line-height: 1.6;
}
#services { background: var(--bg); }
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: 24px;
margin-top: 56px;
}
.service-card {
background: var(--bg2);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 36px 32px;
transition: all 0.35s ease;
position: relative;
overflow: hidden;
}
.service-card::after {
content: '';
position: absolute;
bottom: 0; left: 0;
width: 0; height: 2px;
background: var(--accent);
transition: width 0.4s ease;
}
.service-card:hover {
border-color: rgba(0,212,255,0.3);
transform: translateY(-6px);
box-shadow: var(--shadow), var(--glow);
}
.service-card:hover::after { width: 100%; }
.service-num {
font-family: var(--font-mono);
font-size: 11px;
color: rgba(0,212,255,0.4);
letter-spacing: 2px;
margin-bottom: 20px;
}
.service-icon {
width: 52px; height: 52px;
background: rgba(0,212,255,0.08);
border: 1px solid var(--border);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
color: var(--accent);
margin-bottom: 20px;
transition: all 0.3s;
}
.service-card:hover .service-icon {
background: var(--accent);
color: #000;
border-color: var(--accent);
}
.service-card h3 {
font-family: var(--font-display);
font-size: 19px;
font-weight: 700;
color: var(--text);
margin-bottom: 12px;
}
.service-card h3 a { color: inherit; }
.service-card p {
color: var(--text-muted);
font-size: 14px;
line-height: 1.8;
margin-bottom: 28px;
}
.service-card .card-links { display: flex; gap: 10px; flex-wrap: wrap; }
#portfolio { background: var(--bg2); }
.portfolio-filters {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin-top: 40px;
margin-bottom: 48px;
}
.filter-btn {
padding: 9px 20px;
border-radius: 100px;
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 1px;
cursor: pointer;
background: transparent;
border: 1px solid var(--border);
color: var(--text-muted);
transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
background: var(--accent);
border-color: var(--accent);
color: #000;
}
.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: 24px;
}
.project-card {
background: var(--bg3);
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
transition: all 0.35s ease;
position: relative;
}
.project-card:hover {
border-color: rgba(0,212,255,0.3);
transform: translateY(-6px);
box-shadow: var(--shadow);
}
.project-img {
height: 200px;
background: linear-gradient(135deg, var(--bg3) 0%, rgba(0,212,255,0.05) 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 48px;
color: rgba(0,212,255,0.2);
overflow: hidden;
position: relative;
}
.project-img img {
width: 100%; height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.project-card:hover .project-img img { transform: scale(1.06); }
.project-category {
position: absolute;
top: 14px; left: 14px;
background: rgba(0,212,255,0.15);
backdrop-filter: blur(10px);
border: 1px solid var(--border);
padding: 5px 12px;
border-radius: 100px;
font-family: var(--font-mono);
font-size: 10px;
letter-spacing: 1px;
color: var(--accent);
}
.project-body { padding: 24px; }
.project-body h3 {
font-family: var(--font-display);
font-size: 18px;
font-weight: 700;
color: var(--text);
margin-bottom: 10px;
}
.project-body h3 a { color: inherit; }
.project-body p {
font-size: 13px;
color: var(--text-muted);
line-height: 1.7;
margin-bottom: 16px;
}
.project-tech {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-bottom: 20px;
}
.tech-tag {
padding: 3px 10px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 4px;
font-family: var(--font-mono);
font-size: 10px;
color: var(--text-muted);
}
.project-actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.project-actions .btn {
padding: 10px 18px;
font-size: 11px;
}
#contact { background: var(--bg); }
.contact-layout {
display: grid;
grid-template-columns: 1fr 1.4fr;
gap: 80px;
margin-top: 56px;
align-items: start;
}
.contact-info h3 {
font-family: var(--font-display);
font-size: 1.4rem;
font-weight: 700;
color: var(--text);
margin-bottom: 12px;
}
.contact-info p {
color: var(--text-muted);
font-size: 15px;
line-height: 1.8;
margin-bottom: 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
display: flex;
align-items: center;
gap: 16px;
padding: 18px 20px;
background: var(--bg2);
border: 1px solid var(--border);
border-radius: var(--radius);
transition: all 0.3s;
}
.contact-item:hover {
border-color: rgba(0,212,255,0.3);
box-shadow: var(--glow);
}
.ci-icon {
width: 44px; height: 44px;
background: rgba(0,212,255,0.08);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
color: var(--accent);
flex-shrink: 0;
}
.ci-text span {
display: block;
font-family: var(--font-mono);
font-size: 10px;
color: var(--text-muted);
letter-spacing: 1px;
margin-bottom: 3px;
}
.ci-text strong {
font-size: 14px;
color: var(--text);
font-weight: 500;
}
.contact-form {
background: var(--bg2);
border: 1px solid var(--border);
border-radius: 16px;
padding: 40px;
}
.contact-form h3 {
font-family: var(--font-display);
font-size: 1.3rem;
font-weight: 700;
color: var(--text);
margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
display: block;
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 1.5px;
color: var(--text-muted);
margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
width: 100%;
background: var(--bg3);
border: 1px solid var(--border);
border-radius: 8px;
padding: 14px 16px;
font-family: var(--font-body);
font-size: 15px;
color: var(--text);
outline: none;
transition: border-color 0.3s, box-shadow 0.3s;
resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
border-color: var(--accent);
box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.form-group textarea { height: 130px; }
.form-msg {
padding: 12px 16px;
border-radius: 8px;
font-size: 14px;
margin-top: 16px;
display: none;
}
.form-msg.success { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3); color: var(--accent); }
.form-msg.error   { background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.3); color: #ff5050; }
footer {
background: var(--bg2);
border-top: 1px solid var(--border);
padding: 64px 0 32px;
position: relative;
z-index: 1;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 60px;
padding-bottom: 48px;
border-bottom: 1px solid var(--border);
margin-bottom: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .nav-brand { margin-bottom: 4px; }
.footer-brand p {
color: var(--text-muted);
font-size: 14px;
line-height: 1.9;
max-width: 320px;
}
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
width: 36px; height: 36px;
border-radius: 8px;
background: var(--bg3);
border: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-muted);
transition: all 0.25s;
}
.footer-social a:hover { color: var(--accent); border-color: rgba(0,212,255,0.3); transform: translateY(-2px); }
.footer-col h4 {
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 2px;
color: var(--text-muted);
text-transform: uppercase;
margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
font-size: 14px;
color: var(--text-muted);
transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-col p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.footer-bottom {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}
.footer-bottom p {
font-family: var(--font-mono);
font-size: 12px;
color: var(--text-muted);
}
.footer-bottom span { color: var(--accent); }
.whatsapp-float {
position: fixed;
bottom: 32px; right: 32px;
z-index: 999;
width: 58px; height: 58px;
background: #25d366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 26px;
color: #fff;
box-shadow: 0 6px 24px rgba(37,211,102,0.4);
transition: all 0.3s;
animation: floatBob 3s ease-in-out infinite;
}
.whatsapp-float:hover {
transform: scale(1.1);
box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
@keyframes floatBob {
0%, 100% { transform: translateY(0); }
50%       { transform: translateY(-6px); }
}
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-left.visible,
.reveal-right.visible { transform: translateX(0); }
.reveal-scale { transform: scale(0.94); }
.reveal-scale.visible { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
.reveal, .reveal-left, .reveal-right, .reveal-scale,
.hero-tag, .hero-hi, .hero-name, .hero-subtitle, .hero-desc,
.hero-btns, .hero-stats, .service-area-strip, .scroll-indicator,
.login-box {
opacity: 1 !important;
transform: none !important;
animation: none !important;
}
.whatsapp-float, .scroll-arrow::after, .hero-tag::before { animation: none !important; }
* { transition-duration: 0.001ms !important; }
}
.divider {
width: 60px; height: 3px;
background: linear-gradient(90deg, var(--accent), transparent);
margin: 20px 0 40px;
border-radius: 2px;
}
.breadcrumb-bar {
padding: 130px 0 0;
position: relative;
z-index: 1;
}
.breadcrumb-list {
display: flex;
align-items: center;
gap: 8px;
list-style: none;
flex-wrap: wrap;
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 1px;
color: var(--text-muted);
text-transform: uppercase;
}
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--accent); }
.breadcrumb-list li:not(:last-child)::after { content: '/'; margin-left: 8px; color: rgba(122,138,154,0.4); }
.breadcrumb-list li:last-child { color: var(--accent); }
.page-hero {
padding: 24px 0 70px;
position: relative;
overflow: hidden;
}
.page-hero .hero-grid { opacity: 0.6; }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero-title {
font-family: var(--font-display);
font-size: clamp(2.2rem, 5vw, 3.4rem);
font-weight: 800;
line-height: 1.1;
margin: 14px 0 18px;
}
.page-hero-title span { color: var(--accent); }
.page-hero-desc { color: var(--text-muted); font-size: 16px; line-height: 1.8; max-width: 640px; }
.detail-hero-media {
border-radius: var(--radius);
overflow: hidden;
border: 1px solid var(--border);
margin-bottom: 48px;
background: var(--bg3);
max-height: 460px;
}
.detail-hero-media img { width: 100%; height: 100%; object-fit: cover; max-height: 460px; }
.detail-layout {
display: grid;
grid-template-columns: 1fr 320px;
gap: 56px;
align-items: start;
}
.detail-prose { color: var(--text-muted); font-size: 16px; line-height: 1.95; }
.detail-prose h2, .detail-prose h3 {
font-family: var(--font-display);
color: var(--text);
margin: 32px 0 14px;
line-height: 1.3;
}
.detail-prose h2 { font-size: 1.5rem; }
.detail-prose h3 { font-size: 1.15rem; }
.detail-prose p { margin-bottom: 18px; }
.detail-prose ul, .detail-prose ol { margin: 0 0 18px 22px; }
.detail-prose li { margin-bottom: 8px; }
.detail-prose img { border-radius: var(--radius); margin: 20px 0; }
.detail-sidebar {
background: var(--bg2);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 28px;
position: sticky;
top: 110px;
}
.detail-meta-row { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.detail-meta-item span {
display: block;
font-family: var(--font-mono);
font-size: 10px;
letter-spacing: 1.5px;
color: var(--text-muted);
text-transform: uppercase;
margin-bottom: 5px;
}
.detail-meta-item strong { color: var(--text); font-size: 14px; font-weight: 600; }
.detail-sidebar .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.related-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
margin-top: 24px;
}
.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 24px;
margin-top: 48px;
}
.blog-card {
background: var(--bg3);
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
transition: all 0.35s ease;
display: flex;
flex-direction: column;
}
.blog-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card-img { height: 190px; background: linear-gradient(135deg, var(--bg3) 0%, rgba(0,212,255,0.05) 100%); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
font-family: var(--font-mono);
font-size: 10px;
letter-spacing: 1px;
color: var(--text-muted);
text-transform: uppercase;
margin-bottom: 12px;
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.blog-card-meta .cat { color: var(--accent); }
.blog-card-body h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.blog-card-body h3 a { color: var(--text); }
.blog-card-body p { color: var(--text-muted); font-size: 13px; line-height: 1.7; margin-bottom: 18px; flex: 1; }
.blog-article-header { max-width: 760px; margin: 0 auto 40px; text-align: left; }
.blog-article-meta {
display: flex;
gap: 16px;
flex-wrap: wrap;
font-family: var(--font-mono);
font-size: 11px;
letter-spacing: 1px;
color: var(--text-muted);
text-transform: uppercase;
margin: 18px 0 24px;
}
.blog-article-meta .cat { color: var(--accent); }
.blog-article-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 40px; border: 1px solid var(--border); }
.blog-article-body { max-width: 760px; margin: 0 auto; color: var(--text-muted); font-size: 17px; line-height: 2; }
.blog-article-body h2, .blog-article-body h3 { font-family: var(--font-display); color: var(--text); margin: 36px 0 16px; }
.blog-article-body p { margin-bottom: 20px; }
.blog-article-body img { border-radius: var(--radius); margin: 24px 0; }
.blog-share {
max-width: 760px;
margin: 40px auto 0;
padding-top: 28px;
border-top: 1px solid var(--border);
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
}
.blog-share span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; }
.blog-share a {
width: 38px; height: 38px;
border-radius: 8px;
background: var(--bg2);
border: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-muted);
}
.blog-share a:hover { color: var(--accent); border-color: rgba(0,212,255,0.3); }
.pagination { display: flex; justify-content: space-between; gap: 16px; margin-top: 56px; flex-wrap: wrap; }
.pagination a, .pagination span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 1px; }
.pagination a { color: var(--accent); }
.pagination .disabled { color: rgba(122,138,154,0.4); pointer-events: none; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state i { font-size: 40px; color: var(--accent); margin-bottom: 16px; display: block; }
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 140px 24px 80px;
position: relative;
overflow: hidden;
}
.error-code {
font-family: var(--font-display);
font-size: clamp(5rem, 18vw, 11rem);
font-weight: 800;
line-height: 1;
background: linear-gradient(135deg, var(--text) 30%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.error-page h1 { font-family: var(--font-display); font-size: 1.8rem; margin: 16px 0 12px; }
.error-page p { color: var(--text-muted); max-width: 460px; margin: 0 auto 32px; }
@media (max-width: 768px) {
.brand-text { display: none; }
.nav-logo-img { width: 40px; height: 40px; }
.lang-switch { display: none; }
.hamburger { display: flex; }
.nav-contact-wrap { display: block; }
.nav-links {
position: fixed;
top: 0; right: -100%;
width: 75vw;
height: 100vh;
background: var(--bg2);
flex-direction: column;
justify-content: center;
gap: 32px;
padding: 40px;
transition: right 0.4s ease;
border-left: 1px solid var(--border);
}
.nav-links.open { right: 0; }
.nav-links a { font-size: 15px; letter-spacing: 2px; }
.nav-cta { display: none; }
.about-layout    { grid-template-columns: 1fr; gap: 40px; }
.contact-layout  { grid-template-columns: 1fr; gap: 40px; }
.footer-grid     { grid-template-columns: 1fr; gap: 40px; }
.hero-stats      { gap: 28px; }
.stat-item::after { display: none; }
.services-grid   { grid-template-columns: 1fr; }
.portfolio-grid  { grid-template-columns: 1fr; }
.about-card-grid { grid-template-columns: 1fr; }
.contact-form    { padding: 24px; }
.detail-layout   { grid-template-columns: 1fr; }
.detail-sidebar  { position: static; }
.breadcrumb-bar  { padding-top: 108px; }
}
@keyframes morphing {
0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}
@media (max-width: 768px) {
.hero-wrapper {
flex-direction: column-reverse !important;
text-align: center;
}
.hero-content {
text-align: center;
}
.hero-btns {
justify-content: center;
}
.hero-stats {
justify-content: center;
}
.service-area-strip {
margin-left: auto;
margin-right: auto;
}
.hero-image {
margin-bottom: 40px;
}
}
