@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

/* ==========================================================================
   TRANSEUS TECH - CORE STYLING & DESIGN SYSTEM
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    /* Color Palette - Premium Light Blue Bento Theme */
    --bg-dark: #f4f8fc;
    --bg-card: rgba(255, 255, 255, 0.65);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --border-color: rgba(0, 102, 255, 0.08);
    --border-color-hover: rgba(0, 102, 255, 0.18);
    
    --primary-color: #0066ff; /* Vivid Royal/Sky Blue */
    --primary-glow: rgba(0, 102, 255, 0.12);
    --secondary-color: #00b8ff; /* Vibrant Sky Blue */
    --secondary-glow: rgba(0, 184, 255, 0.12);
    --tertiary-color: #7000ff; /* Electric Indigo */
    --tertiary-glow: rgba(112, 0, 255, 0.08);
    --accent-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--tertiary-color) 100%);
    --text-glow-gradient: linear-gradient(135deg, #070a13 0%, #1e293b 60%, var(--primary-color) 100%);
    
    --text-main: #0f172a; /* Slate 900 */
    --text-muted: #475569; /* Slate 600 */
    --text-dark: #94a3b8; /* Slate 400 */
    --success-color: #10b981;
    --error-color: #ef4444;
    
    /* Layout Tokens */
    --card-border-radius: 16px;
    --card-shadow: 0 15px 35px rgba(0, 102, 255, 0.06), inset 0 0 15px rgba(255, 255, 255, 0.6);
    --card-border: 1px solid var(--border-color);
    --font-heading: 'Outfit', sans-serif;
    
    /* Layout & Spacing */
    --font-body: 'Inter', sans-serif;
    --nav-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 102, 255, 0.1);
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.2s, height 0.2s;
}

.custom-cursor-glow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--secondary-color);
    background-color: rgba(6, 182, 212, 0.03);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.08s ease-out, width 0.2s, height 0.2s;
}

/* Cursor hover states */
body.link-hovered .custom-cursor {
    width: 24px;
    height: 24px;
    background-color: rgba(6, 182, 212, 0.2);
    border: 1px solid var(--secondary-color);
}

body.link-hovered .custom-cursor-glow {
    width: 60px;
    height: 60px;
    border-color: var(--primary-color);
    background-color: rgba(139, 92, 246, 0.05);
}

/* Background Blobs (Glowing Ambient Orbs) */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    z-index: -2;
    pointer-events: none;
}

.blob-1 {
    top: 5%;
    left: 10%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-2 {
    top: 45%;
    right: 5%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    animation: floatBlob 25s infinite alternate-reverse ease-in-out;
}

.blob-3 {
    bottom: 5%;
    left: 20%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    animation: floatBlob 18s infinite alternate ease-in-out 2s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 80px) scale(1.15);
    }
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    gap: 8px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border-color: var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Text Formatting Utils */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tagline {
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 38px;
    margin-bottom: 16px;
    background: var(--text-glow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(244, 248, 252, 0.45);
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.navbar-header.scrolled {
    height: 70px;
    background-color: rgba(244, 248, 252, 0.85);
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.04);
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.logo-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtext {
    font-weight: 300;
    opacity: 0.8;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-nav-btn {
    border: 1px solid var(--border-color);
    padding: 10px 22px !important;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.02);
}

.contact-nav-btn:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.contact-nav-btn::after {
    display: none;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Bento Grid Hero Layout */
.grid-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    text-align: left !important;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 8px 18px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--success-color);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(2.2);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.badge-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    background: var(--text-glow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: 38px;
    line-height: 1.7;
    text-align: left;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-locations {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 13, 26, 0.4);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-md);
    padding: 14px 24px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.loc-icon {
    color: var(--primary-color);
    width: 18px;
    height: 18px;
}

.loc-text {
    display: flex;
    flex-direction: column;
}

.loc-city {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.loc-country {
    font-size: 12px;
    color: var(--text-muted);
}

.location-divider {
    height: 30px;
    width: 1px;
    background-color: var(--border-color);
    margin: 0 24px;
}

/* Right Visual Bento Panel */
.hero-visual-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.product-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;
    transform: rotateY(-10deg) rotateX(10deg);
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-wrapper:hover {
    transform: rotateY(-2deg) rotateX(2deg) scale(1.05);
}

.glass-sheet {
    position: absolute;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 102, 255, 0.12);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.06), inset 0 0 15px rgba(255, 255, 255, 0.6);
    padding: 20px;
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.glass-sheet:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px var(--primary-glow);
    transform: translateZ(25px);
}

/* Sheet 1: UI Wireframe Layout */
.sheet-ui {
    width: 310px;
    height: 210px;
    top: 5%;
    left: 5%;
    z-index: 2;
    transform: translateZ(10px);
}

.sheet-header {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
    padding-bottom: 8px;
}

.sheet-header .dot {
    width: 8px;
    height: 8px;
    background-color: rgba(0, 102, 255, 0.2);
    border-radius: 50%;
}

.sheet-body-wireframe {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wire-hero-title {
    height: 14px;
    width: 60%;
    background-color: rgba(0, 102, 255, 0.15);
    border-radius: 4px;
}

.wire-hero-subtitle {
    height: 10px;
    width: 85%;
    background-color: rgba(0, 102, 255, 0.08);
    border-radius: 3px;
}

.wire-hero-grid {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.wire-hero-grid span {
    flex-grow: 1;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px dashed rgba(0, 102, 255, 0.15);
    border-radius: 6px;
}

/* Sheet 2: Analytics Chart */
.sheet-analytics {
    width: 210px;
    height: 160px;
    bottom: 5%;
    right: 5%;
    z-index: 3;
    transform: translateZ(35px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sheet-tag {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--text-muted);
}

.sheet-val {
    font-size: 30px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-color);
}

.sheet-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
}

.sheet-chart .bar {
    width: 6px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    display: inline-block;
    animation: bounceBar 1.5s infinite alternate ease-in-out;
}

.sheet-chart .bar-1 { height: 40%; animation-delay: 0.1s; }
.sheet-chart .bar-2 { height: 75%; animation-delay: 0.3s; }
.sheet-chart .bar-3 { height: 90%; animation-delay: 0.5s; }
.sheet-chart .bar-4 { height: 50%; animation-delay: 0.2s; }
.sheet-chart .bar-5 { height: 80%; animation-delay: 0.4s; }

/* Sheet 3: Floating Action Badge */
.sheet-badge {
    width: 170px;
    height: 54px;
    top: 50%;
    left: -10%;
    z-index: 4;
    transform: translateZ(50px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.1);
}

.sheet-badge-icon {
    color: var(--primary-color);
    width: 18px;
    height: 18px;
}

.sheet-badge-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-main);
}

/* Mesh Gradient custom styling */
@property --g1-x { syntax: '<percentage>'; inherits: false; initial-value: 20%; }
@property --g1-y { syntax: '<percentage>'; inherits: false; initial-value: 30%; }
@property --g2-x { syntax: '<percentage>'; inherits: false; initial-value: 80%; }
@property --g2-y { syntax: '<percentage>'; inherits: false; initial-value: 20%; }

.mesh-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at var(--g1-x) var(--g1-y), rgba(0, 229, 255, 0.15) 0%, transparent 55%),
        radial-gradient(circle at var(--g2-x) var(--g2-y), rgba(112, 0, 255, 0.15) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.12) 0%, transparent 65%);
    filter: blur(80px);
    z-index: -1;
    animation: moveGradients 20s infinite alternate ease-in-out;
}

@keyframes moveGradients {
    0% {
        --g1-x: 20%; --g1-y: 30%;
        --g2-x: 80%; --g2-y: 20%;
    }
    50% {
        --g1-x: 70%; --g1-y: 60%;
        --g2-x: 20%; --g2-y: 40%;
    }
    100% {
        --g1-x: 40%; --g1-y: 10%;
        --g2-x: 80%; --g2-y: 80%;
    }
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mouse-shape {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: block;
    position: relative;
}

.wheel-dot {
    width: 4px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 0;
    }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 100px 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

/* Glow Card Framework */
.glow-card {
    position: relative;
    border-radius: var(--card-border-radius);
    background: var(--bg-card);
    padding: 1px; /* Creates the border width */
    overflow: hidden;
    height: 100%;
}

.glow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-md);
    background: radial-gradient(
        350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(6, 182, 212, 0.25),
        transparent 80%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.card-inner {
    position: relative;
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: calc(var(--card-border-radius) - 1px);
    padding: 40px 32px;
    height: 100%;
    z-index: 2;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.glow-card:hover .card-inner {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-4px);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: rgba(0, 102, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.glow-card:hover .service-icon-box {
    color: var(--bg-dark);
    background: var(--accent-gradient);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.35);
}

.service-icon {
    width: 26px;
    height: 26px;
}

.card-inner h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.card-inner p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.service-list li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-main);
    gap: 10px;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--secondary-color);
}

/* ==========================================================================
   PORTFOLIO SECTION
   ========================================================================== */
.portfolio-section {
    padding: 80px 24px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.portfolio-item-card {
    background: var(--bg-card);
    border: var(--card-border);
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.portfolio-item-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
    transform: translateY(-6px);
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

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

.portfolio-view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--border-radius-sm);
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.portfolio-item-card:hover .portfolio-view-btn {
    transform: translateY(0);
}

.portfolio-view-btn:hover {
    background: var(--secondary-color);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.25);
}

.portfolio-details {
    padding: 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    background: rgba(0, 102, 255, 0.04);
    border: 1px solid rgba(0, 102, 255, 0.08);
    padding: 4px 10px;
    border-radius: 50px;
    color: var(--primary-color);
}

.portfolio-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.portfolio-details p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   ABOUT / FOUNDER SECTION
   ========================================================================== */
.about-section {
    padding: 100px 24px;
    background: radial-gradient(circle at 70% 30%, rgba(0, 102, 255, 0.03) 0%, transparent 60%);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-border-glow {
    position: relative;
    padding: 8px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 50%, var(--secondary-color) 100%);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.08);
    margin-bottom: 30px;
    width: 280px;
    height: 280px;
}

.avatar-wrapper {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--border-radius-lg) - 6px);
    overflow: hidden;
    background-color: var(--bg-dark);
}

.founder-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Clocks Card */
.dual-clocks-card {
    background: var(--bg-card);
    border: var(--card-border);
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(12px);
    padding: 24px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.06);
}

.dual-clocks-card h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.clock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.clock-info {
    display: flex;
    flex-direction: column;
}

.clock-place {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.clock-time {
    font-size: 16px;
    font-family: monospace;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 4px;
}

.clock-timezone {
    font-size: 11px;
    color: var(--text-muted);
    background-color: rgba(0, 102, 255, 0.03);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.clock-divider-hor {
    height: 1px;
    background-color: var(--border-color);
    margin: 12px 0;
}

/* About Text */
.about-para-bold {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-main);
}

.about-para {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 24px;
}

.contact-box {
    position: relative;
    background: var(--bg-card);
    border: var(--card-border);
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(15px);
    overflow: hidden;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.08);
}

/* Glowing dot in contact box background */
.contact-box::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-details-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details-col h2 {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 20px;
    background: var(--text-glow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-details-col p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.info-label {
    display: block;
    font-size: 11px;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.info-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
}

a.info-value:hover {
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form-col {
    background-color: rgba(255, 255, 255, 0.55);
    border: var(--card-border);
    border-radius: var(--card-border-radius);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #ffffff;
    border: 1px solid rgba(0, 102, 255, 0.12);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-quick);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
    padding-right: 45px;
}

.form-group select option {
    background-color: var(--bg-dark);
    color: var(--text-main);
}

.form-group textarea {
    resize: vertical;
}

.form-feedback {
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 500;
}

.form-feedback.success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.form-feedback.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 24px 40px;
    background-color: rgba(255, 255, 255, 0.55);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-tag {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 420px;
}

.footer-divider {
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: var(--text-dark);
}

.footer-locations-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.legal-dot {
    width: 4px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggering reveals */
.hero-title.reveal { transition-delay: 0.1s; }
.hero-subtitle.reveal { transition-delay: 0.2s; }
.hero-actions.reveal { transition-delay: 0.3s; }
.hero-locations.reveal { transition-delay: 0.4s; }

/* ==========================================================================
   PHILOSOPHY & TRENDS SECTION
   ========================================================================== */
.philosophy-section {
    padding: 100px 24px;
    border-top: 1px solid var(--border-color);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.philosophy-card .card-inner {
    padding: 48px 40px;
}

.philosophy-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.philosophy-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-hero {
        grid-template-columns: 1fr;
        text-align: center !important;
        gap: 50px;
        padding-top: 40px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-title, .hero-subtitle {
        text-align: center;
    }

    .hero-locations {
        justify-content: center;
    }

    .hero-visual-panel {
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-visual {
        order: 1;
    }
    
    .about-info {
        order: 2;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-details-col {
        text-align: center;
    }
    
    .contact-info-list {
        align-items: center;
    }
}

@media (max-width: 768px) {
    /* Custom cursor hide on mobile */
    .custom-cursor, .custom-cursor-glow {
        display: none !important;
    }
    
    .hero-title {
        font-size: 38px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 15px;
        text-align: center;
    }
    
    .bento-hero-wrapper {
        transform: none !important;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-locations {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding: 20px;
    }
    
    .location-divider {
        display: none;
    }
    
    .location-item {
        justify-content: center;
        width: 100%;
    }
    
    /* Navigation drawer mobile */
    .mobile-nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: rgba(7, 7, 12, 0.96);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-color);
        padding: 100px 40px 40px;
        display: flex;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .contact-nav-btn {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

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

    .philosophy-card .card-inner {
        padding: 32px 24px;
    }
    
    .contact-box {
        padding: 30px;
    }
    
    .contact-form-col {
        padding: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}


