@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-primary: #060a13;
    --bg-secondary: #0b1120;
    --bg-tertiary: #111a2e;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-primary: #00f5d4; /* Neon cyan */
    --accent-secondary: #3b82f6; /* Electric blue */
    --accent-glow: rgba(0, 245, 212, 0.15);
    --accent-emergency: #ff2a5f; /* Warning/Safety red */
    --accent-emergency-glow: rgba(255, 42, 95, 0.2);
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(11, 17, 32, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-highlight: rgba(255, 255, 255, 0.02);
    --shadow-glow: 0 0 25px var(--accent-glow);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

button, input, textarea, select {
    font-family: inherit;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Custom Badges & Tags */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.badge-cyan {
    background: rgba(0, 245, 212, 0.08);
    color: var(--accent-primary);
    border-color: rgba(0, 245, 212, 0.2);
}

.badge-blue {
    background: rgba(59, 130, 246, 0.08);
    color: var(--accent-secondary);
    border-color: rgba(59, 130, 246, 0.2);
}

.badge-red {
    background: rgba(255, 42, 95, 0.08);
    color: var(--accent-emergency);
    border-color: rgba(255, 42, 95, 0.2);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Dynamic Gradient Background Elements */
.glow-bg {
    position: relative;
}

.glow-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(0, 245, 212, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 35px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--glass-highlight) 0%, transparent 100%);
    z-index: -1;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 245, 212, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 245, 212, 0.05);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, #1e40af 100%);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #00bfa6 100%);
    color: #060a13;
    box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 245, 212, 0.5), 0 0 15px var(--accent-primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(0, 245, 212, 0.03);
    transform: translateY(-2px);
}

/* Sticky Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 10, 19, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(6, 10, 19, 0.9);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

header.scrolled .container {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.logo svg, .logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 245, 212, 0.15));
    transition: var(--transition-smooth);
}

header.scrolled .logo img {
    height: 38px;
}

.logo span {
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px var(--accent-primary);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Footer Section */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    background: rgba(0, 245, 212, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 245, 212, 0.2);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
    position: relative;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-primary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* HOME PAGE SPECIFIC STYLES */

/* Hero Banner */
.hero {
    position: relative;
    padding: 180px 0 120px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 45%),
                radial-gradient(circle at bottom left, rgba(0, 245, 212, 0.05), transparent 40%);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, transparent, var(--bg-primary));
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 30%, #93c5fd 70%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual .mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    animation: float 6s ease-in-out infinite;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 245, 212, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.12) 0%, transparent 70%);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Home Overview (Mission & Vision teaser) */
.home-overview {
    background: var(--bg-secondary);
    position: relative;
}

.overview-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.overview-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: rgba(0, 245, 212, 0.05);
    border: 1px solid rgba(0, 245, 212, 0.15);
    font-size: 1.8rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.05);
}

.overview-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.overview-card p {
    color: var(--text-secondary);
}

/* Home Flagship Highlight (NETRA) */
.home-product-highlight {
    position: relative;
    overflow: hidden;
}

.home-product-highlight .grid-2 {
    gap: 60px;
}

.product-highlight-content {
    padding-right: 20px;
}

.product-features-brief {
    margin: 30px 0;
}

.feature-brief-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.feature-brief-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

/* Services Home Grid */
.home-services {
    background: var(--bg-secondary);
}

.service-home-card {
    height: 100%;
}

.service-home-card i {
    font-size: 2.2rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-home-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.service-home-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-learn-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-learn-more i {
    font-size: 0.8rem;
    margin-bottom: 0;
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--accent-primary);
}

.service-home-card:hover .service-learn-more i {
    transform: translateX(4px);
    transition: var(--transition-smooth);
}

