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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #0a0a0a;
}

/* Modern Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    transition: width 0.3s ease;
}

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

/* Ultra Modern Hero */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 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('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80') center/cover,
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #00d4ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: glow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    }
    to {
        filter: drop-shadow(0 0 30px rgba(255, 0, 128, 0.5));
        text-shadow: 0 0 40px rgba(255, 0, 128, 0.5);
    }
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #cccccc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-highlight {
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3), 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4), 0 0 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* Section Transition Elements */
.section-divider {
    height: 150px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 128, 0.15) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.section-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, #ff0080, transparent);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

/* Modern Services */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 0, 128, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 0 30px rgba(0, 212, 255, 0.3); }
    to { text-shadow: 0 0 50px rgba(0, 212, 255, 0.5); }
}

/* New Services Layout */
.service-item { margin: 6rem 0; position: relative; }
.service-item:first-child { margin-top: 4rem; }

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff0080);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.service-content:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.15), 0 0 40px rgba(0, 212, 255, 0.2);
}

.service-content.reverse { direction: rtl; }
.service-content.reverse > * { direction: ltr; }

.service-text { text-align: left; }

.service-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.service-text p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.service-features { display: flex; flex-wrap: wrap; gap: 1rem; }

.feature-tag {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 128, 0.1));
    color: #00d4ff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 128, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.service-visual { text-align: center; position: relative; }

.service-icon-large {
    font-size: 8rem;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    animation: float 4s ease-in-out infinite;
}

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

/* Portfolio Section */
.portfolio { padding: 120px 0; background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%); position: relative; }
.portfolio::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 70%, rgba(255, 0, 128, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%); pointer-events: none; }
.portfolio-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 2; }
.portfolio-text h2 { font-size: 3rem; font-weight: 800; margin-bottom: 2rem; background: linear-gradient(135deg, #ffffff, #00d4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: 0 0 30px rgba(0, 212, 255, 0.3); animation: titleGlow 3s ease-in-out infinite alternate; }
.portfolio-text p { font-size: 1.2rem; color: #cccccc; margin-bottom: 2rem; line-height: 1.8; text-shadow: 0 0 10px rgba(255, 255, 255, 0.05); }
.portfolio-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 3rem; }
.portfolio-stat { text-align: center; padding: 2rem; background: linear-gradient(145deg, #1a1a1a, #0f0f0f); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 0 20px rgba(0, 212, 255, 0.1); transition: all 0.3s ease; }
.portfolio-stat:hover { box-shadow: 0 0 30px rgba(0, 212, 255, 0.2); transform: translateY(-5px); }
.portfolio-number { font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, #00d4ff, #ff0080); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5)); }
.portfolio-label { color: #cccccc; font-weight: 500; font-size: 1.1rem; }
.portfolio-showcase { background: linear-gradient(135deg, #00d4ff, #ff0080); border-radius: 30px; padding: 4rem; text-align: center; color: white; position: relative; overflow: hidden; box-shadow: 0 0 40px rgba(0, 212, 255, 0.3); }
.portfolio-showcase::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="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); }
.portfolio-showcase i { font-size: 5rem; margin-bottom: 2rem; position: relative; z-index: 2; filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); }
.portfolio-showcase h3 { font-size: 2rem; margin-bottom: 1.5rem; position: relative; z-index: 2; text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); }
.portfolio-showcase p { position: relative; z-index: 2; font-size: 1.1rem; line-height: 1.8; }

/* Technologies Grid */
.technologies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 4rem; }
.tech-card { background: linear-gradient(145deg, #1a1a1a, #0f0f0f); padding: 3rem; border-radius: 25px; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.4s ease; text-align: center; position: relative; overflow: hidden; box-shadow: 0 0 20px rgba(0, 212, 255, 0.1); }
.tech-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #00d4ff, #ff0080); box-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
.tech-card:hover { transform: translateY(-15px) scale(1.02); border-color: rgba(0, 212, 255, 0.3); box-shadow: 0 25px 50px rgba(0, 212, 255, 0.1), 0 0 30px rgba(0, 212, 255, 0.2); }
.tech-icon { font-size: 3.5rem; margin-bottom: 2rem; background: linear-gradient(135deg, #00d4ff, #ff0080); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5)); }
.tech-card h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1.5rem; color: #ffffff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.1); }
.tech-card p { color: #cccccc; line-height: 1.8; font-size: 1.1rem; }

/* About Section Layout */
.about-content { display: flex; flex-direction: column; gap: 4rem; margin-top: 4rem; }
.about-text { text-align: center; max-width: 800px; margin: 0 auto; }
.about-text p { font-size: 1.2rem; color: #cccccc; margin-bottom: 2rem; line-height: 1.8; text-shadow: 0 0 10px rgba(255, 255, 255, 0.05); }
.about-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.feature-item { background: linear-gradient(145deg, #1a1a1a, #0f0f0f); padding: 3rem; border-radius: 25px; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.4s ease; text-align: center; position: relative; overflow: hidden; box-shadow: 0 0 20px rgba(0, 212, 255, 0.1); }
.feature-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #00d4ff, #ff0080); box-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
.feature-item:hover { transform: translateY(-15px) scale(1.02); border-color: rgba(0, 212, 255, 0.3); box-shadow: 0 25px 50px rgba(0, 212, 255, 0.1), 0 0 30px rgba(0, 212, 255, 0.2); }
.feature-item i { font-size: 3rem; margin-bottom: 2rem; background: linear-gradient(135deg, #00d4ff, #ff0080); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5)); }
.feature-item h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: #ffffff; text-shadow: 0 0 10px rgba(255, 255, 255, 0.1); }
.feature-item p { color: #cccccc; line-height: 1.6; font-size: 1rem; }

/* Contact Section */
.contact { padding: 120px 0; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%); color: white; position: relative; }
.contact::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 60% 60%, rgba(255, 0, 128, 0.05) 0%, transparent 50%); pointer-events: none; }
.contact-intro { text-align: center; font-size: 1.3rem; margin-bottom: 4rem; color: #cccccc; max-width: 600px; margin-left: auto; margin-right: auto; text-shadow: 0 0 10px rgba(255, 255, 255, 0.05); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; position: relative; z-index: 2; }
.contact-form-section { background: linear-gradient(145deg, #1a1a1a, #0f0f0f); padding: 3rem; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 0 30px rgba(0, 212, 255, 0.1); }
.contact-form-section h3 { font-size: 2rem; font-weight: 700; margin-bottom: 2rem; background: linear-gradient(135deg, #ffffff, #00d4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
.contact-form { display: flex; flex-direction: column; gap: 2rem; }
.form-group { position: relative; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1rem 1.5rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 15px; color: #ffffff; font-size: 1rem; transition: all 0.3s ease; outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #999999; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #00d4ff; box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); background: rgba(255, 255, 255, 0.1); }
.form-group label { position: absolute; top: -10px; left: 15px; background: #1a1a1a; padding: 0 10px; color: #00d4ff; font-size: 0.9rem; font-weight: 600; opacity: 0; transition: all 0.3s ease; }
.form-group input:focus + label, .form-group select:focus + label, .form-group textarea:focus + label, .form-group input:not(:placeholder-shown) + label, .form-group select:not([value=""]) + label, .form-group textarea:not(:placeholder-shown) + label { opacity: 1; transform: translateY(-5px); }
.submit-btn { background: linear-gradient(135deg, #00d4ff, #ff0080); color: white; border: none; padding: 1.2rem 2rem; border-radius: 25px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1rem; }
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4); }
.contact-info-section { display: flex; align-items: center; }
.contact-info-card { background: linear-gradient(145deg, #1a1a1a, #0f0f0f); padding: 3rem; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 0 30px rgba(0, 212, 255, 0.1); width: 100%; }
.contact-info-card h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; background: linear-gradient(135deg, #ffffff, #00d4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
.contact-info-card > p { color: #cccccc; margin-bottom: 3rem; font-size: 1.1rem; line-height: 1.6; }
.contact-methods { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }
.contact-method { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem; background: rgba(255, 255, 255, 0.05); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s ease; }
.contact-method:hover { background: rgba(0, 212, 255, 0.1); border-color: rgba(0, 212, 255, 0.3); transform: translateX(10px); }
.contact-icon { width: 60px; height: 60px; background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 128, 0.2)); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid rgba(0, 212, 255, 0.3); }
.contact-icon i { font-size: 1.5rem; color: #00d4ff; }
.contact-details h4 { color: #ffffff; font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.contact-details p { color: #00d4ff; font-size: 1.1rem; font-weight: 500; margin-bottom: 0.3rem; }
.contact-details span { color: #999999; font-size: 0.9rem; }
.social-contact h4 { color: #ffffff; font-size: 1.2rem; font-weight: 600; margin-bottom: 1.5rem; }
.social-buttons { display: flex; gap: 1rem; }
.social-btn { width: 50px; height: 50px; background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 128, 0.1)); border: 1px solid rgba(0, 212, 255, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #00d4ff; text-decoration: none; transition: all 0.3s ease; font-size: 1.2rem; }
.social-btn:hover { background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 128, 0.2)); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3); color: #ffffff; }

/* Modern Footer */
.footer { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%); color: #cccccc; padding: 0; border-top: 1px solid rgba(255, 255, 255, 0.1); position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.05) 0%, transparent 50%); pointer-events: none; }
.footer-content { max-width: 1400px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 3rem; position: relative; z-index: 2; }
.footer-section h4 { color: #ffffff; font-size: 1.3rem; font-weight: 700; margin-bottom: 2rem; text-shadow: 0 0 10px rgba(255, 255, 255, 0.1); }
.footer-brand .footer-logo { font-size: 2rem; font-weight: 800; background: linear-gradient(135deg, #00d4ff, #ff0080); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1.5rem; text-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
.footer-brand p { color: #cccccc; line-height: 1.8; margin-bottom: 2rem; font-size: 1rem; }
.social-links { display: flex; gap: 1rem; }
.social-link { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 128, 0.1)); border: 1px solid rgba(0, 212, 255, 0.3); border-radius: 50%; color: #00d4ff; text-decoration: none; transition: all 0.3s ease; font-size: 1.2rem; }
.social-link:hover { background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 128, 0.2)); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3); color: #ffffff; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: #cccccc; text-decoration: none; transition: all 0.3s ease; font-size: 0.95rem; }
.footer-links a:hover { color: #00d4ff; text-shadow: 0 0 10px rgba(0, 212, 255, 0.5); transform: translateX(5px); }
.contact-info-footer { margin-bottom: 2rem; }
.contact-item-footer { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; color: #cccccc; }
.contact-item-footer i { color: #00d4ff; font-size: 1.1rem; width: 20px; }
.contact-item-footer span { font-size: 0.95rem; }
.newsletter h5 { color: #ffffff; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.newsletter p { color: #cccccc; font-size: 0.9rem; margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-input { flex: 1; padding: 0.8rem 1rem; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 25px; color: #ffffff; font-size: 0.9rem; outline: none; transition: all 0.3s ease; }
.newsletter-input::placeholder { color: #999999; }
.newsletter-input:focus { border-color: #00d4ff; box-shadow: 0 0 15px rgba(0, 212, 255, 0.3); }
.newsletter-btn { padding: 0.8rem 1.2rem; background: linear-gradient(135deg, #00d4ff, #ff0080); border: none; border-radius: 25px; color: white; cursor: pointer; transition: all 0.3s ease; font-size: 1rem; }
.newsletter-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0, 212, 255, 0.4); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 2rem 0; background: rgba(0, 0, 0, 0.3); }
.footer-bottom-content { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.footer-bottom p { color: #999999; font-size: 0.9rem; }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { color: #999999; text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; }
.footer-bottom-links a:hover { color: #00d4ff; text-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .nav-menu { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2.5rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1rem; }
    .footer-bottom-content { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
    .newsletter-form { flex-direction: column; }
    .social-links { justify-content: center; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form-section, .contact-info-card { padding: 2rem; }
    .contact-method { flex-direction: column; text-align: center; gap: 1rem; }
    .social-buttons { justify-content: center; }
}

/* Scroll animations */
.scroll-reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

/* Floating animation */
.floating { animation: floating 3s ease-in-out infinite; }
@keyframes floating { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }


