/* ============================================ */
/* NEW GRAPHICS POINT - Cyberpunk-Lite Parallax */
/* Palette: #08252b + #ffffff                  */
/* ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    /* Core palette */
    --bg-primary: #08252b;
    --bg-secondary: #061c22;
    --bg-tertiary: #0a2f36;
    --bg-elevated: #0d3840;
    --bg-card: rgba(8, 37, 43, 0.90);
    --bg-card-hover: rgba(13, 56, 64, 0.95);

    /* Accent — pure white */
    --accent: #ffffff;
    --accent-dim: rgba(255, 255, 255, 0.65);
    --accent-faint: rgba(255, 255, 255, 0.35);
    --accent-muted: rgba(255, 255, 255, 0.12);

    /* Glow effects — white-based */
    --glow-accent: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 60px rgba(255, 255, 255, 0.08);
    --glow-intense: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 80px rgba(255, 255, 255, 0.15);

    /* Text — white hierarchy */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.58);
    --text-muted: rgba(255, 255, 255, 0.32);

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(255, 255, 255, 0.18);
    --border-bright: rgba(255, 255, 255, 0.35);

    /* Typography — sharp, geometric */
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Sizing */
    --section-padding: 120px 0;
    --container-max: 1280px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-sharp: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    /* Subtle scan-line overlay */
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.008) 2px,
            rgba(255, 255, 255, 0.008) 4px
        );
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ============================================ */
/* BOKEH PARTICLES                              */
/* ============================================ */
#bokeh-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bokeh-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
    animation: bokehFloat 20s infinite ease-in-out;
    will-change: transform, opacity;
}

.bokeh-particle[data-size="small"] { width: 4px; height: 4px; filter: blur(0.5px); }
.bokeh-particle[data-size="medium"] { width: 10px; height: 10px; filter: blur(2px); }
.bokeh-particle[data-size="large"] { width: 20px; height: 20px; filter: blur(4px); }
.bokeh-particle[data-size="xlarge"] { width: 34px; height: 34px; filter: blur(6px); }

@keyframes bokehFloat {
    0%, 100% { opacity: 0; transform: translateY(0) translateX(0) scale(0.8); }
    15% { opacity: 1; }
    50% { opacity: 0.5; transform: translateY(-100px) translateX(30px) scale(1.1); }
    85% { opacity: 1; }
}

/* Stagger particles */
.bokeh-particle:nth-child(2)  { animation-delay: -2s; animation-duration: 25s; }
.bokeh-particle:nth-child(3)  { animation-delay: -4s; animation-duration: 22s; }
.bokeh-particle:nth-child(4)  { animation-delay: -6s; animation-duration: 28s; }
.bokeh-particle:nth-child(5)  { animation-delay: -8s; animation-duration: 18s; }
.bokeh-particle:nth-child(6)  { animation-delay: -1s; animation-duration: 30s; }
.bokeh-particle:nth-child(7)  { animation-delay: -3s; animation-duration: 35s; }
.bokeh-particle:nth-child(8)  { animation-delay: -5s; animation-duration: 20s; }
.bokeh-particle:nth-child(9)  { animation-delay: -7s; animation-duration: 26s; }
.bokeh-particle:nth-child(10) { animation-delay: -9s; animation-duration: 23s; }
.bokeh-particle:nth-child(11) { animation-delay: -2.5s; animation-duration: 19s; }
.bokeh-particle:nth-child(12) { animation-delay: -4.5s; animation-duration: 32s; }
.bokeh-particle:nth-child(13) { animation-delay: -6.5s; animation-duration: 21s; }
.bokeh-particle:nth-child(14) { animation-delay: -8.5s; animation-duration: 27s; }
.bokeh-particle:nth-child(15) { animation-delay: -1.5s; animation-duration: 24s; }
.bokeh-particle:nth-child(16) { animation-delay: -3.5s; animation-duration: 29s; }
.bokeh-particle:nth-child(17) { animation-delay: -5.5s; animation-duration: 17s; }
.bokeh-particle:nth-child(18) { animation-delay: -7.5s; animation-duration: 33s; }
.bokeh-particle:nth-child(19) { animation-delay: -9.5s; animation-duration: 22s; }
.bokeh-particle:nth-child(20) { animation-delay: -0.5s; animation-duration: 26s; }

