:root {
    --primary: #0c0121;
    --secondary: #1a1033;
    --accent: #6c47ff;
    --accent-light: #8b6bff;
    --accent-gradient: linear-gradient(135deg, #6c47ff 0%, #a855f7 50%, #ec4899 100%);
    --accent-soft: rgba(108, 71, 255, 0.1);
    --bg: #f8faff;
    --bg-white: #ffffff;
    --text: #0c0121;
    --text-muted: #64748b;
    --border: #e8ecf4;
    --shadow-sm: 0 4px 20px rgba(12, 1, 33, 0.06);
    --shadow-md: 0 10px 40px rgba(12, 1, 33, 0.1);
    --shadow-lg: 0 25px 60px rgba(108, 71, 255, 0.15);
    --radius: 16px;
    --radius-lg: 24px;
    --font: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: clip;
    max-width: 100%;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Preloader */
#preloader {
    position: fixed; inset: 0; background: var(--bg-white);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999; transition: opacity 0.6s ease, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
    width: 48px; height: 48px; border-radius: 50%;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Top Bar */
.top-bar {
    background: var(--accent-gradient);
    color: #fff; font-size: 0.85rem; font-weight: 500;
    padding: 0.6rem 0; position: relative; z-index: 1031;
}
.top-bar a {
    color: #fff; text-decoration: none; font-weight: 600;
    transition: var(--transition);
}
.top-bar a:hover { opacity: 0.85; transform: translateX(3px); }

/* Navbar */
.navbar {
    padding: 1rem 0; transition: var(--transition);
    background: transparent; top: 38px;
    z-index: 1030;
}
.navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.65rem 0;
    top: 0;
}
.brand-text { font-weight: 800; font-size: 1.25rem; color: var(--primary); }

.site-logo {
    display: block; width: auto; object-fit: contain;
}
.site-logo-nav {
    height: 98px; max-width: 180px;
}
.site-logo-footer {
    height: 122px; max-width: 160px; margin: 0 auto 1rem;
    filter: drop-shadow(0 4px 12px rgba(108, 71, 255, 0.15));
}
.footer-logo-link {
    display: inline-block; transition: var(--transition);
}
.footer-logo-link:hover { transform: scale(1.05); }

.navbar-brand {
    font-weight: 800; font-size: 1.25rem;
    color: var(--primary) !important;
    display: flex; align-items: center; gap: 0.6rem;
    flex-shrink: 1;
    min-width: 0;
    max-width: calc(100% - 56px);
}
.brand-icon {
    width: 42px; height: 42px; background: var(--accent-gradient);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; color: #fff; font-size: 1rem;
    box-shadow: 0 4px 15px rgba(108, 71, 255, 0.35);
}
.nav-link {
    color: var(--text-muted) !important; font-weight: 600;
    font-size: 0.95rem; padding: 0.5rem 1.1rem !important;
    transition: var(--transition); border-radius: 8px;
    display: inline-flex; align-items: center; gap: 0.45rem;
}
.nav-link-icon {
    font-size: 0.85rem; opacity: 0.75; width: 1.1em;
    text-align: center; transition: var(--transition);
}
.nav-link:hover .nav-link-icon,
.nav-link.active .nav-link-icon { opacity: 1; color: var(--accent); }
.nav-link:hover, .nav-link.active { color: var(--accent) !important; }
.navbar-toggler {
    border: 1px solid rgba(108, 71, 255, 0.2) !important;
    padding: 10px 8px; width: 44px; height: 40px;
    position: relative; z-index: 1032; flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-sm); border-radius: 10px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.navbar-toggler span {
    display: block; width: 22px; height: 2px; background: var(--primary);
    margin: 3px 0; transition: var(--transition); border-radius: 2px;
}
.nav-cta { border-radius: 50px; padding: 0.6rem 1.5rem !important; font-size: 0.9rem; }
.nav-actions { margin-left: auto; }
.admin-nav-icon {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg); border: 1px solid var(--border);
    color: var(--text-muted); font-size: 1.05rem;
    text-decoration: none; transition: var(--transition);
    flex-shrink: 0;
}
.admin-nav-icon:hover {
    background: var(--accent-gradient); color: #fff;
    border-color: transparent; transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 71, 255, 0.35);
}
.navbar.scrolled .admin-nav-icon { background: var(--bg-white); }

/* Buttons */
.btn-accent {
    background: var(--accent-gradient); color: #fff; border: none;
    font-weight: 700; border-radius: 50px; padding: 0.85rem 2rem;
    transition: var(--transition); box-shadow: 0 8px 25px rgba(108, 71, 255, 0.35);
    position: relative; overflow: hidden;
}
.btn-accent:hover {
    color: #fff; transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(108, 71, 255, 0.45);
}
.btn-outline {
    background: transparent; color: var(--primary);
    border: 2px solid var(--border); font-weight: 700;
    border-radius: 50px; padding: 0.85rem 2rem; transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--accent); color: var(--accent);
    transform: translateY(-3px); box-shadow: var(--shadow-sm);
}
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero */
.iteck-hero {
    position: relative; padding: 8rem 0 5rem;
    background: var(--bg); overflow: hidden; min-height: 100vh;
    display: flex; align-items: center;
}
.hero-shapes .shape {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
    animation: floatShape 8s ease-in-out infinite;
}
.shape-1 { width: 400px; height: 400px; background: rgba(108,71,255,0.2); top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: rgba(236,72,153,0.15); bottom: 0; left: -50px; animation-delay: -3s; }
.shape-3 { width: 200px; height: 200px; background: rgba(168,85,247,0.2); top: 50%; left: 40%; animation-delay: -5s; }
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}
.hero-label {
    display: inline-block; background: var(--accent-soft); color: var(--accent);
    padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem;
    font-weight: 700; margin-bottom: 1.25rem;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800;
    line-height: 1.15; margin-bottom: 1.25rem; color: var(--primary);
    letter-spacing: -0.02em;
}
.hero-desc {
    font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem;
    max-width: 520px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.trust-item strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.trust-item span { font-size: 0.85rem; color: var(--text-muted); }

.hero-visual { position: relative; padding: 2rem; }
.hero-card-main {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); background: var(--bg-white);
    border: 1px solid var(--border);
}
.hero-card-main img { width: 100%; display: block; border-radius: var(--radius-lg); }
.hero-card-float {
    position: absolute; background: var(--bg-white); border-radius: var(--radius);
    padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem;
    box-shadow: var(--shadow-md); border: 1px solid var(--border);
    animation: floatCard 4s ease-in-out infinite;
}
.hero-card-float i {
    width: 44px; height: 44px; background: var(--accent-soft);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; color: var(--accent); font-size: 1.1rem;
}
.hero-card-float strong { display: block; font-size: 0.9rem; color: var(--primary); }
.hero-card-float small { color: var(--text-muted); font-size: 0.75rem; }
.hero-card-1 { top: 10%; right: -5%; animation-delay: 0s; }
.hero-card-2 { bottom: 15%; left: -5%; animation-delay: -2s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.float-animation { animation: floatMain 6s ease-in-out infinite; }
@keyframes floatMain {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Logo Strip */
.logo-strip {
    padding: 2.5rem 0; background: var(--bg-white);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.logo-strip-label {
    text-align: center; color: var(--text-muted); font-size: 0.9rem;
    font-weight: 600; margin-bottom: 1.5rem; text-transform: uppercase;
    letter-spacing: 1px;
}
.logo-slider { overflow: hidden; }
.logo-track {
    display: flex; gap: 0.5rem; width: max-content;
    animation: scrollLogos 25s linear infinite;
}
.logo-slide {
    flex-shrink: 0; width: auto; height: auto;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.8; filter: grayscale(100%); transition: var(--transition);
}
.logo-slide:hover { opacity: 1; filter: grayscale(0); }
.logo-slide img { max-width: 150px; max-height: 100%; object-fit: contain; }
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
.section-padding { padding: 6rem 0; }
.section-light { background: var(--bg-white); }
.section-header { margin-bottom: 3.5rem; }
.section-label {
    display: inline-block; color: var(--accent); font-weight: 700;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800;
    color: var(--primary); margin-bottom: 1rem; letter-spacing: -0.02em;
}
.section-desc { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* Feature Cards */
.feature-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem 1.5rem; height: 100%;
    transition: var(--transition); text-align: center;
}
.feature-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-md);
    border-color: rgba(108, 71, 255, 0.2);
}
.feature-icon {
    width: 64px; height: 64px; margin: 0 auto 1.25rem;
    background: var(--accent-soft); border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--accent);
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--accent-gradient); color: #fff;
    transform: scale(1.08);
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--primary); }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* About */
.about-section { background: var(--bg); }
.about-visual { position: relative; }
.about-hero-wrap {
    position: relative;
    width: min(520px, 100%);
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}
.about-hero-image {
    width: 100%;
    max-width: 890px;
    border-radius: var(--radius-lg);
    /* box-shadow: var(--shadow-lg); */
    position: relative;
    z-index: 2;
}
.about-orbit-shape {
    position: absolute;
    width: 70px;
    height: 70px;
    object-fit: contain;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 8px 20px rgba(108, 71, 255, 0.22));
}
.about-orbit-mike {
    top: 8%;
    left: 24%;
    animation: aboutOrbitCw 14s linear infinite;
}
.about-orbit-rocket {
    top: 20%;
    right: 10%;
    animation: aboutOrbitCcw 16s linear infinite;
}
.about-orbit-energy {
    bottom: 14%;
    left: 9%;
    animation: aboutOrbitCw 12s linear infinite;
}
.about-orbit-emoji {
    bottom: 8%;
    right: 24%;
    animation: aboutOrbitCcw 10s linear infinite;
}
@keyframes aboutOrbitCw {
    0% { transform: rotate(0deg) translateY(0); }
    100% { transform: rotate(360deg) translateY(0); }
}
@keyframes aboutOrbitCcw {
    0% { transform: rotate(360deg) translateY(0); }
    100% { transform: rotate(0deg) translateY(0); }
}
.about-badge {
    position: absolute; bottom: 2rem; right: -1rem;
    background: var(--accent-gradient); color: #fff;
    padding: 1.25rem 1.75rem; border-radius: var(--radius);
    font-weight: 700; box-shadow: var(--shadow-lg);
}
.about-badge span { font-size: 2rem; display: block; line-height: 1; }
.about-text { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.check-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    margin-bottom: 0.85rem; color: var(--text-muted); font-size: 0.95rem;
}
.check-list i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

