/* ===== FONTS ===== */
@font-face {
    font-family: 'Vazirmatn';
    src: url('./fonts/Vazirmatn-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('./fonts/Vazirmatn-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('./fonts/Vazirmatn-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('./fonts/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('./fonts/Vazirmatn-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('./fonts/Vazirmatn-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('./fonts/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('./fonts/Vazirmatn-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Vazirmatn';
    src: url('./fonts/Vazirmatn-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET & CORE VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --neon-blue: #00f3ff;
    --neon-purple: #bc13fe;
    --neon-pink: #ff007f;
    --neon-yellow: #fdf500;
    --neon-green: #39ff14;
    --neon-orange: #ff7300;
    --dark-bg: #03040c;
    --card-bg: rgba(10, 10, 25, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(188, 19, 254, 0.4) rgba(255, 255, 255, 0.03);
}

body {
    font-family: 'Vazirmatn', system-ui, Tahoma, sans-serif;
    background: var(--dark-bg);
    color: #e2e8f0;
    overflow-x: hidden;
    line-height: 1.8;
    min-height: 100vh;
    direction: rtl;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(188, 19, 254, 0.4);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-purple);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===== 3D LOADING SCREEN ===== */
#loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #010105;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    perspective: 1000px;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* 3D Infinity Rings */
.cube-wrap {
    width: 150px;
    height: 150px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 6s infinite linear;
    margin-bottom: 50px;
}

.ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    box-shadow: 0 0 20px var(--neon-blue), inset 0 0 20px var(--neon-purple);
}

.ring:nth-child(1) {
    transform: rotateY(0deg);
    border-left-color: var(--neon-blue);
    border-right-color: var(--neon-purple);
}

.ring:nth-child(2) {
    transform: rotateY(60deg);
    border-left-color: var(--neon-pink);
    border-right-color: var(--neon-yellow);
}

.ring:nth-child(3) {
    transform: rotateY(120deg);
    border-left-color: var(--neon-green);
    border-right-color: var(--neon-blue);
}

.ring:nth-child(4) {
    transform: rotateX(90deg);
    border-left-color: var(--neon-purple);
    border-right-color: var(--neon-pink);
}

@keyframes rotate3d {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

.ld-title {
    font-size: 2.8rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(188, 19, 254, 0.4));
    animation: textGlow 2s infinite alternate;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.progress-bar {
    width: 220px;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    box-shadow: 0 0 15px var(--neon-purple);
    animation: loadFill 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(188, 19, 254, 0.5));
    }

    100% {
        filter: drop-shadow(0 0 25px rgba(0, 243, 255, 0.8));
    }
}

/* ===== BACKGROUND AWESOMENESS ===== */
.neon-grid {
    position: fixed;
    inset: -50%;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(rgba(0, 243, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(188, 19, 254, 0.08) 1px, transparent 1px);
    background-size: 90px 90px;
    transform: perspective(600px) rotateX(60deg) scale(2.5) translateY(-50px);
    transform-origin: center bottom;
    animation: gridMove 12s linear infinite;
    mask-image: linear-gradient(to top, white, transparent 70%);
    -webkit-mask-image: linear-gradient(to top, white, transparent 70%);
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 90px;
    }
}

/* ===== NIGHT SKY (STARS) ===== */
.night-sky {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
}

.star-blink-1 {
    animation: starBlink 3s infinite alternate;
}

.star-blink-2 {
    animation: starBlink 4s infinite alternate-reverse;
    animation-delay: 1s;
}

.star-blink-3 {
    animation: starBlink 5s infinite alternate;
    animation-delay: 2s;
}

@keyframes starBlink {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* ===== 3D SKYLINE ===== */
.city-wrap {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    min-width: 1200px;
    height: 350px;
    z-index: -1;
    pointer-events: none;
}

.city-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.city-back {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
    animation: parallaxSlow 60s linear infinite alternate;
}

.city-mid {
    filter: drop-shadow(0 -10px 15px rgba(0, 243, 255, 0.1));
    animation: parallaxMedium 45s linear infinite alternate;
}

.city-front {
    filter: drop-shadow(0 -15px 30px rgba(188, 19, 254, 0.15));
    animation: parallaxFast 30s linear infinite alternate;
}

@keyframes parallaxSlow {
    0% {
        transform: scale(1.05) translateX(2%);
    }

    100% {
        transform: scale(1.05) translateX(-2%);
    }
}

@keyframes parallaxMedium {
    0% {
        transform: scale(1.05) translateX(3%);
    }

    100% {
        transform: scale(1.05) translateX(-3%);
    }
}

@keyframes parallaxFast {
    0% {
        transform: scale(1.05) translateX(5%);
    }

    100% {
        transform: scale(1.05) translateX(-5%);
    }
}

/* Window blink animations */
.wd-blink-1 {
    animation: windowBlink1 4s infinite alternate;
}

.wd-blink-2 {
    animation: windowBlink2 7s infinite;
}

.wd-blink-3 {
    animation: windowBlink3 5s infinite alternate-reverse;
}

@keyframes windowBlink1 {

    0%,
    40% {
        opacity: 1;
    }

    50% {
        opacity: 0.1;
    }

    60%,
    100% {
        opacity: 1;
    }
}

@keyframes windowBlink2 {

    0%,
    90% {
        opacity: 1;
    }

    92% {
        opacity: 0.1;
    }

    94% {
        opacity: 1;
    }

    96% {
        opacity: 0.1;
    }

    98%,
    100% {
        opacity: 1;
    }
}

@keyframes windowBlink3 {

    0%,
    20% {
        opacity: 0.8;
    }

    40%,
    60% {
        opacity: 0.1;
    }

    80%,
    100% {
        opacity: 0.9;
    }
}

.aurora {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at 70% 10%, rgba(188, 19, 254, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 20% 60%, rgba(0, 243, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 127, 0.1) 0%, transparent 60%);
    filter: blur(60px);
    animation: auroraFlow 10s infinite alternate;
}

@keyframes auroraFlow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-20px, 20px);
    }
}

/* ===== NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

header.glass {
    background: rgba(4, 5, 15, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 243, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.6), inset 0 0 12px rgba(255, 255, 255, 0.5);
    animation: iconFloat 4s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 700;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 12px var(--neon-blue);
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== MAIN WRAPPER & SECTIONS ===== */
.wrap {
    position: relative;
    z-index: 10;
}

section {
    padding: 140px 20px 80px;
    max-width: 1300px;
    margin: 0 auto;
}

/* ===== HERO SECTION ===== */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-badge {
    padding: 12px 30px;
    border-radius: 50px;
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.4);
    color: var(--neon-blue);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.15);
    backdrop-filter: blur(10px);
    animation: badgeFloat 3s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(188, 19, 254, 0.5));
    animation: neonPulseTitle 3s infinite alternate;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-bottom: 50px;
    line-height: 1.9;
    font-weight: 400;
}