/* ============================================ */
/* NAVIGATION                                   */
/* ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(8, 37, 43, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-accent);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    z-index: 1001;
    text-transform: uppercase;
}

.logo-icon {
    color: #fff;
    font-size: 1.1rem;
    text-shadow: var(--glow-accent);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 255, 255, 0.4); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.7), 0 0 40px rgba(255, 255, 255, 0.2); }
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    box-shadow: var(--glow-accent);
    transition: width 0.3s var(--ease-sharp);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #fff;
    color: var(--bg-primary);
    box-shadow: var(--glow-intense);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================ */
/* HERO SECTION - Fixed Background Parallax     */
/* ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: scale(1.1);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(8, 37, 43, 0.93) 0%,
        rgba(8, 37, 43, 0.5) 40%,
        rgba(8, 37, 43, 0.65) 70%,
        rgba(8, 37, 43, 0.98) 100%
    );
    z-index: 1;
}

/* Cyberpunk grid overlay on hero */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 79px,
            rgba(255, 255, 255, 0.02) 79px,
            rgba(255, 255, 255, 0.02) 80px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 79px,
            rgba(255, 255, 255, 0.02) 79px,
            rgba(255, 255, 255, 0.02) 80px
        );
    pointer-events: none;
}

.hero-neon-accent {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dim);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 28px;
    padding: 8px 20px;
    border: 1px solid var(--border-accent);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    will-change: transform;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 0;
    transform: rotate(45deg);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    will-change: transform;
    text-transform: uppercase;
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #fff;
    letter-spacing: 6px;
}

.title-line-2 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.5), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
    letter-spacing: 8px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.9;
    will-change: transform;
    letter-spacing: 0.3px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    will-change: transform;
}

/* Buttons — angular, sharp */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 0;
    transition: all 0.4s var(--ease-sharp);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #fff;
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    border: 1px solid var(--border-accent);
    color: #fff;
    backdrop-filter: blur(10px);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--glow-accent);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
    clip-path: none;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    will-change: transform;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: var(--glow-accent);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent-dim);
}

.stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.25), transparent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 20px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    position: relative;
}

.scroll-wheel {
    width: 2px;
    height: 6px;
    background: #fff;
    border-radius: 0;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-muted);
}

/* ============================================ */
/* SECTION TRANSITION STRIP                     */
/* ============================================ */
.section-transition {
    position: relative;
    height: 80px;
    overflow: hidden;
    z-index: 5;
}

.transition-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
}

.transition-line-1 {
    top: 20px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), rgba(255,255,255,0.5), transparent);
    opacity: 0.5;
    animation: transitionPulse 4s ease-in-out infinite;
}

.transition-line-2 {
    top: 40px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0.3;
    animation: transitionPulse 4s ease-in-out infinite 1s;
}

.transition-line-3 {
    top: 60px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    opacity: 0.2;
    animation: transitionPulse 4s ease-in-out infinite 2s;
}

@keyframes transitionPulse {
    0%, 100% { opacity: 0.1; transform: scaleX(0.8); }
    50% { opacity: 0.5; transform: scaleX(1); }
}

/* ============================================ */
/* SECTION COMMON STYLES                        */
/* ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-dim);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid var(--border-accent);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

.text-left { text-align: left; }

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

.neon-text {
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================ */
/* SERVICES SECTION                             */
/* ============================================ */
.services-section {
    position: relative;
    z-index: 5;
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Service Card with Tilt — sharp edges */
.service-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all 0.5s var(--ease-sharp);
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: default;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.03);
    transform: translateY(-8px);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
    will-change: transform;
    filter: saturate(0) brightness(0.85) contrast(1.1);
}

.service-card:hover .card-image {
    transform: scale(1.08);
    filter: saturate(0.8) brightness(1) contrast(1.05);
}

.card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.card-icon {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
}

.card-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.card-tags span {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--accent-dim);
    padding: 4px 10px;
    border: 1px solid var(--border-accent);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent-dim);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.card-link:hover {
    gap: 14px;
    color: #fff;
    text-shadow: var(--glow-accent);
}

/* ============================================ */
/* PARALLAX IMAGE BREAK                         */
/* ============================================ */
.parallax-break {
    position: relative;
    height: 500px;
    overflow: hidden;
    z-index: 5;
}

.parallax-break-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    filter: saturate(0) brightness(0.7) contrast(1.2);
}

.parallax-break-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--bg-primary) 0%,
        rgba(8, 37, 43, 0.4) 30%,
        rgba(8, 37, 43, 0.4) 70%,
        var(--bg-primary) 100%
    );
}

.parallax-break-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 24px;
}

.parallax-break-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #fff;
}

.parallax-break-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    letter-spacing: 0.5px;
}

/* ============================================ */
/* PORTFOLIO SECTION                            */
/* ============================================ */
.portfolio-section {
    position: relative;
    z-index: 5;
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 0;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    background: transparent;
}

.filter-btn:hover,
.filter-btn.active {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 16px;
}

.portfolio-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s var(--ease-sharp);
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 1px solid var(--border-subtle);
}

.portfolio-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
    filter: saturate(0) brightness(0.8) contrast(1.1);
}

.portfolio-item:hover .portfolio-image-wrapper img {
    transform: scale(1.1);
    filter: saturate(0.7) brightness(1) contrast(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 37, 43, 0.97) 0%, rgba(8, 37, 43, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-dim);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: #fff;
}

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

/* ============================================ */
/* ABOUT SECTION                                */
/* ============================================ */
.about-section {
    position: relative;
    z-index: 5;
    padding: var(--section-padding);
    background: var(--bg-primary);
}

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

.about-images {
    position: relative;
    height: 500px;
}

.about-image-main {
    width: 70%;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border-accent);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
    filter: saturate(0) brightness(0.8) contrast(1.1);
}

.about-image-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 250px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #fff;
    box-shadow: var(--glow-accent);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 20px;
    right: 20%;
    background: #fff;
    color: var(--bg-primary);
    padding: 20px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bg-primary);
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(8, 37, 43, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-accent);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    margin-top: 2px;
}

.about-feature h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
    letter-spacing: 0.5px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================ */
/* GALLERY SECTION                              */
/* ============================================ */
.gallery-section {
    position: relative;
    z-index: 5;
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    grid-auto-rows: 200px;
}

.gallery-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 1px solid var(--border-subtle);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
    filter: saturate(0) brightness(0.8) contrast(1.1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: saturate(0.7) brightness(1) contrast(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to top, rgba(8, 37, 43, 0.92), transparent);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================ */
/* CONTACT SECTION                              */
/* ============================================ */
.contact-section {
    position: relative;
    z-index: 5;
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-desc {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-accent);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--accent-dim);
}

.contact-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-justdial {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-accent);
    border-radius: 0;
}

.contact-justdial p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.justdial-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    color: #fff;
}

.justdial-link:hover {
    border-color: #fff;
    box-shadow: var(--glow-accent);
}

.justdial-rating {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 0;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--bg-secondary);
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer {
    position: relative;
    z-index: 5;
    padding: 80px 0 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: #fff;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-accent);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col li,
.footer-links-col a {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-links-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border-accent);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ============================================ */
/* BACK TO TOP                                  */
/* ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-sharp);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.25);
}

/* ============================================ */
/* REVEAL ANIMATIONS                            */
/* ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-sharp);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* RESPONSIVE DESIGN                            */
/* ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-images {
        height: 400px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(8, 37, 43, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.4rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .title-line-2 {
        font-size: clamp(2.2rem, 12vw, 5rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .about-images {
        height: 350px;
    }

    .about-image-main {
        width: 65%;
        height: 300px;
    }

    .about-image-accent {
        width: 50%;
        height: 200px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .parallax-break {
        height: 350px;
    }

    .btn {
        clip-path: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .portfolio-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.72rem;
    }
}

/* ============================================ */
/* SECTION BACKGROUND TRANSITIONS               */
/* ============================================ */
.portfolio-section {
    background: linear-gradient(180deg,
        var(--bg-primary) 0%,
        #071f24 30%,
        #092a30 60%,
        var(--bg-primary) 100%
    );
}

.gallery-section {
    background: linear-gradient(180deg,
        var(--bg-primary) 0%,
        #0b2e35 50%,
        #0d353d 100%
    );
}