/* Stats */
.stats-section {
    padding: 4rem 0;
    background: var(--accent-gradient);
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: ''; position: absolute; inset: 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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-box { position: relative; z-index: 1; color: #fff; }
.stat-box h3 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 0.25rem; }
.stat-box p { opacity: 0.85; font-weight: 500; margin: 0; }

/* Projects Slider */
.featured-projects-section {
    position: relative;
    overflow: hidden;
}
.featured-projects-glow {
    position: absolute;
    top: 20%; left: 50%;
    transform: translateX(-50%);
    width: min(800px, 90vw); height: 420px;
    background: radial-gradient(ellipse at center, rgba(108, 71, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.featured-slider { position: relative; }
.slider-track {
    display: flex; gap: 2rem; overflow-x: auto;
    scroll-snap-type: x mandatory; scrollbar-width: none;
    padding: 1.25rem 0.5rem 1.5rem; scroll-behavior: smooth;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-item {
    flex: 0 0 min(420px, 85vw);
    scroll-snap-align: start;
    height: 100%;
}
.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 14px 44px rgba(108, 71, 255, 0.14),
                0 6px 16px rgba(12, 1, 33, 0.08);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s ease, border-color 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.88);
    background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(248,250,255,0.92));
    transform-style: preserve-3d;
    height: 100%;
}
.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 60px rgba(108, 71, 255, 0.24),
                0 12px 28px rgba(12, 1, 33, 0.12);
    border-color: rgba(108, 71, 255, 0.28);
}
.project-img-wrap {
    position: absolute; inset: 0;
    overflow: hidden;
}
.project-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.03);
}
.project-card:hover img { transform: scale(1.14); }
.project-badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 3;
    padding: 0.4rem 0.85rem; border-radius: 50px;
    font-size: 0.72rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: 0.35rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 16px rgba(12, 1, 33, 0.15);
}
.project-badge-video { background: rgba(108, 71, 255, 0.9); color: #fff; }
.project-badge-image { background: rgba(56, 189, 248, 0.9); color: #fff; }
.project-card-shine {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(125deg, rgba(255,255,255,0.38) 0%, transparent 42%, transparent 58%, rgba(255,255,255,0.14) 100%);
    opacity: 0; transition: opacity 0.5s ease;
}
.project-card:hover .project-card-shine { opacity: 1; }
.project-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(transparent 22%, rgba(12,1,33,0.5) 50%, rgba(12,1,33,0.92));
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.75rem; opacity: 0; transition: opacity 0.45s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-action-btn {
    width: 54px; height: 54px;
    background: var(--accent-gradient);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: #fff;
    margin-bottom: 0.75rem; font-size: 1.1rem;
    box-shadow: 0 8px 26px rgba(108, 71, 255, 0.45);
    transform: translateZ(22px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project-card:hover .project-action-btn {
    transform: translateZ(32px) scale(1.1);
    box-shadow: 0 12px 34px rgba(108, 71, 255, 0.55);
}
.project-overlay h4 {
    color: #fff; font-size: 1.12rem; font-weight: 700;
    margin: 0 0 0.3rem; transform: translateZ(14px);
}
.project-overlay p {
    color: rgba(255,255,255,0.78); font-size: 0.88rem;
    margin: 0; line-height: 1.45; transform: translateZ(10px);
}
.slider-controls {
    display: flex; justify-content: center; align-items: center;
    gap: 1.25rem; margin-top: 2.25rem; flex-wrap: wrap;
}
.featured-view-all {
    padding: 0.65rem 1.35rem !important;
    font-size: 0.88rem !important;
}
.slider-btn {
    width: 54px; height: 54px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--bg-white);
    color: var(--primary); cursor: pointer; transition: var(--transition);
    box-shadow: 0 6px 20px rgba(108, 71, 255, 0.1);
    display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover {
    background: var(--accent-gradient); color: #fff; border-color: transparent;
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 30px rgba(108, 71, 255, 0.35);
}

/* Testimonials Carousel */
.testimonials-section { background: var(--bg); }
.testimonial-carousel {
    position: relative; max-width: 800px; margin: 0 auto;
    padding: 0 3.5rem;
}
.testimonial-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.testimonial-track {
    display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide { flex: 0 0 100%; min-width: 100%; padding: 0 0.5rem; }
.testimonial-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 3rem 2.5rem;
    text-align: center; box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.testimonial-card .stars { color: #fbbf24; margin-bottom: 1.25rem; font-size: 1rem; }
.testimonial-card p {
    color: var(--text-muted); font-style: italic; margin-bottom: 2rem;
    line-height: 1.85; font-size: 1.1rem;
}
.testimonial-author {
    display: flex; align-items: center; justify-content: center; gap: 0.85rem;
}
.testimonial-author img, .avatar-placeholder {
    width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
}
.avatar-placeholder {
    background: var(--accent-gradient); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.2rem;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--primary); text-align: left; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); text-align: left; display: block; }

.testimonial-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--bg-white);
    color: var(--primary); cursor: pointer; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.testimonial-arrow:hover {
    background: var(--accent-gradient); color: #fff;
    border-color: transparent; box-shadow: var(--shadow-md);
}
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }

.testimonial-dots {
    display: flex; justify-content: center; gap: 0.5rem;
    margin-top: 2rem;
}
.testimonial-dots .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--border); cursor: pointer;
    transition: var(--transition); border: none; padding: 0;
}
.testimonial-dots .dot.active {
    background: var(--accent); width: 28px; border-radius: 5px;
}

