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

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #0891b2;
    --light-bg: #ffffff;
    --lighter-bg: #f9fafb;
    --card-bg: #ffffff;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(37, 99, 235, 0.15);
    --shadow-color: rgba(37, 99, 235, 0.08);
    --shadow-hover: rgba(37, 99, 235, 0.15);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--lighter-bg);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

#particleCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }

.animated-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #faf5ff 100%);
}

.animated-bg::before {
    content: ''; position: absolute; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%; top: -300px; right: -300px;
    animation: float 20s ease-in-out infinite;
}

.animated-bg::after {
    content: ''; position: absolute; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%; bottom: -250px; left: -250px;
    animation: float 15s ease-in-out infinite reverse;
}

.grid-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 60px 60px; z-index: -1; pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(100px, -100px) rotate(120deg); }
    66% { transform: translate(-50px, 50px) rotate(240deg); }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    border-bottom-color: var(--border-color);
}

.navbar .container {
    display: flex; justify-content: space-between;
    align-items: center; padding: 1.2rem 20px;
}

.logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem; font-weight: 700; position: relative;
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--primary-color); font-size: 1.2rem;
    animation: rotate 10s linear infinite;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-pulse {
    position: absolute; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.3), transparent);
    border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}

@keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }

.nav-links {
    display: flex; list-style: none; gap: 2.5rem;
}

.nav-links a {
    text-decoration: none; color: var(--text-medium);
    font-weight: 500; font-size: 0.94rem;
    position: relative; transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.nav-links a span {
    position: relative; display: inline-block;
}

.nav-links a span::before {
    content: attr(data-text); position: absolute;
    top: 0; left: 0; width: 0; overflow: hidden;
    color: var(--primary-color); transition: width 0.3s ease;
}

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

.hamburger {
    display: none; flex-direction: column; cursor: pointer; z-index: 1001;
}

.hamburger span {
    width: 25px; height: 2px; background: var(--text-dark);
    margin: 4px 0; transition: 0.3s; border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative; color: var(--text-dark);
    padding: 70px 0 120px; margin-top: 60px; overflow: hidden;
}

.hero-shapes {
    position: absolute; width: 100%; height: 100%;
    top: 0; left: 0; overflow: hidden;
}

.shape {
    position: absolute; border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
    animation: float 20s ease-in-out infinite;
}

.shape-1 { width: 300px; height: 300px; top: 10%; left: 10%; animation-delay: 0s; }
.shape-2 { width: 200px; height: 200px; top: 60%; right: 15%; animation-delay: 2s; }
.shape-3 { width: 250px; height: 250px; bottom: 10%; left: 50%; animation-delay: 4s; }

.hero-content {
    text-align: center; max-width: 900px;
    margin: 0 auto; position: relative; z-index: 1;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.5rem; background: var(--card-bg);
    backdrop-filter: blur(10px); border: 1px solid var(--glass-border);
    border-radius: 50px; margin-bottom: 2rem;
    font-size: 0.88rem; color: var(--primary-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    font-weight: 600; letter-spacing: 0.3px;
}

.badge-dot {
    width: 8px; height: 8px; background: var(--primary-color);
    border-radius: 50%; animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.2rem; margin-bottom: 1.5rem;
    font-weight: 800; line-height: 1.15; letter-spacing: -1.5px;
}

.hero-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 1.2rem; margin-bottom: 2.5rem;
    color: var(--text-medium); font-weight: 400;
    max-width: 700px; margin-left: auto; margin-right: auto;
    line-height: 1.8;
}

.hero-stats {
    display: flex; justify-content: center; gap: 3rem;
    margin-bottom: 3rem; flex-wrap: wrap;
}

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

.stat-number {
    display: block; font-size: 3rem; font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block; font-size: 0.9rem; color: var(--text-light);
}

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

.btn {
    padding: 14px 36px; border-radius: 10px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex; align-items: center; gap: 0.6rem;
    position: relative; overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px; height: 300px;
}

.btn span {
    position: relative; z-index: 1;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
    background: var(--card-bg); color: var(--primary-color);
    border: 1.5px solid var(--primary-color); backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.btn-arrow, .btn-icon {
    font-size: 1.2rem; transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn:hover .btn-icon {
    transform: rotate(90deg);
}

.scroll-indicator {
    margin-top: 4rem; display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem; color: var(--text-light);
    font-size: 0.85rem; animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px; height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

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

/* Section Headers */
.section-header {
    text-align: center; margin-bottom: 4rem;
}

.section-tag {
    display: inline-block; padding: 0.5rem 1.5rem;
    background: var(--card-bg); backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border); border-radius: 50px;
    color: var(--primary-color); font-size: 0.88rem;
    font-weight: 600; margin-bottom: 1rem;
    box-shadow: 0 2px 8px var(--shadow-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem; margin-bottom: 1rem;
    color: var(--text-dark); font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem; color: var(--text-medium);
    max-width: 600px; margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 100px 0; position: relative;
}

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

.service-card {
    background: var(--card-bg); backdrop-filter: blur(20px);
    padding: 2.5rem; border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(124, 58, 237, 0.03));
    opacity: 0; transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border);
    box-shadow: 0 12px 40px var(--shadow-hover);
}

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

.service-number {
    position: absolute; top: 1.5rem; right: 1.5rem;
    font-size: 3rem; font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; opacity: 0.2;
}

.service-icon {
    width: 60px; height: 60px; margin-bottom: 1.5rem;
    position: relative; z-index: 1;
}

.service-icon svg {
    width: 100%; height: 100%;
    stroke: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.25));
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem; margin-bottom: 1rem;
    color: var(--text-dark); font-weight: 600;
    position: relative; z-index: 1;
    letter-spacing: -0.3px;
}

