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

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

:root {
    --midnight: #050915;
    --deep-indigo: #14182f;
    --royal-blue: #4338CA;
    --electric-indigo: #6b7bff;
    --cyan: #4ce0ff;
    --orange: #ff9a7b;
    --mint-green: #55f7c6;
    --lavender: #c3b8ff;
    --pearl: #f7f4ff;
    --dark: #0d0f1d;
    --gray: #5d637a;
    --light-gray: #f4f6fb;
    --white: #ffffff;
    --card: rgba(255,255,255,0.08);
    --card-border: rgba(255,255,255,0.15);
    --glow: rgba(76,224,255,0.35);
    --text-primary: #f6f7ff;
    --text-muted: rgba(246,247,255,0.8);
}

body {
    font-family: 'Space Grotesk', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.65;
    color: var(--text-primary);
    background: radial-gradient(circle at 10% 20%, #1f1b3a 0%, #080a16 45%, #05060d 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    opacity: 0.35;
}

body::before {
    background: var(--electric-indigo);
    top: -220px;
    left: -180px;
}

body::after {
    background: var(--mint-green);
    bottom: -260px;
    right: -120px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(76, 224, 255, 0.1), rgba(85, 247, 198, 0.05));
    opacity: 1;
    transition: opacity 0.3s ease;
}

.logo:hover::before {
    opacity: 1;
}

.logo-graphic {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(76, 224, 255, 0.2));
}

.logo:hover .logo-graphic {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(76, 224, 255, 0.4));
}

.logo-graphic.small {
    width: 44px;
    height: 44px;
}

.logo-image {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.2px;
    text-shadow: 0 0 30px rgba(76, 224, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.logo:hover .logo-main {
    background: linear-gradient(135deg, #4ce0ff 0%, #55f7c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(76, 224, 255, 0.5);
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.logo:hover .logo-sub {
    color: rgba(76, 224, 255, 0.9);
}

.tagline {
    font-size: 9px;
    font-weight: 600;
    color: rgba(76, 224, 255, 0.7);
    margin-top: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.2;
}

.logo:hover .tagline,
.footer-logo:hover .tagline {
    color: rgba(76, 224, 255, 1);
    text-shadow: 0 0 8px rgba(76, 224, 255, 0.4);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(5, 9, 21, 0.95) 0%, rgba(7, 12, 28, 0.95) 50%, rgba(5, 9, 21, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(76, 224, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(76, 224, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.8px;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--mint-green));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--cyan);
    background: rgba(76, 224, 255, 0.08);
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a.active {
    color: var(--cyan);
    background: rgba(76, 224, 255, 0.12);
}

.nav-menu a.active::before {
    width: 80%;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--mint-green));
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(76, 224, 255, 0.6);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 0 120px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(76,224,255,0.25), transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(195,184,255,0.3), transparent 55%);
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.hero-content {
    text-align: left;
    max-width: 560px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--mint-green));
    border-radius: 999px;
}

.hero-title {
    font-size: clamp(2.8rem, 4vw, 4.3rem);
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-title span {
    color: var(--mint-green);
    text-shadow: 0 10px 45px rgba(85, 247, 198, 0.35);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.badge {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.badge-glow {
    border-color: transparent;
    background: linear-gradient(135deg, rgba(76,224,255,0.2), rgba(85,247,198,0.15));
    box-shadow: 0 0 25px rgba(76,224,255,0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-buttons .btn {
    box-shadow: 0 20px 40px rgba(11, 15, 32, 0.35);
}

.hero-media {
    position: relative;
    min-height: 420px;
    max-width: 420px;
    margin: 0 auto;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    animation: pulse 12s infinite linear;
}

.hero-ring-outer {
    width: 420px;
    height: 420px;
    top: 10px;
    left: 10px;
}

.hero-ring-inner {
    width: 260px;
    height: 260px;
    top: 90px;
    left: 90px;
    animation-duration: 18s;
}

.gradient-orbs {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.8;
    animation: float 16s infinite ease-in-out;
}

.orb-one {
    width: 160px;
    height: 160px;
    background: var(--cyan);
    top: 10%;
    left: 20%;
}

.orb-two {
    width: 220px;
    height: 220px;
    background: var(--lavender);
    bottom: 15%;
    right: 5%;
    animation-delay: 4s;
}

.orb-three {
    width: 140px;
    height: 140px;
    background: var(--mint-green);
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
}

.floating-card {
    position: absolute;
    padding: 24px;
    border-radius: 18px;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(11, 14, 35, 0.8);
    color: var(--text-primary);
    box-shadow: 0 25px 60px rgba(5, 5, 12, 0.6);
    width: 220px;
    animation: float 14s infinite;
}

.floating-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.floating-card span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.floating-card .card-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--cyan);
    margin-bottom: 12px;
    display: block;
}

.card-primary {
    top: 40px;
    right: 0;
    background: linear-gradient(145deg, rgba(67, 56, 202, 0.85), rgba(91, 75, 255, 0.8));
}

.card-secondary {
    bottom: 25px;
    left: 10%;
}

.stat-chip {
    position: absolute;
    bottom: 140px;
    right: 15%;
    padding: 18px 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    backdrop-filter: blur(12px);
}

.stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--mint-green);
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 12px;
}

.chip-positive {
    background: rgba(85,247,198,0.12);
    color: var(--mint-green);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 34px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(120deg, var(--royal-blue), var(--electric-indigo), var(--cyan));
    color: var(--white);
    box-shadow: 0 20px 45px rgba(44, 62, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 45px rgba(44, 62, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.35);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: var(--mint-green);
}

.btn-outline {
    background: transparent;
    color: var(--royal-blue);
    border-color: var(--royal-blue);
}

.btn-outline:hover {
    background: var(--royal-blue);
    color: var(--white);
}

/* Section Styles */
section:not(.hero):not(.page-header) {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Playfair Display', 'Space Grotesk', serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--royal-blue), var(--cyan));
    border-radius: 999px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Services Preview */
.services-preview {
    background: rgba(255,255,255,0.92);
    border-radius: 40px;
    margin: 60px 0;
    border: 1px solid rgba(13,15,29,0.05);
    box-shadow: 0 25px 60px rgba(6, 8, 20, 0.12);
    padding: 80px 0;
}

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

.service-card {
    background: rgba(255,255,255,0.9);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 25px 45px rgba(6,8,20,0.08);
    border: 1px solid rgba(11,14,35,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76,224,255,0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 35px 65px rgba(6,8,20,0.12);
    border-color: rgba(76,224,255,0.3);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    box-shadow: 0 20px 35px rgba(30, 58, 138, 0.25);
}

.service-icon.cyan {
    background: var(--cyan);
}

.service-icon.orange {
    background: var(--orange);
}

.service-icon.royal-blue {
    background: var(--royal-blue);
}

.service-icon.mint-green {
    background: var(--mint-green);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* About Preview */
.about-preview {
    background: transparent;
    padding: 0 0 80px;
}

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

.about-preview .about-content {
    background: rgba(255,255,255,0.92);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(6,8,20,0.12);
    border: 1px solid rgba(13,15,29,0.05);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(6,8,20,0.12);
    border: 1px solid rgba(13,15,29,0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--royal-blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(5, 9, 21, 0.95) 0%, rgba(7, 12, 28, 0.95) 50%, rgba(5, 9, 21, 0.95) 100%);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(76, 224, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(76, 224, 255, 0.15);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(76, 224, 255, 0.1), rgba(85, 247, 198, 0.05));
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-logo:hover::before {
    opacity: 1;
}

.footer-logo .logo-graphic {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(76, 224, 255, 0.2));
}

.footer-logo:hover .logo-graphic {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(76, 224, 255, 0.4));
}

.footer-logo .logo-main {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.2px;
    text-shadow: 0 0 30px rgba(76, 224, 255, 0.3);
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-main {
    background: linear-gradient(135deg, #4ce0ff 0%, #55f7c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(76, 224, 255, 0.5);
}

.footer-logo .logo-sub {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-sub {
    color: rgba(76, 224, 255, 0.9);
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--cyan);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info i {
    color: var(--cyan);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* Page Header */
.page-header {
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.25), transparent 60%), linear-gradient(120deg, var(--royal-blue), var(--electric-indigo));
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    border-radius: 32px;
    margin: 40px 20px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 35px 60px rgba(5,7,22,0.35);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 70px;
    background: rgba(255,255,255,0.94);
    border-radius: 32px;
    margin: 40px 0;
    box-shadow: 0 25px 50px rgba(8, 12, 30, 0.12);
    border: 1px solid rgba(13,15,29,0.05);
}

.content-section[style*="background"] {
    border: none;
    box-shadow: none;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.content-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 600;
}

/* Contact Form Styles */
.contact-form-wrapper,
.contact-info-wrapper {
    flex: 1;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-icon.cyan {
    background: var(--cyan);
}

.contact-icon.orange {
    background: var(--orange);
}

.contact-icon.royal-blue {
    background: var(--royal-blue);
}

.contact-icon.mint-green {
    background: var(--mint-green);
}

.contact-item h3 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(5, 7, 20, 0.95);
        border: 1px solid rgba(255,255,255,0.08);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 25px 45px rgba(3, 4, 12, 0.6);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }
}

