/* Brand Color Variables */
:root {
    --cyan: #00E3FF;
    --electric-blue: #0085FF;
    --silver: #BFC6D1;
    --charcoal: #0C0F16;
    --cobalt: #005BFF;
    --teal: #00B3B8;
    --white: #FFFFFF;
    --dark-bg: #0A0D14;
    --card-bg: rgba(191, 198, 209, 0.05);
    --border-glow: rgba(0, 227, 255, 0.3);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--silver);
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 100%);
    overflow-x: hidden;
}

/* Futuristic scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--cyan), var(--electric-blue));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--electric-blue), var(--cobalt));
}

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

/* Glowing text effect */
.glow-text {
    text-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan), 0 0 30px var(--cyan);
}

/* Header and Navigation */
.header {
    background: rgba(12, 15, 22, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-glow);
    box-shadow: 0 4px 20px rgba(0, 227, 255, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--cyan));
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--cyan), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 20px var(--cyan);
}

.ltd {
    font-size: 14px;
    color: var(--silver);
    font-weight: 400;
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    height: 80px;
}

.nav-links a {
    text-decoration: none;
    color: var(--silver);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--electric-blue));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown menu styles */
.dropdown {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding: 8px 0;
    height: 100%;
    box-sizing: border-box;
    line-height: inherit;
    margin: 0;
    transform: none;
    white-space: nowrap;
    overflow: visible;
    z-index: 1;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    flex: 0 1 auto;
    align-self: auto;
    order: 0;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    min-width: 0;
    max-width: none;
    width: auto;
    min-height: 0;
}

.dropdown > a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    color: var(--cyan);
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Sub-dropdown arrow */
.dropdown .dropdown > a::after {
    content: '▶';
    transform: rotate(0deg);
}

.dropdown .dropdown:hover > a::after {
    transform: rotate(90deg);
}

.dropdown-content {
    position: absolute;
    background: linear-gradient(135deg, rgba(12, 15, 22, 0.98) 0%, rgba(10, 13, 20, 0.98) 100%);
    backdrop-filter: blur(25px);
    min-width: 220px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 227, 255, 0.1);
    z-index: 1001;
    border-radius: 12px;
    border: 1px solid var(--border-glow);
    top: 100%;
    left: 0;
    transform: translateX(0) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 8px 0;
}

/* Nested dropdown positioning */
.dropdown .dropdown-content {
    left: 100%;
    top: 0;
    transform: translateX(10px) translateY(0);
    min-width: 200px;
    z-index: 1002;
}

.dropdown:hover > .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
}

.dropdown .dropdown:hover > .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
}

.dropdown-content a {
    color: var(--silver);
    padding: 14px 20px;
    text-decoration: none;
    display: block !important;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 2px 8px;
    position: relative;
    overflow: hidden;
}

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

.dropdown-content a:hover::before {
    left: 100%;
}

.dropdown-content a:hover {
    background: rgba(0, 227, 255, 0.08);
    color: var(--cyan);
    text-shadow: 0 0 15px var(--cyan);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 227, 255, 0.2);
}

.nav-links a,
.dropdown > a {
    text-decoration: none;
    color: var(--silver);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    padding: 0;
    display: inline-block;
    vertical-align: baseline;
}

.nav-links a::after,
.dropdown > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--electric-blue));
    transition: width 0.3s ease;
}

.nav-links a:hover,
.dropdown > a:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

.nav-links a:hover::after,
.dropdown > a:hover::after {
    width: 100%;
}

.dropdown a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--electric-blue));
    transition: width 0.3s ease;
}

.dropdown a:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

.dropdown a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: radial-gradient(ellipse at center, rgba(0, 227, 255, 0.1) 0%, transparent 70%),
                linear-gradient(135deg, var(--charcoal) 0%, var(--dark-bg) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23005BFF" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--white), var(--cyan), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 0 30px var(--cyan);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px var(--cyan)); }
    100% { filter: drop-shadow(0 0 20px var(--electric-blue)); }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--silver);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(45deg, var(--cyan), var(--electric-blue));
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(0, 227, 255, 0.3);
    border: 1px solid var(--cyan);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 227, 255, 0.5);
    background: linear-gradient(45deg, var(--electric-blue), var(--cobalt));
}

.btn-secondary {
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
    box-shadow: 0 0 20px rgba(0, 227, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--cyan);
    color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 227, 255, 0.4);
}

/* Enhanced Neural Network Visual */
.neural-network {
    position: relative;
    width: 400px;
    height: 400px;
    animation: networkRotate 30s linear infinite;
}

@keyframes networkRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.node {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, var(--cyan), var(--electric-blue));
    border-radius: 50%;
    box-shadow: 0 0 20px var(--cyan), 0 0 40px var(--cyan);
    animation: nodePulse 2s infinite;
}

.node:nth-child(1) { top: 80px; left: 80px; animation-delay: 0s; }
.node:nth-child(2) { top: 80px; right: 80px; animation-delay: 0.4s; }
.node:nth-child(3) { top: 180px; left: 180px; animation-delay: 0.8s; }
.node:nth-child(4) { bottom: 80px; left: 80px; animation-delay: 1.2s; }
.node:nth-child(5) { bottom: 80px; right: 80px; animation-delay: 1.6s; }
.node:nth-child(6) { top: 140px; left: 50px; animation-delay: 2s; }
.node:nth-child(7) { top: 140px; right: 50px; animation-delay: 2.4s; }
.node:nth-child(8) { top: 50px; left: 180px; animation-delay: 2.8s; }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--electric-blue), var(--teal));
    opacity: 0.8;
    animation: dataFlow 4s infinite;
    box-shadow: 0 0 10px var(--cyan);
}

.connection:nth-child(9) {
    top: 90px;
    left: 96px;
    width: 208px;
    transform: rotate(0deg);
}

.connection:nth-child(10) {
    top: 190px;
    left: 90px;
    width: 120px;
    transform: rotate(45deg);
}

.connection:nth-child(11) {
    bottom: 90px;
    left: 96px;
    width: 208px;
    transform: rotate(0deg);
}

.connection:nth-child(12) {
    top: 150px;
    left: 66px;
    width: 268px;
    transform: rotate(0deg);
}

@keyframes nodePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px var(--cyan), 0 0 40px var(--cyan);
    }
    50% { 
        transform: scale(1.3); 
        box-shadow: 0 0 30px var(--electric-blue), 0 0 60px var(--electric-blue);
    }
}

@keyframes dataFlow {
    0% { 
        opacity: 0.3;
        background: linear-gradient(90deg, var(--cyan), var(--electric-blue));
    }
    50% { 
        opacity: 1;
        background: linear-gradient(90deg, var(--electric-blue), var(--teal));
    }
    100% { 
        opacity: 0.3;
        background: linear-gradient(90deg, var(--teal), var(--cyan));
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--charcoal) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.about h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--white), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about p {
    font-size: 18px;
    text-align: center;
    color: var(--silver);
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--electric-blue), var(--teal));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.feature:hover::before {
    transform: translateX(0);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 227, 255, 0.2);
    border-color: var(--cyan);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.8;
}

.feature h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.feature p {
    color: var(--silver);
    margin: 0;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
}

.services h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(45deg, var(--white), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-glow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--cyan), transparent);
    animation: cardRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 0.1;
}

@keyframes cardRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 133, 255, 0.2);
    border-color: var(--electric-blue);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--silver);
    margin: 0;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--charcoal) 100%);
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.contact h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--white), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact > p {
    font-size: 18px;
    color: var(--silver);
    margin-bottom: 50px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 16px;
    color: var(--silver);
    padding: 20px;
    border-radius: 12px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 179, 184, 0.2);
    border-color: var(--teal);
}

.contact-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--silver);
    padding: 60px 0;
    border-top: 1px solid var(--border-glow);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links a {
    color: var(--silver);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 70px;
    }
    
    .nav-links {
        gap: 24px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .neural-network {
        width: 300px;
        height: 300px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .neural-network {
        width: 250px;
        height: 250px;
    }
}

/* Additional futuristic animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Particle effect background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--cyan);
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--charcoal) 100%);
    position: relative;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.contact-page h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--white), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-page > p {
    font-size: 18px;
    color: var(--silver);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 50px;
    align-items: start;
}

.contact-form-container {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 179, 184, 0.1);
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 179, 184, 0.2);
    border-color: var(--teal);
}

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

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(12, 15, 22, 0.7);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    color: var(--silver);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 227, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--silver);
    opacity: 0.6;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 179, 184, 0.2);
    border-color: var(--teal);
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-glow);
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.contact-detail p {
    color: var(--silver);
    margin: 0;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--electric-blue));
    transition: width 0.3s ease;
}

.social-link:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

.social-link:hover::after {
    width: 100%;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: rgba(0, 227, 255, 0.1);
    border: 1px solid var(--cyan);
    color: var(--cyan);
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
}

.form-message.info {
    background: rgba(0, 133, 255, 0.1);
    border: 1px solid var(--electric-blue);
    color: var(--electric-blue);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-page h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 120px 0 80px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
}