/* ==========================================================
   AIMNOD SERVICES - COSMIC DARK THEME
   A Premium, Modern, Responsive Design
   ========================================================== */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --primary-light: #A78BFA;
    --primary-glow: rgba(124, 58, 237, 0.3);
    
    /* Secondary Colors */
    --secondary: #EC4899;
    --secondary-dark: #DB2777;
    --secondary-light: #F472B6;
    --secondary-glow: rgba(236, 72, 153, 0.3);
    
    /* Accent Colors */
    --accent: #F59E0B;
    --accent-dark: #D97706;
    --accent-light: #FBBF24;
    --accent-glow: rgba(245, 158, 11, 0.3);
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #F59E0B 100%);
    --gradient-purple: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    --gradient-pink: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
    --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-dark: linear-gradient(135deg, #0F0A1A 0%, #1A1028 100%);
    
    /* Backgrounds */
    --bg-dark: #0F0A1A;
    --bg-darker: #08040D;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    /* Borders */
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-primary: rgba(124, 58, 237, 0.2);
    
    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(124, 58, 237, 0.15);
    --shadow-md: 0 8px 40px rgba(124, 58, 237, 0.2);
    --shadow-lg: 0 16px 60px rgba(124, 58, 237, 0.25);
    --shadow-xl: 0 24px 80px rgba(124, 58, 237, 0.3);
    
    /* Text */
    --text-white: #FFFFFF;
    --text-light: #E5E5F0;
    --text-muted: #A0A0B8;
    --text-dim: #6B6B85;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Font */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-main);
    border-radius: 50px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-purple {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-pink {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary-light);
    margin-bottom: 14px;
}

.section-tag i {
    font-size: 0.6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ===== Glassmorphism ===== */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: var(--shadow-md);
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-4px);
}

.btn-glow {
    box-shadow: 0 0 50px var(--primary-glow);
}

.btn-glow:hover {
    box-shadow: 0 0 80px var(--primary-glow);
}

/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(15, 10, 26, 0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 4, 13, 0.95);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
}

.nav-brand .logo {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}

.btn-nav {
    padding: 8px 24px !important;
    background: var(--gradient-main) !important;
    border-radius: 50px !important;
    color: white !important;
    font-weight: 600 !important;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-sm) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    background: var(--bg-darker);
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -30%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px 6px 8px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34D399;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.6); opacity: 0.5; }
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-title .gradient-text {
    position: relative;
}

.hero-title .gradient-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 4px;
    opacity: 0.2;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 44px;
}

.hero-stats .stat {
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.hero-stats .stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual .hero-image {
    width: 100%;
    max-width: 520px;
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-24px) scale(1.02); }
}

