:root {
    --primary: #00f5d4;
    --secondary: #7b2cbf;
    --accent: #00f5d4;
    --dark: #0a0a0f;
    --dark-light: #12121a;
    --dark-lighter: #1a1a25;
    --text: #cbd5e1;
    --text-muted: #94a3b8;
    --gradient: linear-gradient(135deg, #00f5d4, #7b2cbf);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { color: #fff; }
p { color: var(--text); }
.text-muted { color: var(--text-muted) !important; }
strong, b { color: #fff; }
li { color: var(--text); }

.text-accent {
    color: var(--accent);
}

.btn-accent {
    background: var(--gradient);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 245, 212, 0.3);
    color: #000;
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    padding: 10px 26px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #000;
}

.navbar {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 15, 0.98);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(123, 44, 191, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 245, 212, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 20%;
    right: 10%;
}

.hero-blob-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: 20%;
    left: 10%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2rem;
    max-width: 500px;
}

.typing-text {
    color: var(--accent);
    border-right: 3px solid var(--accent);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: var(--accent); }
    50% { border-color: transparent; }
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
}

.section-subtitle {
    color: var(--text);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 245, 212, 0.15);
}

.service-card {
    text-align: center;
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    margin: 0 auto 20px;
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

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

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--text);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.project-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h5 {
    margin-bottom: 5px;
}

.project-overlay p {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-timeline .row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.process-timeline .row > [class*="col-"] {
    display: flex;
    justify-content: center;
}

.process-line {
    position: absolute;
    top: 70px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: var(--gradient);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 15px;
    max-width: 220px;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--dark);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 20px;
    color: var(--accent);
    position: relative;
    z-index: 2;
}

.process-step h5 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.process-step p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .process-line {
        display: none;
    }
    
    .process-step {
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .process-timeline .row > [class*="col-"] {
        margin-bottom: 20px;
    }
}

.testimonial-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #e2e8f0;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
}

.testimonial-info h6 {
    margin-bottom: 2px;
}

.testimonial-info span {
    color: var(--text);
    font-size: 0.875rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.blog-card {
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    color: var(--text);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.blog-content h5 {
    margin-bottom: 10px;
}

.blog-content h5 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h5 a:hover {
    color: var(--accent);
}

.cta-section {
    background: var(--dark-light);
    text-align: center;
    border-radius: 30px;
    padding: 80px 40px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 245, 212, 0.1) 0%, transparent 70%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.cta-section p {
    color: var(--text);
    margin-bottom: 30px;
    position: relative;
}

.page-header {
    padding: 150px 0 80px;
    background: var(--dark-light);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 245, 212, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.page-header p {
    color: var(--text);
    font-size: 1.1rem;
    position: relative;
}

.breadcrumb {
    justify-content: center;
    background: none;
    padding: 0;
    margin-top: 20px;
    position: relative;
}

.breadcrumb-item a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.team-card {
    text-align: center;
    padding: 30px;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--accent);
}

.team-card h5 {
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.pricing-card {
    text-align: center;
    padding: 40px 30px;
    height: 100%;
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-card .badge {
    background: var(--gradient);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 20px;
}

.pricing-card h4 {
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.contact-form .form-control,
.contact-form .form-select {
    background: var(--dark-lighter);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: var(--dark-lighter);
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(0, 245, 212, 0.1);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-info-card {
    padding: 30px;
    text-align: center;
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.contact-info-card h5 {
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text);
}

.faq-item {
    background: var(--dark-light);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tech-badge {
    background: rgba(0, 245, 212, 0.1);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.footer {
    background: var(--dark-light);
    padding: 80px 0 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

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

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: var(--text);
    margin-bottom: 10px;
}

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

.social-links a:hover {
    background: var(--accent);
    color: #000;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.alert {
    border-radius: 10px;
    padding: 15px 20px;
}

.alert-success {
    background: rgba(0, 245, 212, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.alert-danger {
    background: rgba(255, 82, 82, 0.1);
    border-color: #ff5252;
    color: #ff5252;
}

.swiper {
    padding-bottom: 50px;
}

.swiper-pagination-bullet {
    background: var(--text-muted);
}

.swiper-pagination-bullet-active {
    background: var(--accent);
}

.placeholder-image {
    background: linear-gradient(135deg, var(--dark-lighter) 0%, var(--dark-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-collapse {
        background: var(--dark-light);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-link {
        padding: 12px 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .navbar .btn-accent {
        width: 100%;
        margin-top: 15px;
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .stats-row {
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 30px;
    }
    
    .stat-item {
        flex: 1 1 45%;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    
    .glass-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-line {
        display: none;
    }
    
    .process-step {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        margin: 10px 0;
    }
    
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card .price {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 50px 25px;
        margin: 30px 0;
        border-radius: 20px;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .team-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 12px 15px;
    }
    
    .contact-info-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer h5, .footer h6 {
        margin-bottom: 15px;
    }
    
    .btn-accent, .btn-outline-accent {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .stat-item {
        flex: 1 1 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-accent, .btn-outline-accent {
        width: 100%;
        text-align: center;
    }
    
    .hero .d-flex {
        flex-direction: column;
    }
    
    .hero .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

.lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

.page-content {
    padding: 60px 0;
}

.page-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-content p {
    color: var(--text);
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }
