:root {
    --primary-color: #00AFFF;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --purple-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --background-color: #0A192F;
    --card-background: #172A45;
    --text-color: #E6F1FF;
    --heading-color: #FFFFFF;
    --subtle-text-color: #8892B0;
    --accent-color: #64ffda;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Gradient Text Effect */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Effect */
.glass-effect {
    background: rgba(23, 42, 69, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

/* AOS Animation */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

header {
    background-color: rgba(10, 25, 47, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    padding: 1.5rem 8%;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 8%;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

nav .logo img {
    height: 55px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(100, 255, 218, 0.4));
}

nav .logo img:hover {
    transform: scale(1.08) rotate(-2deg);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 5px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    transition: width 0.3s ease-in-out;
    border-radius: 2px;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.header-cta {
    background: var(--primary-gradient);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

main {
    padding-top: 0;
}

/* Hero Section with Organic Design */
#hero {
    background: linear-gradient(135deg, #0a192f 0%, #1a2847 50%, #0a192f 100%);
    color: white;
    padding: 8rem 8% 6rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -10%;
    right: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -15%;
    left: 5%;
    animation-delay: 7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 40%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes blob-float {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% { 
        transform: translate(30px, -30px) rotate(90deg);
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    }
    50% { 
        transform: translate(-20px, 20px) rotate(180deg);
        border-radius: 30% 70% 60% 40% / 60% 40% 50% 60%;
    }
    75% { 
        transform: translate(40px, 10px) rotate(270deg);
        border-radius: 70% 30% 40% 60% / 40% 60% 50% 40%;
    }
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: absolute;
    background: rgba(23, 42, 69, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 25px 70px rgba(100, 255, 218, 0.3);
}

.card-1 {
    top: 0;
    left: 0;
    width: 180px;
    animation: float-card 4s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 180px;
    animation: float-card 4s ease-in-out infinite 1.3s;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    animation: float-card 4s ease-in-out infinite 2.6s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.visual-card h4 {
    color: var(--heading-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-line {
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    margin-top: 1rem;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.1;
    animation: pulse-circle 3s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
}

@keyframes pulse-circle {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    transition: transform 0.3s ease-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -10%;
    right: -5%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -10%;
    left: -5%;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.25; }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: float-particle 20s linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.hero-content {
    max-width: 650px;
    text-align: left;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--subtle-text-color);
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.stat-item h3 {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    font-weight: 800;
}

.stat-item p {
    color: var(--subtle-text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge {
    display: inline-block;
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(100, 255, 218, 0.3);
    backdrop-filter: blur(10px);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px rgba(100, 255, 218, 0.3); }
    50% { box-shadow: 0 0 20px rgba(100, 255, 218, 0.5); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--primary-gradient);
    color: var(--heading-color);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.cta-button.primary.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button.primary.glow-btn:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.cta-button.secondary:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-5px) scale(1.05);
}

.stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-item h3 {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    color: var(--subtle-text-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* Services Section */
#services, #about, #contact {
    padding: 6rem 5%;
    text-align: center;
    position: relative;
}

#services {
    background: linear-gradient(180deg, var(--background-color) 0%, var(--card-background) 100%);
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--subtle-text-color);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-left-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: transform 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.service-card p {
    color: var(--subtle-text-color);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.service-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* About Section */
#about {
    padding: 6rem 5%;
    background: var(--card-background);
    position: relative;
}

.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider.top {
    top: 0;
    transform: rotate(180deg);
}

.wave-divider.bottom {
    bottom: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: var(--primary-gradient);
    filter: blur(60px);
    opacity: 0.3;
    z-index: 0;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

.image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    object-position: top;
    display: block;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(100, 255, 218, 0.2);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-gradient);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.floating-badge span {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.3rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-content {
    text-align: left;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.about-content .lead {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--background-color);
    border-radius: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.2);
}

.feature-item .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gradient-icon {
    display: inline-block;
    animation: rotate-icon 10s linear infinite;
}

@keyframes rotate-icon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-item h4 {
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.feature-item p {
    color: var(--subtle-text-color);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
#contact {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--card-background) 0%, var(--background-color) 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
    text-align: left;
}

.contact-info-section .lead {
    font-size: 1.2rem;
    color: var(--subtle-text-color);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(23, 42, 69, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
    border-left-width: 6px;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-form-section {
    position: relative;
}

.contact-form {
    background: rgba(23, 42, 69, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(10, 25, 47, 0.8);
    border: 2px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(10, 25, 47, 1);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: 0;
}

.contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

.contact-btn svg,
.contact-btn span {
    position: relative;
    z-index: 1;
}

.contact-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    color: #25D366;
}

.contact-btn.whatsapp::before {
    background: #25D366;
}

.contact-btn.whatsapp:hover {
    color: #fff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transform: translateY(-5px);
}

.contact-btn.email {
    background: rgba(234, 67, 53, 0.1);
    border-color: #EA4335;
    color: #EA4335;
}

.contact-btn.email::before {
    background: #EA4335;
}

.contact-btn.email:hover {
    color: #fff;
    box-shadow: 0 10px 30px rgba(234, 67, 53, 0.4);
    transform: translateY(-5px);
}

.contact-btn.phone {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.contact-btn.phone::before {
    background: var(--accent-color);
}

.contact-btn.phone:hover {
    color: #0A192F;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.4);
    transform: translateY(-5px);
}

.cta-button.full-width {
    width: 100%;
}

/* Footer */
footer {
    background-color: #020c1b;
    color: var(--subtle-text-color);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-gradient);
    opacity: 0.3;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.3));
}

.footer-logo p {
    color: var(--subtle-text-color);
    max-width: 350px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--subtle-text-color);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 25px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.05);
    border: 2px solid rgba(100, 255, 218, 0.1);
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(100, 255, 218, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .stats {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .floating-badge {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        margin-top: 1rem;
        padding: 0;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-cta {
        margin-top: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .visual-card {
        width: 140px !important;
        padding: 1.5rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
        flex: 1 1 calc(50% - 1rem);
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-buttons {
        grid-template-columns: 1fr;
    }
    
    .floating-badge {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }
}