@media (max-width: 767px) {
    .testimonial-carousel { padding: 0 2.5rem; }
    .testimonial-card { padding: 2rem 1.5rem; }
    .testimonial-card p { font-size: 1rem; }
    .testimonial-arrow { width: 40px; height: 40px; }
}

/* Page Hero */
.page-hero {
    padding: 9rem 0 4rem; text-align: center;
    background: var(--bg); position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(108,71,255,0.08) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    color: var(--primary); margin-bottom: 1rem;
}
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* Production */
.filter-tabs, .gallery-filters {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    justify-content: center; margin-bottom: 3rem;
}
.filter-tab, .gallery-filter {
    padding: 0.65rem 1.5rem; border-radius: 50px;
    border: 1px solid var(--border); background: var(--bg-white);
    color: var(--text-muted); cursor: pointer; font-weight: 600;
    font-size: 0.9rem; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 0.45rem;
}
.filter-tab:hover, .filter-tab.active,
.gallery-filter:hover, .gallery-filter.active {
    background: var(--accent-gradient); color: #fff;
    border-color: transparent; box-shadow: 0 4px 15px rgba(108,71,255,0.3);
}
.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.25rem;
}
.production-item { transition: var(--transition); height: 100%; }
.production-item.hidden { display: none; }
.production-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 12px 40px rgba(108, 71, 255, 0.12),
                0 4px 12px rgba(12, 1, 33, 0.08);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s ease, border-color 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(248,250,255,0.9));
    transform-style: preserve-3d;
    height: 100%;
}
.production-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 60px rgba(108, 71, 255, 0.22),
                0 12px 24px rgba(12, 1, 33, 0.12);
    border-color: rgba(108, 71, 255, 0.25);
}
.production-img-wrap {
    position: absolute; inset: 0;
    overflow: hidden;
}
.production-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.02);
}
.production-card:hover img { transform: scale(1.12); }
.production-badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 3;
    padding: 0.4rem 0.85rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3px;
    display: inline-flex; align-items: center; gap: 0.35rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 16px rgba(12, 1, 33, 0.15);
}
.production-badge-video {
    background: rgba(108, 71, 255, 0.88); color: #fff;
}
.production-badge-image {
    background: rgba(56, 189, 248, 0.88); color: #fff;
}
.production-card-shine {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(125deg, rgba(255,255,255,0.35) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.12) 100%);
    opacity: 0; transition: opacity 0.5s ease;
}
.production-card:hover .production-card-shine { opacity: 1; }
.production-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(transparent 25%, rgba(12,1,33,0.55) 55%, rgba(12,1,33,0.92));
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.75rem; opacity: 0; transition: opacity 0.45s ease;
}
.production-card:hover .production-overlay { opacity: 1; }
.production-play-btn {
    width: 56px; height: 56px;
    background: var(--accent-gradient);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: #fff;
    margin-bottom: 0.75rem; font-size: 1.15rem;
    box-shadow: 0 8px 24px rgba(108, 71, 255, 0.45);
    transform: translateZ(20px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.production-card:hover .production-play-btn {
    transform: translateZ(30px) scale(1.08);
    box-shadow: 0 12px 32px rgba(108, 71, 255, 0.55);
}
.production-overlay h4 {
    color: #fff; font-size: 1.15rem; font-weight: 700;
    margin-bottom: 0.35rem; transform: translateZ(12px);
}
.production-overlay p {
    color: rgba(255,255,255,0.78); font-size: 0.9rem; margin: 0;
    line-height: 1.5; transform: translateZ(8px);
}

@media (max-width: 767px) {
    .production-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .production-card { aspect-ratio: 16 / 11; }
}

/* Customers */
.logo-slider-section { padding: 3rem 0; background: var(--bg-white); border-bottom: 1px solid var(--border); }
.customer-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2.5rem 2rem;
    text-align: center; height: 100%; transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.customer-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-md);
    border-color: rgba(108,71,255,0.2);
}
.customer-logo {
    height: 70px; display: flex; align-items: center;
    justify-content: center; margin-bottom: 1.5rem;
}
.customer-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.customer-card h4 { font-weight: 700; margin-bottom: 0.5rem; color: var(--primary); }
.customer-card p { color: var(--text-muted); font-size: 0.9rem; }
.customer-link {
    color: var(--accent); text-decoration: none; font-weight: 700;
    font-size: 0.85rem; margin-top: 1rem; display: inline-block;
    transition: var(--transition);
}
.customer-link:hover { color: var(--accent-light); }

/* Gallery Masonry */
.gallery-masonry { columns: 3; column-gap: 1.5rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1.5rem; transition: var(--transition); }
.gallery-item.hidden { display: none; }
.gallery-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    cursor: pointer; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-card img {
    width: 100%; display: block;
    transition: transform 0.6s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(12,1,33,0.75); display: flex; flex-direction: column;
    align-items: center; justify-content: center; opacity: 0;
    transition: var(--transition); padding: 1rem; text-align: center;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-category {
    background: var(--accent-gradient); padding: 0.3rem 0.85rem;
    border-radius: 50px; font-size: 0.75rem; font-weight: 700;
    color: #fff; margin-bottom: 0.5rem;
}
.gallery-overlay h4 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.gallery-overlay i { color: #fff; font-size: 1.25rem; }

/* Contact */
.contact-info-card, .contact-form-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2.5rem;
    box-shadow: var(--shadow-sm); height: 100%;
}
.contact-info-card h3, .contact-form-card h3 {
    font-weight: 800; margin-bottom: 1.5rem; color: var(--primary);
}
.contact-info-item {
    display: flex; gap: 1rem; margin-bottom: 1.25rem;
}
.contact-info-item i {
    width: 48px; height: 48px; background: var(--accent-soft);
    border-radius: 14px; display: flex; align-items: center;
    justify-content: center; color: var(--accent); flex-shrink: 0;
}
.contact-info-item strong { display: block; margin-bottom: 0.15rem; color: var(--primary); }
.contact-info-item p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }
.form-control {
    background: var(--bg); border: 1px solid var(--border);
    color: var(--text); padding: 0.85rem 1.1rem; border-radius: 12px;
    transition: var(--transition);
}
.form-control:focus {
    background: var(--bg-white); border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft); color: var(--text);
}
.form-label { font-weight: 600; color: var(--primary); margin-bottom: 0.5rem; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map-container iframe { display: block; }

/* Lightbox */
body.lightbox-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}
.lightbox {
    position: fixed; inset: 0; background: rgba(12,1,33,0.92);
    z-index: 9999; display: none;
    align-items: center; justify-content: center;
    padding: 2rem; box-sizing: border-box;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
    isolation: isolate;
    overflow: auto;
    overscroll-behavior: contain;
}
.lightbox.active {
    display: flex;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-close {
    position: fixed; top: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,0.1); border: none; color: #fff;
    font-size: 2rem; cursor: pointer; z-index: 10001; line-height: 1;
    width: 48px; height: 48px; border-radius: 50%;
    transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-content {
    display: grid;
    place-items: center;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 85vh;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    align-self: center;
    justify-self: center;
}
.lightbox-frame {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    max-width: 90vw;
    max-height: 85vh;
}
.lightbox-content img {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
    border-radius: var(--radius);
}
.lightbox-media {
    position: relative;
    width: min(90vw, 1200px);
    max-height: 85vh;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
}
.lightbox-content iframe,
.lightbox-content video {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
}
.lightbox-content .lightbox-media iframe,
.lightbox-content .lightbox-media video {
    position: absolute;
    inset: 0;
}

/* Footer - Iteck Style */
.iteck-footer { background: var(--bg); }

.footer-community {
    padding: 5rem 0 4rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}
.footer-community .section-header { margin-bottom: 3rem; }

.hub-card {
    display: block; text-align: center; padding: 2.5rem 2rem;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); text-decoration: none;
    transition: var(--transition); height: 100%;
}
.hub-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-md);
    border-color: rgba(108, 71, 255, 0.25);
}
.hub-icon {
    width: 70px; height: 70px; margin: 0 auto 1.25rem;
    background: var(--accent-soft); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: var(--accent);
    transition: var(--transition);
}
.hub-card:hover .hub-icon {
    background: var(--accent-gradient); color: #fff;
    transform: scale(1.08);
}
.hub-card h5 {
    font-weight: 700; font-size: 1.15rem; color: var(--primary);
    margin-bottom: 0.5rem;
}
.hub-card p {
    color: var(--text-muted); font-size: 0.9rem; margin: 0;
}