.service-card p {
    color: var(--text-medium); line-height: 1.75;
    position: relative; z-index: 1; margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none; display: flex; flex-wrap: wrap;
    gap: 0.5rem; position: relative; z-index: 1;
}

.service-features li {
    padding: 0.4rem 1rem; background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 20px; font-size: 0.84rem;
    color: var(--primary-color); font-weight: 500;
}

/* Technologies Section */
.technologies {
    padding: 100px 0; position: relative;
}

.tech-categories {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: var(--card-bg); backdrop-filter: blur(20px);
    padding: 2rem; border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tech-category:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border);
    box-shadow: 0 8px 24px var(--shadow-hover);
}

.tech-category h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem; margin-bottom: 1.5rem;
    color: var(--primary-color); font-weight: 600;
    letter-spacing: -0.3px;
}

.tech-items {
    display: flex; flex-wrap: wrap; gap: 0.8rem;
}

.tech-item {
    padding: 0.55rem 1.1rem; background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 8px; font-size: 0.88rem;
    color: var(--text-dark); transition: all 0.3s ease;
    font-weight: 500;
}

.tech-item:hover {
    background: rgba(37, 99, 235, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

/* About Section */
.about {
    padding: 100px 0; position: relative;
}

.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start;
}

.about-text {
    background: var(--card-bg); backdrop-filter: blur(20px);
    padding: 2.5rem; border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-text p {
    font-size: 1rem; color: var(--text-medium);
    margin-bottom: 1.5rem; line-height: 1.8;
}

.about-features {
    display: flex; flex-direction: column; gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex; align-items: start; gap: 1rem;
}

.feature-icon {
    width: 40px; height: 40px; background: var(--primary-color);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem;
    color: #ffffff; flex-shrink: 0;
}

.feature-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem; margin-bottom: 0.3rem;
    color: var(--text-dark); font-weight: 600;
}

.feature-item p {
    font-size: 0.95rem; color: var(--text-light);
}

.stats-container {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--card-bg); backdrop-filter: blur(20px);
    padding: 2rem; border-radius: 16px;
    border: 1px solid var(--border-light);
    text-align: center; transition: all 0.3s ease;
    position: relative; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.6s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: scale(1.03);
    border-color: var(--glass-border);
    box-shadow: 0 8px 24px var(--shadow-hover);
}

.stat-icon {
    font-size: 2.5rem; margin-bottom: 1rem;
    filter: drop-shadow(0 0 4px rgba(37, 99, 235, 0.25));
}

.stat-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem; margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-weight: 700;
}

.stat-card p {
    color: var(--text-light); font-size: 0.95rem;
}

.stat-bar {
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0; position: relative;
}

.portfolio-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.portfolio-item {
    background: var(--card-bg); backdrop-filter: blur(20px);
    border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.portfolio-item::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(124, 58, 237, 0.03));
    opacity: 0; transition: opacity 0.4s ease; z-index: 1;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border);
    box-shadow: 0 16px 48px var(--shadow-hover);
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-image {
    height: 250px; position: relative; overflow: hidden;
}

.portfolio-img-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.portfolio-img-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.portfolio-img-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.portfolio-img-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.portfolio-img-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.portfolio-img-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

.portfolio-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.view-project {
    color: #ffffff; font-size: 1.2rem;
    font-weight: 600; transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .view-project {
    transform: translateY(0);
}

.portfolio-info {
    padding: 2rem; position: relative; z-index: 2;
}

.portfolio-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 1rem;
}

.portfolio-tags span {
    padding: 0.3rem 0.8rem; background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 15px; font-size: 0.78rem;
    color: var(--primary-color); font-weight: 500;
}

.portfolio-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem; margin-bottom: 0.8rem;
    color: var(--text-dark); font-weight: 600;
    letter-spacing: -0.3px;
}

.portfolio-info p {
    color: var(--text-medium); line-height: 1.7;
    font-size: 0.94rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0; position: relative;
}

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

.testimonial-card {
    background: var(--glass-bg); backdrop-filter: blur(20px);
    padding: 2.5rem; border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.2);
}

.testimonial-stars {
    font-size: 1.5rem; color: #fbbf24;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem; line-height: 1.8;
    color: var(--text-light); margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex; align-items: center; gap: 1rem;
}

.author-avatar {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.2rem;
    color: var(--white);
}

.testimonial-author h4 {
    font-size: 1.1rem; color: var(--white);
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 0.9rem; color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 100px 0; position: relative;
}

.contact-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; max-width: 1100px; margin: 0 auto;
}

.contact-form {
    display: flex; flex-direction: column; gap: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 15px 20px; background: var(--card-bg);
    backdrop-filter: blur(10px); border: 1px solid var(--border-color);
    border-radius: 12px; font-size: 1rem;
    font-family: inherit; color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-lighter);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none; border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

.contact-form select {
    cursor: pointer;
}

.contact-form button {
    cursor: pointer; border: none;
}

.contact-info {
    display: flex; flex-direction: column; gap: 2rem;
}

.info-item {
    background: var(--card-bg); backdrop-filter: blur(20px);
    padding: 1.8rem; border-radius: 14px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease; display: flex;
    align-items: start; gap: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-item:hover {
    border-color: var(--glass-border);
    transform: translateX(8px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.info-icon {
    font-size: 1.8rem; flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(37, 99, 235, 0.25));
}

.info-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem; margin-bottom: 0.5rem;
    color: var(--primary-color); font-weight: 600;
}

.info-item p {
    color: var(--text-light); font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--light-bg); color: var(--text-dark);
    padding: 4rem 0 2rem; border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid; grid-template-columns: 2fr 3fr;
    gap: 4rem; margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-light); margin: 1rem 0 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex; gap: 1rem;
}

.social-links a {
    color: var(--text-dark); text-decoration: none;
    width: 45px; height: 45px;
    background: var(--card-bg); backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    transition: all 0.3s ease; font-weight: 600;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    color: #ffffff;
}

.footer-links {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem; margin-bottom: 1rem;
    color: var(--text-dark); font-weight: 600;
}

.footer-column a {
    display: block; color: var(--text-light);
    text-decoration: none; margin-bottom: 0.8rem;
    transition: all 0.3s ease; font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap; gap: 1rem;
}

.footer-bottom p {
    color: var(--text-light); font-size: 0.9rem;
}

.footer-legal {
    display: flex; gap: 2rem;
}

.footer-legal a {
    color: var(--text-light); text-decoration: none;
    font-size: 0.9rem; transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: repeat(3, 1fr); }
    .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    
    .nav-links {
        position: absolute; top: 70px; left: -100%;
        flex-direction: column; background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px); width: 100%;
        padding: 2rem; border-bottom: 1px solid var(--border-color);
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active { left: 0; }
    
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .section-title { font-size: 2.2rem; }
    
    .services-grid, .portfolio-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .footer-links { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .tech-categories { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 2rem; }
    .stats-container { grid-template-columns: 1fr; }
}

.quote-icon {
    position: absolute; top: 1.5rem; left: 1.5rem;
    font-size: 5rem; color: var(--primary-color);
    opacity: 0.08; font-family: Georgia, serif;
    line-height: 1;
}
