/*
 * Aivora Lab LLC - Aurora Theme Stylesheet
 * Version: 1.0.0
 * Last Updated: 2024
 * Description: Modern aurora-themed design with animations and responsive layout
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    line-height: 1.6;
    padding-top: 20px;
    overflow-x: hidden;
}

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

/* Aurora Background */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: aurora-float 20s ease-in-out infinite;
}

.aurora-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.aurora-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #a8e6cf, #dcedc1);
    top: 50%;
    right: -150px;
    animation-delay: -7s;
}

.aurora-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ffd93d, #ff6b6b);
    bottom: -100px;
    left: 50%;
    animation-delay: -14s;
}

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

/* Header & Navigation */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 100px;
}

nav .logo img {
    height: 90px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: flex;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

nav a:hover {
    color: #4ecdc4;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4ecdc4, #a8e6cf);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Specific styling for navbar buttons */
nav .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: auto;
    line-height: 1;
}

nav .btn-primary {
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf);
    color: #0a0a0a;
}

nav .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 4rem;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf, #ffd93d, #ff6b6b);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf);
    color: #0a0a0a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
    background: #4ecdc4;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #4ecdc4;
    animation: float 6s ease-in-out infinite;
}

.card-icon:nth-child(1) { animation-delay: 0s; }
.card-icon:nth-child(2) { animation-delay: 1.5s; }
.card-icon:nth-child(3) { animation-delay: 3s; }
.card-icon:nth-child(4) { animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4ecdc4, #a8e6cf);
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
}

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

.about-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-weight: 500;
}