.btn-group {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    color: #fff;
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.3);
    animation: btnGlow 3s infinite alternate;
}

@keyframes btnGlow {
    0% {
        box-shadow: 0 0 30px rgba(188, 19, 254, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 50px rgba(0, 243, 255, 0.8), inset 0 0 25px rgba(255, 255, 255, 0.5);
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 150%;
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 127, 0.08);
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.4);
    transform: translateY(-4px);
}

.btn-secondary:active {
    transform: scale(0.95);
}

/* ===== SECTION HEADERS ===== */
.sec-header {
    text-align: center;
    margin-bottom: 70px;
}

.sec-subtitle {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon-blue);
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.2);
    text-shadow: 0 0 12px rgba(0, 243, 255, 0.5);
}

.sec-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* ===== SERVICES GRID ===== */
.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

.grid-container>div {
    flex: 1 1 320px;
    max-width: 400px;
    width: 100%;
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Fancy border tech using masks */
.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: 0.5s;
    opacity: 0.5;
}

.glass-card:hover {
    transform: translateY(-12px);
    background: rgba(20, 20, 40, 0.7);
}

.glass-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), transparent);
}

/* Specific Service Hovers */
.srv-card:nth-child(1):hover {
    box-shadow: 0 25px 50px rgba(255, 0, 127, 0.2);
    border-color: rgba(255, 0, 127, 0.4);
}

.srv-card:nth-child(2):hover {
    box-shadow: 0 25px 50px rgba(57, 255, 20, 0.2);
    border-color: rgba(57, 255, 20, 0.4);
}

.srv-card:nth-child(3):hover {
    box-shadow: 0 25px 50px rgba(253, 245, 0, 0.2);
    border-color: rgba(253, 245, 0, 0.4);
}

.srv-card:nth-child(4):hover {
    box-shadow: 0 25px 50px rgba(188, 19, 254, 0.2);
    border-color: rgba(188, 19, 254, 0.4);
}

.srv-card:nth-child(5):hover {
    box-shadow: 0 25px 50px rgba(0, 243, 255, 0.2);
    border-color: rgba(0, 243, 255, 0.4);
}

.card-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.srv-card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.srv-card:nth-child(1) .card-icon {
    background: rgba(255, 0, 127, 0.15);
    color: var(--neon-pink);
    box-shadow: inset 0 0 20px rgba(255, 0, 127, 0.3), 0 0 25px rgba(255, 0, 127, 0.4);
}

.srv-card:nth-child(2) .card-icon {
    background: rgba(57, 255, 20, 0.15);
    color: var(--neon-green);
    box-shadow: inset 0 0 20px rgba(57, 255, 20, 0.3), 0 0 25px rgba(57, 255, 20, 0.4);
}

.srv-card:nth-child(3) .card-icon {
    background: rgba(253, 245, 0, 0.15);
    color: var(--neon-yellow);
    box-shadow: inset 0 0 20px rgba(253, 245, 0, 0.3), 0 0 25px rgba(253, 245, 0, 0.4);
}

.srv-card:nth-child(4) .card-icon {
    background: rgba(188, 19, 254, 0.15);
    color: var(--neon-purple);
    box-shadow: inset 0 0 20px rgba(188, 19, 254, 0.3), 0 0 25px rgba(188, 19, 254, 0.4);
}

.srv-card:nth-child(5) .card-icon {
    background: rgba(0, 243, 255, 0.15);
    color: var(--neon-blue);
    box-shadow: inset 0 0 20px rgba(0, 243, 255, 0.3), 0 0 25px rgba(0, 243, 255, 0.4);
}

.glass-card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.5px;
}

.glass-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 25px;
    line-height: 1.8;
}

.card-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
}

.card-list li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
    transition: transform 0.3s;
}

.srv-card:hover .card-list li::before {
    transform: scale(1.5);
}

.srv-card:nth-child(1) .card-list li::before {
    color: var(--neon-pink);
}

.srv-card:nth-child(2) .card-list li::before {
    color: var(--neon-green);
}

.srv-card:nth-child(3) .card-list li::before {
    color: var(--neon-yellow);
}

.srv-card:nth-child(4) .card-list li::before {
    color: var(--neon-purple);
}

.srv-card:nth-child(5) .card-list li::before {
    color: var(--neon-blue);
}

/* ===== FREQUENT SERVICES ====== */
.frequent-services-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.svc-tag {
    background: rgba(20, 20, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    display: flex;
    align-items: center;
    gap: 12px;
}

.svc-tag:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
    transition: 0.3s;
}

.d-pink {
    color: var(--neon-pink);
}

.d-blue {
    color: var(--neon-blue);
}

.d-green {
    color: var(--neon-green);
}

.d-yellow {
    color: var(--neon-yellow);
}

.d-purple {
    color: var(--neon-purple);
}

.svc-tag:hover .dot {
    transform: scale(2);
    box-shadow: 0 0 15px currentColor, 0 0 30px currentColor;
}



/* ===== PRICING ====== */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.price-val {
    font-size: 1.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.3));
}

/* ===== CONTACT ===== */
.contact-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.ct-item {
    text-align: center;
    padding: 35px;
    border-radius: 20px;
    transition: background 0.3s, transform 0.3s;
}

.ct-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
}

.ct-item h4 {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin: 20px 0 8px;
}

.ct-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
}

.ct-val {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    direction: ltr;
    display: inline-block;
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.social-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.social-tags span {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 25px;
    background: rgba(188, 19, 254, 0.15);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(188, 19, 254, 0.3);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}

.social-tags span:hover {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 20px var(--neon-purple);
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
footer {
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.5);
    margin-top: 100px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.foot-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
}

.foot-brand .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
}

footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-bottom: 12px;
}

footer a {
    color: var(--neon-blue);
    font-weight: 700;
}

footer a:hover {
    text-shadow: 0 0 15px var(--neon-blue);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.del-1 {
    transition-delay: 0.1s;
}

.del-2 {
    transition-delay: 0.2s;
}

.del-3 {
    transition-delay: 0.3s;
}

.del-4 {
    transition-delay: 0.4s;
}

.del-5 {
    transition-delay: 0.5s;
}



/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 900px) {
    .glass-card {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .ct-item {
        border: none !important;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1) !important;
        border-radius: 0;
    }

    .ct-item:last-child {
        border-bottom: none !important;
    }
}

@media (max-width: 600px) {
    .city-wrap {
        height: 250px;
        min-width: 1000px;
    }

    header {
        padding: 15px 20px;
    }

    header.glass {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 110px 15px 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .grid-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .svc-tag {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 15px;
        left: 15px;
        right: 15px;
        background: rgba(10, 10, 25, 0.85);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        z-index: 10000;
        justify-content: space-around;
        padding: 12px 5px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 243, 255, 0.1);
    }

    .mobile-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 700;
    }

    .mobile-nav a svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
    }

    .mobile-nav a:hover,
    .mobile-nav a:active {
        color: var(--neon-blue);
        filter: drop-shadow(0 0 10px var(--neon-blue));
    }

    body {
        padding-bottom: 80px;
    }
}