.footer-download {
    padding: 0 0 5rem;
    background: var(--bg-white);
}
.download-box {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.download-box::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(108,71,255,0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(236,72,153,0.2) 0%, transparent 50%);
    pointer-events: none;
}
.download-box h2 {
    position: relative; z-index: 1;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800; color: #fff; margin-bottom: 1rem;
}
.download-box p {
    position: relative; z-index: 1;
    color: rgba(255,255,255,0.75); font-size: 1.05rem;
    max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.download-btns {
    position: relative; z-index: 1;
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.store-btn {
    display: inline-flex; align-items: center; gap: 0.85rem;
    padding: 0.85rem 1.75rem; border-radius: 14px;
    text-decoration: none; transition: var(--transition);
    min-width: 200px;
}
.store-btn:hover { transform: translateY(-4px); color: inherit; }
.store-btn-primary {
    background: #fff; color: var(--primary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.store-btn-primary:hover { box-shadow: 0 15px 35px rgba(0,0,0,0.25); color: var(--primary); }
.store-btn-dark {
    background: rgba(255,255,255,0.1); color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}
.store-btn-dark:hover {
    background: rgba(255,255,255,0.18); color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.store-btn-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; flex-shrink: 0;
}
.store-btn-primary .store-btn-icon { background: var(--accent-soft); color: var(--accent); }
.store-btn-dark .store-btn-icon { background: rgba(255,255,255,0.12); color: #fff; }
.store-btn-text { text-align: left; line-height: 1.2; }
.store-btn-text small {
    display: block; font-size: 0.7rem; font-weight: 500;
    opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px;
}
.store-btn-text strong { display: block; font-size: 1rem; font-weight: 700; }

.footer-bottom-bar {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 -8px 32px rgba(108, 71, 255, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: 2rem 0 2.5rem;
}
.footer-nav-links {
    list-style: none; padding: 0; margin: 0 0 1.25rem;
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0.5rem 2rem;
}
.footer-nav-links a {
    color: var(--text-muted); text-decoration: none;
    font-weight: 600; font-size: 0.95rem;
    transition: var(--transition); position: relative;
}
.footer-nav-links a:hover { color: var(--accent); }
.footer-nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--accent-gradient);
    transition: width 0.3s ease;
}
.footer-nav-links a:hover::after { width: 100%; }
.footer-meta { text-align: center; }
.footer-meta p {
    margin: 0; font-size: 0.85rem; color: white;
}

@media (max-width: 767px) {
    .download-box { padding: 3rem 1.5rem; }
    .download-btns { flex-direction: column; align-items: center; }
    .store-btn { width: 100%; max-width: 280px; justify-content: center; }
    .footer-nav-links { gap: 0.75rem 1.25rem; }
    .footer-nav-links a { font-size: 0.85rem; }
}

/* WhatsApp & Scroll Top */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 30px; width: 56px; height: 56px;
    background: #25d366; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; color: #fff;
    font-size: 1.75rem; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition); text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
#scrollTopBtn {
    position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px;
    background: var(--accent-gradient); border: none; border-radius: 50%;
    color: #fff; font-size: 1rem; cursor: pointer; z-index: 998;
    opacity: 0; visibility: hidden; transition: var(--transition);
    box-shadow: 0 4px 15px rgba(108,71,255,0.35);
}
#scrollTopBtn.visible { opacity: 1; visibility: visible; }
#scrollTopBtn:hover { transform: translateY(-4px); }

/* Flash Alert */
.flash-alert {
    position: fixed; top: 100px; right: 20px; z-index: 9999;
    min-width: 320px; border-radius: var(--radius);
    box-shadow: var(--shadow-md); animation: slideIn 0.5s ease;
    border: none;
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 991px) {
    .navbar {
        top: 0;
        padding: 0.65rem 0;
        background: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 4px 24px rgba(12, 1, 33, 0.08);
    }
    .navbar-brand {
        max-width: calc(100% - 60px);
    }
    .site-logo-nav {
        height: 56px !important;
        max-width: 110px !important;
    }
    .navbar-toggler {
        margin-left: auto;
        order: 2;
    }
    .navbar-brand { order: 1; }
    .navbar-collapse {
        order: 3;
        flex-basis: 100%;
        background: var(--bg-white); padding: 1.5rem;
        border-radius: var(--radius); margin-top: 1rem;
        box-shadow: var(--shadow-md); border: 1px solid var(--border);
    }
    .top-bar { display: none; }
    .iteck-hero { padding: 6.5rem 0 4rem; min-height: auto; }
    .hero-card-1, .hero-top-rated-wrap { display: none; }
    .gallery-masonry { columns: 2; }
    .nav-cta { width: 100%; text-align: center; margin-top: 0.5rem; }
    .nav-actions {
        width: 100%; flex-direction: column;
        margin-top: 1rem; padding-top: 1rem;
        border-top: 1px solid var(--border);
    }
    .admin-nav-icon { width: 100%; height: 44px; border-radius: 12px; }
    main {
        overflow-x: clip;
        max-width: 100%;
    }
    .iteck-hero {
        overflow-x: clip;
        max-width: 100%;
    }
    .hero-shapes .shape {
        opacity: 0.35;
    }
    .shape-1 { width: 220px; height: 220px; top: -40px; right: -60px; }
    .shape-2 { width: 180px; height: 180px; left: -40px; }
    .shape-3 { width: 120px; height: 120px; left: 50%; }
    .hero-bird-showcase {
        overflow: hidden;
        max-width: 100%;
        perspective: none;
        transform: none !important;
    }
    .hero-title-wrap {
        overflow: hidden;
        max-width: 100%;
    }
    .featured-projects-section,
    .features-section,
    .testimonials-section {
        overflow-x: clip;
        max-width: 100%;
    }
    .featured-slider {
        overflow: hidden;
        max-width: 100%;
    }
    .slider-item {
        flex: 0 0 min(300px, calc(100vw - 2.5rem));
    }
    [data-parallax] {
        transform: none !important;
    }
}
@media (max-width: 767px) {
    .section-padding { padding: 4rem 0; }
    .gallery-masonry { columns: 1; }
    .slider-item { flex: 0 0 280px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .hero-trust { gap: 1.25rem; }
    .about-badge { right: 1rem; bottom: 1rem; padding: 1rem; }
    .about-badge span { font-size: 1.5rem; }
    .about-orbit-shape { width: 54px; height: 54px; }
    .about-orbit-mike { top: 6%; left: 20%; }
    .about-orbit-rocket { top: 18%; right: 6%; }
    .about-orbit-energy { bottom: 12%; left: 6%; }
    .about-orbit-emoji { bottom: 6%; right: 20%; }
}
