/* ASTKAM - Premium Futuristic Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    /* Neon Pink & Fuchsia Palette */
    --neon-pink: #ff0080;
    --fuchsia: #e100ff;
    --cyan: #00f0ff;
    --purple: #8000ff;
    
    /* Dark Futuristic Backgrounds */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(20, 20, 30, 0.4);
    
    /* Text */
    --text-white: #ffffff;
    --text-gray: #a0a0b0;
    --text-dim: #606070;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, #ff0080 0%, #e100ff 50%, #8000ff 100%);
    --gradient-glow: linear-gradient(135deg, #ff0080 0%, #00f0ff 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(255,0,128,0.1) 0%, rgba(225,0,255,0.1) 100%);
    
    /* Glows */
    --glow-pink: 0 0 60px rgba(255, 0, 128, 0.6), 0 0 100px rgba(255, 0, 128, 0.3);
    --glow-fuchsia: 0 0 60px rgba(225, 0, 255, 0.6), 0 0 100px rgba(225, 0, 255, 0.3);
    --glow-cyan: 0 0 60px rgba(0, 240, 255, 0.6), 0 0 100px rgba(0, 240, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-darker);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 80px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    text-decoration: none;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    filter: brightness(0) invert(1);
}

.logo:hover .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #ff0080 0%, #e100ff 50%, #8000ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: shimmer 3s linear infinite;
}

.logo:hover .logo-text {
    letter-spacing: 0.08em;
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.6));
}

/* Logo Animations - Clean & Professional */
@keyframes shimmer {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-white);
}

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

.nav-cta-btn {
    background: var(--gradient-main);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    box-shadow: var(--glow-pink);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-fuchsia);
}

/* 3D Canvas */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Section Base */
section {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    z-index: 1;
}

.hero-section {
    min-height: 100vh;
}

/* Typography */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.8rem;
    text-align: center;
}

.section-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 2.5rem;
}

.gradient-text {
    background: var(--gradient-main);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

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

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card:hover {
    background: rgba(30, 30, 45, 0.5);
    border-color: rgba(255, 0, 128, 0.3);
    box-shadow: var(--glow-pink);
    transform: translateY(-8px);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--glow-pink);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-primary i {
    transition: transform 0.3s ease;
}

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

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--glow-fuchsia);
}

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

.btn-primary.large {
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1.25rem 3rem;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 128, 0.1);
    transform: translateY(-2px);
}

.btn-secondary.large {
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid rgba(255, 0, 128, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff0080;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.title-line-1,
.title-line-2 {
    display: block;
}

.title-line-1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typing-text {
    display: inline-block;
    min-width: 250px;
    text-align: left;
    border-right: 3px solid #ff0080;
    animation: blink 0.7s step-end infinite;
    padding-right: 5px;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: #ff0080; }
}

/* Hero Description */
.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-description strong {
    color: #ff0080;
    font-weight: 700;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1s both;
    margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.2s both;
}

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

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

#hero-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Services Section */
.services-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

#orbital-container {
    width: 100%;
    height: 200px;
    margin-bottom: 2rem;
    display: none;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 10;
    margin: 0 auto;
}

.service-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    opacity: 0;
    visibility: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }
.service-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item:hover {
    background: rgba(30, 30, 45, 0.6);
    border-color: rgba(255, 0, 128, 0.5);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3),
                0 0 40px rgba(255, 0, 128, 0.2);
    transform: translateY(-10px) scale(1.02);
}

.service-item:hover .service-number {
    color: #fff;
    opacity: 1;
}

.service-item:hover h3 {
    color: var(--neon-pink);
}

.service-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-pink);
    margin-bottom: 0.75rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.service-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    transition: color 0.3s ease;
}

/* Process Section */
.process-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    width: 100%;
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--neon-pink) 0%, 
        var(--fuchsia) 50%, 
        var(--purple) 100%
    );
    transform: translateY(-50%);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    opacity: 0;
    visibility: visible;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.step-card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3);
    border-color: rgba(255, 0, 128, 0.5);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    box-shadow: var(--glow-pink);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-card:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.5);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.step-card:hover h3 {
    color: var(--neon-pink);
}

.step-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Why Section */
.why-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    width: 100%;
}

.why-card {
    text-align: center;
    padding: 2.5rem 2rem;
    opacity: 0;
    visibility: visible;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }

.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3);
    border-color: rgba(255, 0, 128, 0.5);
}

.why-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: var(--glow-pink);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon-wrapper {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.5);
}

.why-icon-wrapper i {
    font-size: 1.75rem;
    color: white;
}

.why-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.why-card:hover h3 {
    color: var(--neon-pink);
}

.why-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    width: 100%;
    margin-bottom: 5rem;
}

.testimonial-card {
    padding: 2rem 1.75rem;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3);
    border-color: rgba(255, 0, 128, 0.5);
}

.stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--neon-pink);
    font-size: 0.9375rem;
}

/* Trust Section */
.trust-section {
    text-align: center;
    margin-top: 5rem;
}

.trust-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-gray);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.trust-stat .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.trust-stat p {
    color: var(--text-gray);
    font-size: 1.125rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    position: relative;
    z-index: 10;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    padding: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    padding: 3rem;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--glow-pink);
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

.success-message h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.success-message p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.info-card {
    padding: 2rem;
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--glow-pink);
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.info-card p,
.info-card a {
    color: var(--text-gray);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--neon-pink);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #25D366;
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: rgba(5, 5, 8, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.footer-logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    transform: scale(1.05);
}

.footer-logo h2 {
    font-size: 2rem;
    margin: 0;
    background: linear-gradient(135deg, #ff0080 0%, #e100ff 50%, #8000ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 1rem;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Debug: Ensure content is always visible */
.services-list,
.process-timeline,
.why-grid {
    opacity: 1 !important;
    visibility: visible !important;
}

.service-item,
.process-step,
.why-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .logo {
        gap: 0.75rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .footer-logo {
        gap: 1rem;
    }

    .footer-logo-img {
        height: 60px;
    }

    .footer-logo h2 {
        font-size: 1.75rem;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .timeline-line {
        display: none;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #orbital-container {
        height: 300px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    section {
        padding: 3rem 1rem;
    }

    /* Improve text visibility on mobile */
    .hero-description,
    .section-subtitle,
    .service-item p,
    .step-card p,
    .why-card p,
    .testimonial-text,
    .stat-label,
    .info-card p,
    .info-card a {
        color: rgba(255, 255, 255, 0.95) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .section-title,
    .hero-title,
    .service-item h3,
    .step-card h3,
    .why-card h3,
    .info-card h3 {
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    }

    /* Hero Section Mobile */
    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .title-line-1,
    .title-line-2 {
        display: block;
        text-align: center;
    }

    .typing-text {
        min-width: 120px;
        font-size: 0.9em;
        text-align: center;
        display: inline;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        text-align: center;
    }

    .hero-description br {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        max-width: 240px;
        text-align: center;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(255, 0, 128, 0.2);
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-2px);
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }

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

    .stat-number {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Section Headers Mobile */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Services Mobile */
    .services-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .service-item {
        padding: 1.5rem;
        text-align: left;
    }

    .service-number {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .service-item h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .service-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Process Timeline Mobile */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-step {
        text-align: center;
        padding: 1.5rem;
    }

    /* Why Choose Us Mobile */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        text-align: center;
        padding: 1.5rem;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        text-align: left;
    }

    /* Trust Stats Mobile */
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

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

    /* Contact Form Mobile */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        max-width: 100%;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .contact-info {
        padding: 0;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .info-card {
        padding: 1.5rem;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info-icon i {
        font-size: 1.25rem;
    }

    .info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        text-align: center;
        width: 100%;
    }

    .info-card p,
    .info-card a {
        font-size: 0.95rem;
        text-align: center;
        display: block;
        width: 100%;
        word-break: break-word;
    }

    .whatsapp-btn {
        margin: 0 auto;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: auto;
        max-width: 280px;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    }

    .whatsapp-btn i {
        font-size: 1.1rem;
    }

    .whatsapp-btn span {
        font-size: 0.95rem;
        font-weight: 600;
    }

    /* Send Message Button */
    .btn-primary.large {
        width: auto;
        max-width: 280px;
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        font-weight: 600;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin: 0 auto;
        box-shadow: 0 4px 15px rgba(255, 0, 128, 0.25);
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
        width: 100%;
    }

    .form-group {
        width: 100%;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        padding: 0 1rem;
    }

    .footer-logo {
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }

    .footer-logo-img {
        height: 40px;
        flex-shrink: 0;
    }

    .footer-logo h2 {
        font-size: 1.15rem;
        word-break: break-word;
        max-width: 100%;
        line-height: 1.3;
    }

    .footer-brand p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

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

    .footer-col ul {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column a {
        font-size: 0.875rem;
    }

    /* Navigation Mobile */
    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-img {
        height: 35px;
    }

    .nav-cta-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(255, 0, 128, 0.2);
    }

    /* 3D Background Mobile */
    #hero-3d-container {
        height: 250px;
    }

    #orbital-container {
        height: 200px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    section {
        padding: 2.5rem 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .hero-description {
        font-size: 0.875rem;
        padding: 0;
    }

    .btn-primary,
    .btn-secondary {
        max-width: 220px;
        padding: 0.75rem 1.125rem;
        font-size: 0.875rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .stat-label {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .service-item,
    .timeline-step,
    .why-card,
    .testimonial-card {
        padding: 1.25rem;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .logo-img {
        height: 30px;
    }

    .nav-cta-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .trust-stats {
        gap: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem;
        margin: 0 auto;
        width: 100%;
    }

    .contact-info {
        padding: 0;
        width: 100%;
    }

    .info-card {
        padding: 1.25rem;
        width: 100%;
        margin: 0 auto;
    }

    .whatsapp-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        width: auto;
        max-width: 240px;
    }

    .btn-primary.large {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        width: auto;
        max-width: 240px;
    }

    /* Footer Extra Small */
    .footer-brand {
        padding: 0 0.75rem;
    }

    .footer-logo {
        gap: 0.5rem;
    }

    .footer-logo-img {
        height: 32px;
    }

    .footer-logo h2 {
        font-size: 0.95rem;
        letter-spacing: -0.02em;
    }

    .footer-brand p {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }

    .footer-column h4 {
        font-size: 0.95rem;
    }

    .footer-column a {
        font-size: 0.8rem;
    }
}

/* Prevent horizontal scroll on all mobile devices */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }

    body {
        overflow-x: hidden;
    }

    .nav-container,
    .hero-content,
    .section-header,
    .services-list,
    .process-timeline,
    .why-grid,
    .testimonials-grid,
    .trust-stats,
    .contact-container,
    .footer-content {
        max-width: 100%;
        overflow-x: hidden;
    }
}