/* Services Section */
.services-section {
    background: rgba(255, 255, 255, 0.01);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.service-card.featured {
    border-color: #ffd93d;
    background: rgba(255, 217, 61, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    color: #ccc;
}

.service-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd93d, #ff6b6b);
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.click-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: #4ecdc4;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 2;
}

.service-card.featured:hover .click-hint {
    opacity: 1;
    transform: translateX(-5px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(168, 230, 207, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.cta-content .btn-large {
    margin-top: 1rem;
}

/* Careers Section */
.careers-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
}

.careers-hero {
    min-height: 60vh;
    padding: 120px 1rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
}

.careers-hero .hero-content {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.careers-hero .hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.careers-hero .hero-visual {
    margin-top: 3rem;
}

.careers-hero .floating-cards {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.careers-hero .hero-buttons {
    justify-content: center;
}

/* Active Navigation */
nav a.active {
    color: #4ecdc4;
}

nav a.active::after {
    width: 100%;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.careers-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.career-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.5s ease;
}

.career-card:hover::before {
    left: 100%;
}

.career-card:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.career-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.career-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a0a;
    flex-shrink: 0;
}

.career-title h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.career-level {
    background: linear-gradient(135deg, #ffd93d, #ff6b6b);
    color: #0a0a0a;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.career-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.career-details h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.career-details ul {
    list-style: none;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.career-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.career-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.career-requirements {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1rem;
    border-left: 3px solid #4ecdc4;
}

.career-requirements h4 {
    color: #ffd93d;
    margin-bottom: 0.8rem;
}

.career-requirements ul {
    margin-bottom: 0;
}

.career-requirements li {
    font-size: 0.9rem;
    color: #aaa;
}

.careers-cta {
    text-align: center;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.careers-cta h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.careers-cta p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.careers-cta a {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
}

.careers-cta a:hover {
    text-decoration: underline;
}

.careers-cta .btn-primary {
    color: #0a0a0a;
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4ecdc4;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: #4ecdc4;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

/* Owner Information Styles */
.owner-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.owner-info h4 {
    color: #4ecdc4;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.owner-name {
    color: #fff !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem !important;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ccc;
}

.social-link:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: #4ecdc4;
    color: #4ecdc4;
    transform: translateX(5px);
}

.social-link i:first-child {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.social-link span {
    flex: 1;
    font-weight: 500;
}

.verified-badge {
    color: #4ecdc4 !important;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Company Social Media Styles */
.company-social {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-social h4 {
    color: #4ecdc4;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.company-social .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.company-social .social-link {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ccc;
}

.company-social .social-link:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: #4ecdc4;
    color: #4ecdc4;
    transform: translateX(5px);
}

.company-social .social-link i:first-child {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.company-social .social-link span {
    flex: 1;
    font-weight: 500;
}

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

.footer-section .logo img {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    nav ul {
        display: none;
    }
    
    .floating-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .careers-grid {
        grid-template-columns: 1fr;
    }
    
    .career-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .career-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .career-title h3 {
        font-size: 1.2rem;
    }
    
    .careers-cta {
        padding: 2rem 1rem;
    }
    
    .careers-cta h3 {
        font-size: 1.5rem;
    }

    .careers-hero .hero-buttons {
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn, .hero-buttons .btn, nav .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Get Started Page Styles */
.get-started-hero {
    min-height: 60vh;
    padding: 100px 2rem 4rem;
}

.get-started-hero .hero-content {
    text-align: center;
}

.get-started-hero .hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.get-started-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.project-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: #4ecdc4;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group select option {
    background: #0a0a0a;
    color: #fff;
}

/* Checkbox and Radio Styles */
.checkbox-group,
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.requirement-option {
    cursor: pointer;
    position: relative;
}

.requirement-option input {
    display: none;
}

.requirement-content {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.requirement-option:hover .requirement-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.requirement-option input:checked + .requirement-content {
    background: rgba(78, 205, 196, 0.1);
    border-color: #4ecdc4;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.2);
}

.requirement-option input:checked + .requirement-content::before {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    background: #4ecdc4;
    color: #0a0a0a;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.requirement-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #0a0a0a;
    flex-shrink: 0;
}

.requirement-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.requirement-title {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}

.requirement-description {
    color: #ccc;
    font-size: 0.8rem;
}

/* Contact Method Options */
.contact-method-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.contact-method-option {
    cursor: pointer;
    position: relative;
}

.contact-method-option input {
    display: none;
}

.option-content {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method-option:hover .option-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-method-option input:checked + .option-content {
    background: rgba(78, 205, 196, 0.1);
    border-color: #4ecdc4;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.2);
}

.contact-method-option input:checked + .option-content::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4ecdc4;
    color: #0a0a0a;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0a0a0a;
    flex-shrink: 0;
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.option-title {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.option-description {
    color: #ccc;
    font-size: 0.9rem;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover,
.radio-label:hover {
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-label input,
.radio-label input {
    display: none;
}

.checkmark,
.radiomark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.radiomark {
    border-radius: 50%;
}

.checkbox-label input:checked + .checkmark {
    background: #4ecdc4;
    border-color: #4ecdc4;
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0a0a0a;
    font-weight: bold;
    font-size: 12px;
}

.radio-label input:checked + .radiomark {
    background: #4ecdc4;
    border-color: #4ecdc4;
}

.radio-label input:checked + .radiomark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #0a0a0a;
    border-radius: 50%;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-actions .btn {
    min-width: 200px;
}

/* Contact Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Responsive Design for Get Started Page */
@media (max-width: 768px) {
    .form-container {
        padding: 2rem 1rem;
        margin: 0 1rem 2rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group,
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .contact-method-options {
        grid-template-columns: 1fr;
    }
    
    .option-content {
        padding: 1rem;
    }
    
    .option-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .option-title {
        font-size: 1rem;
    }
    
    .option-description {
        font-size: 0.8rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        margin: 0 1rem;
    }
}

.careers-cta h3 {
    font-size: 1.5rem;
}

.careers-hero {
    min-height: 60vh;
    padding: 120px 1rem 2rem;
}

.careers-hero .floating-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 300px;
}

.career-card {
    padding: 1.5rem;
}

.career-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.career-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.career-title h3 {
    font-size: 1.2rem;
}

.careers-cta {
    padding: 2rem 1rem;
}

.careers-cta h3 {
    font-size: 1.5rem;
}

/* Hospitality Solutions Page */
.hospitality-hero {
    min-height: 80vh;
    padding: 100px 2rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
}

.hospitality-hero .hero-content {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hospitality-hero .hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hospitality-hero .hero-visual {
    margin-top: 3rem;
}

.hospitality-hero .floating-cards {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.solutions-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
}

.solutions-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.5s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.2);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a0a;
    flex-shrink: 0;
}

.solution-title h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.solution-category {
    background: linear-gradient(135deg, #ffd93d, #ff6b6b);
    color: #0a0a0a;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.solution-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.solution-details h4 {
    color: #4ecdc4;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-details ul {
    list-style: none;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.solution-details li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.solution-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.solution-benefits {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1rem;
    border-left: 3px solid #4ecdc4;
}

.solution-benefits h4 {
    color: #ffd93d;
    margin-bottom: 0.8rem;
}

.solution-benefits ul {
    margin-bottom: 0;
}

.solution-benefits li {
    font-size: 0.9rem;
}

/* Mobile Responsive for Hospitality Solutions */
@media (max-width: 768px) {
    .hospitality-hero {
        min-height: 60vh;
        padding: 120px 1rem 2rem;
    }
    
    .hospitality-hero .floating-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 300px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solution-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .solution-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .solution-title h3 {
        font-size: 1.2rem;
    }
}

/* Payment Solutions Page */
.payment-hero {
    min-height: 80vh;
    height: 80vh;
    padding: 100px 2rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.payment-hero .hero-content {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-hero .hero-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.payment-hero .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.payment-hero .hero-text h1 i {
    color: #4ecdc4;
    font-size: 2.2rem;
}

.payment-hero .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.payment-hero .hero-visual {
    margin-top: 3rem;
}

.payment-hero .floating-cards {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Mobile Responsive for Payment Solutions */
@media (max-width: 768px) {
    .payment-hero {
        min-height: 60vh;
        height: auto;
        padding: 120px 1rem 2rem;
    }
    
    .payment-hero .floating-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 300px;
    }
}

/* Mobile App Development Page */
.mobile-hero {
    min-height: 90vh;
    height: 90vh;
    padding: 140px 2rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mobile-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.mobile-hero .hero-text {
    max-width: 600px;
}

.mobile-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
}

.mobile-hero .hero-title .gradient-text {
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-hero .hero-title br + * {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.mobile-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
}

.mobile-hero .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.app-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.app-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-card {
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Services Overview */
.services-overview {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.services-overview .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.services-overview .service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-overview .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.5s ease;
}

.services-overview .service-card:hover::before {
    left: 100%;
}

.services-overview .service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.1);
}

.services-overview .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.services-overview .service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.services-overview .service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    color: #ccc;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

/* Technology Stack */
.tech-stack {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.tech-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.tech-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4ecdc4, #a8e6cf);
    border-radius: 2px;
}

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

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.3);
    background: rgba(78, 205, 196, 0.1);
}

.tech-item i {
    font-size: 2rem;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
    display: block;
}

.tech-item span {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Development Process */
.development-process {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ecdc4, #a8e6cf);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
    border-radius: 20px 20px 0 0;
}

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

.process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.1);
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 auto 2rem;
    position: relative;
}

.process-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.process-card p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.process-features {
    list-style: none;
    text-align: left;
}

.process-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #ccc;
    font-size: 0.95rem;
}

.process-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Alternating margins for better gradient line alignment */
.feature-card:nth-child(odd) {
    margin-right: 1rem;
}

.feature-card:nth-child(even) {
    margin-left: 1rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: linear-gradient(90deg, #4ecdc4, #a8e6cf);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ecdc4, #a8e6cf);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: rgba(78, 205, 196, 0.5);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd93d, #ff6b6b);
    color: #0a0a0a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 20px 40px rgba(78, 205, 196, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #4ecdc4;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0.5rem;
}

.period {
    font-size: 1rem;
    color: #ccc;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #ccc;
    font-size: 0.95rem;
}

.pricing-features li i {
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.btn-outline {
    background: transparent;
    border: 2px solid #4ecdc4;
    color: #4ecdc4;
}

.btn-outline:hover {
    background: #4ecdc4;
    color: #0a0a0a;
}

/* Mobile Responsive for Mobile App Development */
@media (max-width: 768px) {
    .mobile-hero {
        min-height: 70vh;
        height: auto;
        padding: 140px 1rem 2rem;
        overflow: visible;
    }
    
    .mobile-hero .aurora-bg {
        top: -140px;
        height: calc(100% + 140px);
    }
    
    .mobile-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        position: relative;
        z-index: 10;
    }
    
    .mobile-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .services-overview .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .mobile-hero .aurora-layer {
        opacity: 0.05;
    }
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4ecdc4, #a8e6cf);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Container Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Aurora Background Styles */
.aurora-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.aurora-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    border-radius: 50%;
    opacity: 0.1;
    animation: aurora-float 20s ease-in-out infinite;
}

.aurora-1 {
    background: radial-gradient(circle, #4ecdc4 0%, transparent 70%);
    animation-delay: 0s;
}

.aurora-2 {
    background: radial-gradient(circle, #a8e6cf 0%, transparent 70%);
    animation-delay: 7s;
}

.aurora-3 {
    background: radial-gradient(circle, #ffd93d 0%, transparent 70%);
    animation-delay: 14s;
}

/* Hero Buttons Styles */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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