
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(79, 195, 247, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4fc3f7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4fc3f7;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #4fc3f7;
    transition: all 0.3s ease;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #4fc3f7, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(79, 195, 247, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, #4fc3f7, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(79, 195, 247, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkles 20s linear infinite;
    opacity: 0.6;
}

@keyframes sparkles {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(79, 195, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-greeting {
    display: block;
    font-size: 1.2rem;
    color: #4fc3f7;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4fc3f7, #ffffff, #4fc3f7);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(45deg, #4fc3f7, #3b82f6);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #4fc3f7;
    border: 2px solid #4fc3f7;
}

.btn-secondary:hover {
    background: #4fc3f7;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    min-width: 280px;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(79, 195, 247, 0.1), transparent);
    animation: glow 2s linear infinite;
}

@keyframes glow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.discord-logo {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4fc3f7;
    font-weight: 600;
}

.hero-card p {
    color: #9ca3af;
    font-size: 0.95rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #4fc3f7;
    margin: 0 auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #4fc3f7;
    border-right: 2px solid #4fc3f7;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(79, 195, 247, 0.1);
    color: #4fc3f7;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(79, 195, 247, 0.2);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #4fc3f7, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.about {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(79, 195, 247, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(79, 195, 247, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
    border-color: rgba(79, 195, 247, 0.3);
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4fc3f7, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #9ca3af;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(79, 195, 247, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: #4fc3f7;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4fc3f7;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.9rem;
}

.services {
    background: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 15, 35, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #4fc3f7;
    box-shadow: 0 20px 40px rgba(79, 195, 247, 0.2);
}

.service-card.featured {
    border-color: #4fc3f7;
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #4fc3f7, #3b82f6);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #4fc3f7, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(360deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #e5e7eb;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4fc3f7;
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    color: #4fc3f7;
    font-weight: 700;
    padding: 1rem;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(79, 195, 247, 0.2);
}

.portfolio {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(79, 195, 247, 0.2);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: #4fc3f7;
    box-shadow: 0 20px 40px rgba(79, 195, 247, 0.2);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(45deg, #1a1a2e, #4fc3f7);
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    color: #4fc3f7;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: #ffffff;
    text-align: center;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.portfolio-content p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(79, 195, 247, 0.2);
    color: #4fc3f7;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(79, 195, 247, 0.3);
}

.contact {
    background: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #4fc3f7;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(79, 195, 247, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
    border-color: #4fc3f7;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.discord {
    background: linear-gradient(45deg, #5865f2, #7289da);
}

.contact-icon.instagram {
    background: linear-gradient(45deg, #e4405f, #f77737);
}

.contact-icon svg {
    width: 30px;
    height: 30px;
}

.contact-details h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #4fc3f7;
    font-weight: 600;
}

.form {
    background: rgba(26, 26, 46, 0.6);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(79, 195, 247, 0.2);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4fc3f7;
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #4fc3f7;
}

.review-identity {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    color: #e5e7eb;
}

.verified-badge {
    font-size: 0.75rem;
    color: #4fc3f7;
    background: rgba(79, 195, 247, 0.1);
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 4px;
    font-weight: 600;
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #4fc3f7;
    animation: typing 2.5s steps(30, end) forwards;
    max-width: 100%;
}

.typewriter.typing {
    animation: typing 2.5s steps(30, end) forwards;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.reviews-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.review-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    color: #e5e7eb;
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 0 transparent;
    overflow: hidden;
}

.review-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1), transparent 70%);
    animation: glowmove 6s linear infinite;
    z-index: 0;
}

@keyframes glowmove {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 20px rgba(79, 195, 247, 0.15);
    border-color: rgba(79, 195, 247, 0.4);
}

.review-stars {
    color: #facc15;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.review-title {
    color: #4fc3f7;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.review-text {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.review-user {
    font-size: 0.9rem;
    color: #4fc3f7;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.faq-section {
    background: #0a0a0a;
    padding: 100px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(79, 195, 247, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: border 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(8px);
}

.faq-item:hover {
    border-color: rgba(79, 195, 247, 0.3);
    transform: translateY(-3px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #4fc3f7;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #81d4fa;
}

.arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 1.5rem;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 500px;
}


.parallax-tilt {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.parallax-tilt:hover {
  transform: rotateX(6deg) rotateY(-6deg) scale(1.02);
}

.footer {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  padding: 4rem 1rem 2rem;
  border-top: 1px solid rgba(79, 195, 247, 0.2);
  color: #e5e7eb;
  font-family: 'Inter', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 2.2rem;
  color: #4fc3f7;
  display: flex;
  align-items: center;
}

.footer-brand p {
  color: #9ca3af;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #4fc3f7;
  transform: translateX(4px);
}

.footer-contact p {
  color: #9ca3af;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.footer-contact a {
  color: #4fc3f7;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #6b7280;
  font-size: 0.9rem;
}

.footer-bottom .highlight {
  color: #4fc3f7;
  font-weight: bold;
}

.cursor {
  display: inline-block;
  animation: blink 1s infinite;
  color: #4fc3f7;
  margin-left: 3px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links a,
  .footer-contact p {
    justify-content: center;
  }

  .footer-brand h3 {
    justify-content: center;
  }
}


@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card,
    .portfolio-item {
        margin: 0 10px;
    }

    .form {
        padding: 2rem;
    }
}