/* Home Call To Action Section */
.home-cta-section {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.home-cta-card {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.home-cta-card h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-cta-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ABOUT PAGE SPECIFIC STYLES */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 160px 0 80px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Corporate Data Board */
.corporate-meta-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.meta-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.meta-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.value-card i {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgba(0, 245, 212, 0.05);
    border: 1px solid rgba(0, 245, 212, 0.1);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* SERVICES PAGE SPECIFIC STYLES */

.services-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.service-detailed-card {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
    align-items: center;
}

.service-detailed-card:nth-child(even) {
    direction: rtl;
}

.service-detailed-card:nth-child(even) .service-detailed-text {
    direction: ltr;
}

.service-detailed-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
}

.service-detailed-icon-box i {
    font-size: 4rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-detailed-text h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.service-detailed-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.service-bullet-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.service-bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.service-bullet-item i {
    color: var(--accent-primary);
}

.service-benefit-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    font-size: 0.85rem;
    font-weight: 600;
}

/* PRODUCTS PAGE SPECIFIC STYLES */

.product-overview-section {
    position: relative;
}

.product-overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.product-mockup-wrapper img {
    max-width: 320px;
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 245, 212, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-solution-box {
    margin-top: 80px;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.split-card {
    padding: 40px;
    border-radius: var(--border-radius-md);
    background: var(--glass-bg);
}

.split-card-problem {
    border-left: 4px solid var(--accent-emergency);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
}

.split-card-solution {
    border-left: 4px solid var(--accent-primary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
}

.split-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.split-card-problem h3 i {
    color: var(--accent-emergency);
}

.split-card-solution h3 i {
    color: var(--accent-primary);
}

.split-card-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.split-card-list li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.split-card-problem .split-card-list li::before {
    background-color: var(--accent-emergency);
    box-shadow: 0 0 8px var(--accent-emergency);
}

.split-card-solution .split-card-list li::before {
    background-color: var(--accent-primary);
    box-shadow: 0 0 8px var(--accent-primary);
}

.split-card-list li strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.split-card-list li span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: block;
}

/* TEAM PAGE SPECIFIC STYLES */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: center;
}

.team-avatar-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-avatar-box i {
    font-size: 4rem;
    color: var(--text-muted);
}

.team-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.team-role {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.team-focus-area {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.focus-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.team-socials {
    display: flex;
    gap: 12px;
}

.team-socials a {
    color: var(--text-muted);
    font-size: 1rem;
}

.team-socials a:hover {
    color: var(--accent-primary);
}

/* PROJECTS PAGE SPECIFIC STYLES */

.projects-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card-detail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.project-title-box h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.project-status {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: rgba(0, 245, 212, 0.08);
    color: var(--accent-primary);
    border: 1px solid rgba(0, 245, 212, 0.2);
}

.status-development {
    background: rgba(251, 191, 36, 0.08);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.project-desc-detail {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.project-section-subheading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.project-goals-list {
    margin-bottom: 24px;
}

.project-goals-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.project-goals-list li i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

/* CONTACT PAGE SPECIFIC STYLES */

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    background: rgba(0, 245, 212, 0.05);
    border: 1px solid rgba(0, 245, 212, 0.15);
    font-size: 1.4rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.contact-info-details h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.contact-info-details p, .contact-info-details a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-info-details a:hover {
    color: var(--accent-primary);
}

/* Contact Form */
.contact-form-card {
    position: relative;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.1);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.form-label {
    position: absolute;
    left: 20px;
    top: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    padding: 0 8px;
    background: var(--bg-secondary);
    color: var(--accent-primary);
    border-radius: 4px;
}

.error-message {
    font-size: 0.8rem;
    color: var(--accent-emergency);
    margin-top: 6px;
    display: none;
    align-items: center;
    gap: 6px;
}

.form-group.has-error .form-input {
    border-color: var(--accent-emergency);
    box-shadow: 0 0 15px rgba(255, 42, 95, 0.1);
}

.form-group.has-error .error-message {
    display: flex;
}

.form-group.has-error .form-label {
    color: var(--accent-emergency) !important;
}

/* Success Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 10, 19, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--accent-primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 245, 212, 0.1);
    border-radius: var(--border-radius-md);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition-bounce);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 245, 212, 0.1);
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    font-size: 2.5rem;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.2);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Map Placeholder / Embedding */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    position: relative;
}

.map-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border-color) 1px, transparent 0px);
    background-size: 24px 24px;
    z-index: 1;
    opacity: 0.6;
}

.map-placeholder-content {
    position: relative;
    z-index: 2;
}

.map-placeholder-content i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(0, 245, 212, 0.3);
}

.map-placeholder-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.map-placeholder-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0 auto 16px auto;
}

/* Mobile & Tablet Responsiveness */

@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
        gap: 10px;
    }
    
    .logo img {
        height: 38px;
    }
    
    header.scrolled .logo img {
        height: 32px;
    }

    .section-padding {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 140px 0 80px 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin: 0 auto 30px auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    header.scrolled .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .service-detailed-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-detailed-card:nth-child(even) {
        direction: ltr;
    }
    
    .service-bullet-list {
        grid-template-columns: 1fr;
    }
    
    .product-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-mockup-wrapper {
        order: -1;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-avatar-box {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .team-focus-area {
        justify-content: center;
    }
    
    .team-socials {
        justify-content: center;
    }
    
    .projects-grid-page {
        grid-template-columns: 1fr;
    }
    
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
    
    .corporate-meta-board {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.05rem;
        gap: 6px;
    }
    
    .logo img {
        height: 30px;
    }
    
    header.scrolled .logo img {
        height: 24px;
    }

    .container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .home-cta-card h2 {
        font-size: 2rem;
    }
}