.hero-visual .hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(124, 58, 237, 0.15));
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-cards .card {
    position: absolute;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    animation: floatCard 5s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating-cards .card i {
    font-size: 1.3rem;
}

.floating-cards .card i.fa-code { color: #7C3AED; }
.floating-cards .card i.fa-mobile-alt { color: #EC4899; }
.floating-cards .card i.fa-cloud { color: #F59E0B; }
.floating-cards .card i.fa-shield-alt { color: #34D399; }

.floating-cards .card-1 {
    top: 5%;
    left: -15%;
    animation-delay: 0s;
}
.floating-cards .card-2 {
    top: 30%;
    right: -18%;
    animation-delay: 1.2s;
}
.floating-cards .card-3 {
    bottom: 15%;
    left: -10%;
    animation-delay: 2.4s;
}
.floating-cards .card-4 {
    bottom: 35%;
    right: -12%;
    animation-delay: 3.6s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.15;
    animation: particleFloat 25s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ==========================================================
   PROJECTS SECTION
   ========================================================== */
.projects-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-12px);
    border-color: rgba(124, 58, 237, 0.15);
    box-shadow: var(--shadow-lg);
}

.project-card .project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.06);
}

.project-card .project-image .overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 26, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-image .overlay {
    opacity: 1;
}

.project-card .project-image .overlay a {
    padding: 12px 28px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.project-card:hover .project-image .overlay a {
    transform: translateY(0);
}

.project-status {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.ongoing {
    background: rgba(236, 72, 153, 0.2);
    color: var(--secondary-light);
    border: 1px solid rgba(236, 72, 153, 0.2);
}
.project-status.completed {
    background: rgba(52, 211, 153, 0.2);
    color: #34D399;
    border: 1px solid rgba(52, 211, 153, 0.2);
}
.project-status.upcoming {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-light);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.project-card .project-info {
    padding: 24px 26px 28px;
}

.project-card .project-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-card .project-info p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.project-link:hover {
    gap: 16px;
    color: var(--secondary-light);
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================================
   WHAT WE ARE
   ========================================================== */
.what-we-are {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
}

.what-we-are::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wwa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.wwa-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.wwa-content > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.wwa-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.wwa-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.wwa-features .feature i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.wwa-image {
    position: relative;
}

.wwa-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.wwa-image .stats-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 20px 28px;
    background: rgba(15, 10, 26, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    display: flex;
    gap: 32px;
}

.wwa-image .stats-float .item {
    text-align: center;
}

.wwa-image .stats-float .item .num {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wwa-image .stats-float .item .label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================
   CAREER SECTION
   ========================================================== */
.career-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.career-card {
    padding: 30px 32px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.career-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.12);
    box-shadow: var(--shadow-md);
}

.career-card .icon {
    width: 54px;
    height: 54px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.career-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.career-card .meta {
    display: flex;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.career-card .meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.career-card .tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.career-card .tags .tag {
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tag.full-time { background: rgba(124, 58, 237, 0.15); color: var(--primary-light); }
.tag.part-time { background: rgba(245, 158, 11, 0.15); color: var(--accent-light); }
.tag.internship { background: rgba(236, 72, 153, 0.15); color: var(--secondary-light); }
.tag.contract { background: rgba(52, 211, 153, 0.15); color: #34D399; }
.tag.paid { background: rgba(52, 211, 153, 0.12); color: #34D399; }
.tag.free { background: rgba(251, 191, 36, 0.12); color: var(--accent-light); }

.career-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* ==========================================================
   CONTACT SECTION
   ========================================================== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    padding: 40px 42px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
}

.contact-form-wrapper .form-group {
    margin-bottom: 18px;
}

.contact-form-wrapper .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.04);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.06);
}

.contact-form-wrapper .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-grid .info-card {
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.contact-info-grid .info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.12);
}

.contact-info-grid .info-card i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.contact-info-grid .info-card i.fa-phone-alt { color: #7C3AED; }
.contact-info-grid .info-card i.fa-envelope { color: #EC4899; }
.contact-info-grid .info-card i.fa-map-marker-alt { color: #F59E0B; }
.contact-info-grid .info-card i.fa-clock { color: #34D399; }

.contact-info-grid .info-card h4 {
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-info-grid .info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
    padding: 70px 0 24px;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 36px;
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 280px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-main);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.footer-links h4 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--primary);
}

.footer-newsletter button {
    padding: 12px 20px;
    background: var(--gradient-main);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-bottom .legal {
    display: flex;
    gap: 24px;
}

.footer-bottom .legal a:hover {
    color: var(--text-muted);
}

/* ==========================================================
   RESPONSIVE DESIGN - SECTION MODULES FIXED
   ========================================================== */

/* === Laptops & Desktops (1200px - 1024px) === */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .floating-cards .card-1,
    .floating-cards .card-3 {
        left: -5%;
    }
    .floating-cards .card-2,
    .floating-cards .card-4 {
        right: -5%;
    }
}

/* === Tablets & Small Laptops (1024px - 768px) === */
@media (max-width: 1024px) {
    .hero .container {
        gap: 40px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* === Tablets (768px - 576px) === */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 12px 0;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 24px;
        background: rgba(8, 4, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        padding: 10px 0;
        font-size: 1rem;
    }
    .btn-nav {
        text-align: center;
        padding: 12px !important;
    }
    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-desc {
        margin: 0 auto 28px;
        font-size: 1rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
        gap: 28px;
    }
    .hero-visual {
        display: none;
    }
    .floating-cards {
        display: none;
    }
    .hero-particles {
        display: none;
    }

    /* What We Are */
    .wwa-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .wwa-features {
        justify-items: center;
    }
    .wwa-image .stats-float {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -16px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-bottom .legal {
        justify-content: center;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
    }
    .section-header p {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

/* === Mobile Phones (576px - 400px) === */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero-title {
        font-size: 2rem;
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    .hero-stats .stat-label {
        font-size: 0.75rem;
    }

    /* Projects & Career Grids */
    .projects-grid,
    .career-grid {
        grid-template-columns: 1fr;
    }

    /* What We Are */
    .wwa-features {
        grid-template-columns: 1fr;
    }
    .wwa-content h3 {
        font-size: 1.5rem;
    }
    .wwa-image .stats-float {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }

    /* Contact */
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 24px 16px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.6rem;
    }
    .section-header {
        margin-bottom: 36px;
    }

    /* Footer */
    .footer-newsletter form {
        flex-direction: column;
    }
    .footer-newsletter button {
        width: 100%;
        justify-content: center;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 10px 22px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    /* Project Cards */
    .project-card .project-info {
        padding: 18px 20px 22px;
    }
    .project-card .project-image {
        height: 180px;
    }

    /* Career Cards */
    .career-card {
        padding: 22px 20px;
    }
}

/* === Small Phones (400px and below) === */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.6rem;
    }
    .section-header h2 {
        font-size: 1.3rem;
    }
    .container {
        padding: 0 12px;
    }
    .hero-stats {
        gap: 14px;
    }
    .hero-stats .stat-number {
        font-size: 1.2rem;
    }
    .brand-text {
        font-size: 1rem;
    }
    .nav-brand .logo {
        height: 30px;
    }
}

/* ==========================================================
   UTILITY CLASSES
   ========================================================== */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 48px; }
.mb-1 { margin-bottom: 12px; }
.mb-2 { margin-bottom: 24px; }
.mb-3 { margin-bottom: 48px; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ==========================================================
   ADMIN PANEL OVERRIDES
   ========================================================== */
.admin-wrapper .admin-sidebar {
    background: rgba(8, 4, 13, 0.95);
    backdrop-filter: blur(16px);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.admin-wrapper .admin-sidebar .menu-item {
    transition: var(--transition);
}

.admin-wrapper .admin-sidebar .menu-item:hover,
.admin-wrapper .admin-sidebar .menu-item.active {
    background: rgba(124, 58, 237, 0.08);
    color: var(--text-white);
}

.admin-wrapper .admin-main {
    background: var(--bg-dark);
}

.admin-wrapper .table-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    overflow-x: auto;
}

.admin-wrapper table th {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    padding: 14px 18px;
}

.admin-wrapper table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.admin-wrapper table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-xl);
}

.modal-content .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-content .modal-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
}

.modal-content .modal-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content .modal-close:hover {
    background: rgba(236, 72, 153, 0.1);
    color: var(--secondary-light);
    border-color: rgba(236, 72, 153, 0.2);
}

/* ==========================================================
   ADDITIONAL ANIMATIONS
   ========================================================== */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer-text {
    background: linear-gradient(90deg, 
        var(--text-white) 0%, 
        var(--primary-light) 25%, 
        var(--secondary-light) 50%, 
        var(--primary-light) 75%, 
        var(--text-white) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}