/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--primary-dark);
    position: relative;
}

/* Particle Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(153, 69, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(20, 241, 149, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 30px var(--shadow-dark);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 8px 40px var(--shadow-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-neon) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    transition: left 0.6s;
}

.logo:hover::before {
    left: 100%;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--secondary-neon) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-small);
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, var(--secondary-neon) 0%, var(--secondary-blue) 100%);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--bg-hero);
    display: flex;
    align-items: center;
    color: var(--text-primary);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(0,255,136,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px var(--shadow-dark);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6)); }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: var(--btn-primary);
    color: var(--primary-dark);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--btn-glow);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease 1s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-neon);
}

.cta-button i {
    margin-right: 0.5rem;
    animation: rocketPulse 2s ease-in-out infinite;
}

@keyframes rocketPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
}

.hero-car-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: 0 20px 40px var(--shadow-dark);
    transition: transform 0.3s ease;
}

.hero-image:hover .hero-car-image {
    transform: scale(1.05);
}





@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}



/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-section);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.1) 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--secondary-neon) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-neon) 0%, var(--secondary-blue) 100%);
    border-radius: 2px;
    animation: expandWidth 2s ease-in-out infinite;
}

@keyframes expandWidth {
    0%, 100% { width: 80px; }
    50% { width: 120px; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--card-bg);
    padding: 0;
    border-radius: var(--radius-large);
    box-shadow: 0 20px 40px var(--shadow-dark);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-neon) 0%, var(--secondary-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02) rotateX(5deg);
    box-shadow: 0 30px 60px var(--shadow-neon);
    border-color: var(--border-neon);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-neon) 0%, var(--secondary-blue) 50%, var(--secondary-purple) 100%);
    border-radius: var(--radius-large);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--shadow-neon);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s;
}

.service-card:hover .service-icon::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.service-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    transform: translateX(5px);
}

.service-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #2d3748;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #718096;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-card:hover li {
    transform: translateX(5px);
    color: #2d3748;
}

.service-card:hover li::before {
    color: #4a5568;
    transform: scale(1.2);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(160, 174, 192, 0.9) 0%, rgba(113, 128, 150, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.service-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-overlay span {
    transform: translateY(0);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-section);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--secondary-neon) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.about-text li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.about-text li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #718096;
    font-weight: bold;
    transition: all 0.3s ease;
}

.about-text li:hover {
    color: #2d3748;
    transform: translateX(5px);
}

.about-text li:hover::before {
    color: #4a5568;
    transform: translateX(3px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--radius-large);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(160, 174, 192, 0.1), transparent);
    transition: left 0.6s;
}

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-neon) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.stat:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: #4a5568;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.stat:hover .stat-label {
    color: #2d3748;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
}

.about-company-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: 0 15px 30px var(--shadow-dark);
    transition: transform 0.3s ease;
}

.about-image:hover .about-company-image {
    transform: scale(1.05);
}



/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-section);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px var(--shadow-dark);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #e2e8f0;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: #ffffff;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 250, 252, 0.9) 100%);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #a0aec0 0%, #718096 100%);
    transition: width 0.3s ease;
}

.form-group:focus-within::after {
    width: 100%;
}

.submit-button {
    width: 100%;
    background: var(--btn-primary);
    color: var(--primary-dark);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--btn-glow);
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--primary-darker);
    color: var(--text-primary);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--secondary-neon) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p,
.footer-section li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.footer-section p:hover,
.footer-section li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-section ul {
    list-style: none;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #718096;
    transition: all 0.3s ease;
}

.footer-section p:hover i,
.footer-section li:hover i {
    color: #a0aec0;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(160, 174, 192, 0.3);
    color: #718096;
    position: relative;
    z-index: 2;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--card-bg);
    margin: 15% auto;
    padding: 0;
    border-radius: var(--radius-large);
    width: 90%;
    max-width: 500px;
    animation: modalSlideIn 0.4s ease;
    box-shadow: 0 30px 60px var(--shadow-dark);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #a0aec0 0%, #718096 100%);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: var(--btn-primary);
    color: var(--primary-dark);
    padding: 1.5rem;
    border-radius: var(--radius-large) var(--radius-large) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-body i {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--success-light) 0%, var(--success-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.modal-body p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image i {
        font-size: 8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services h2,
    .about-text h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

/* Additional animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.stat,
.about-text,
.about-image {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.stat:nth-child(1) { animation-delay: 0.1s; }
.stat:nth-child(2) { animation-delay: 0.2s; }
.stat:nth-child(3) { animation-delay: 0.3s; }

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(135deg, #a0aec0 0%, #718096 100%);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(160, 174, 192, 0.3);
    border-top: 3px solid #718096;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

/* Advantage Block Styles */
.advantage-block {
    padding: 4rem 0 3rem 0;
    background: var(--bg-section);
    border-radius: 0 0 40px 40px;
    box-shadow: 0 10px 40px var(--shadow-dark);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}
.adv-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
}
.adv-subtitle {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #718096;
    letter-spacing: 0.02em;
}
.adv-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.adv-step {
    background: var(--card-bg);
    border-radius: var(--radius-large);
    box-shadow: 0 8px 32px var(--shadow-dark);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}
.adv-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.adv-step-title i {
    color: #718096;
    font-size: 1.3rem;
}
.adv-step ul {
    margin-bottom: 1rem;
    padding-left: 1.2rem;
}
.adv-step ul li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
}
.adv-step ul li::before {
    content: '•';
    color: #a0aec0;
    position: absolute;
    left: 0;
    font-size: 1.1em;
}
.adv-example {
    font-size: 0.98rem;
    color: #38a169;
    margin-top: auto;
    font-style: italic;
}
.adv-superpowers {
    margin: 2.5rem 0 2rem 0;
    background: linear-gradient(90deg, #e2e8f0 0%, #f7fafc 100%);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 16px rgba(160, 174, 192, 0.07);
}
.adv-super-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #4a5568;
}
.adv-super-list > div {
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-size: 1.05rem;
}
.adv-numbers {
    margin: 2.5rem 0 2rem 0;
    text-align: center;
}
.adv-numbers-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #4a5568;
}
.adv-numbers ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
    padding-left: 1.2rem;
}
.adv-numbers ul li {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    position: relative;
    padding-left: 1.2rem;
}
.adv-numbers ul li::before {
    content: '';
    position: absolute;
    left: 0;
}
.adv-clients {
    margin: 2.5rem 0 2rem 0;
}
.adv-clients-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    text-align: center;
}
.adv-client-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.adv-client-card {
    background: linear-gradient(135deg, #fff 80%, #e2e8f0 100%);
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(160, 174, 192, 0.10);
    padding: 1.2rem 1.5rem;
    min-width: 260px;
    max-width: 340px;
    font-size: 1.05rem;
    color: #2d3748;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
}
.adv-client-name {
    font-weight: 600;
    color: #718096;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.adv-client-quote {
    font-style: italic;
    color: #4a5568;
    font-size: 1rem;
}
.adv-unique {
    margin: 2.5rem 0 2rem 0;
    background: linear-gradient(90deg, #e2e8f0 0%, #f7fafc 100%);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 16px rgba(160, 174, 192, 0.07);
}
.adv-unique-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #4a5568;
}
.adv-unique ul {
    padding-left: 1.2rem;
}
.adv-unique ul li {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    position: relative;
    padding-left: 1.2rem;
}
.adv-unique ul li::before {
    content: '';
    position: absolute;
    left: 0;
}
.adv-final {
    margin: 2.5rem 0 0 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}
.adv-final-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #4a5568;
}
.adv-final-text {
    margin-bottom: 0.7rem;
    color: #2d3748;
}
.adv-final-ps {
    margin-bottom: 0.7rem;
    color: #718096;
    font-style: italic;
}
.adv-final-secret {
    margin-bottom: 0.7rem;
    color: #38a169;
    font-weight: 600;
}
.adv-final-warning {
    color: #e53e3e;
    font-weight: 700;
    margin-top: 0.7rem;
}
@media (max-width: 900px) {
    .adv-steps {
        grid-template-columns: 1fr;
    }
    .adv-client-cards {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 600px) {
    .advantage-block {
        padding: 2rem 0 1.5rem 0;
        border-radius: 0 0 20px 20px;
    }
    .adv-title {
        font-size: 1.2rem;
    }
    .adv-step {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        min-height: 180px;
    }
    .adv-client-card {
        min-width: 180px;
        max-width: 100%;
        padding: 0.7rem 0.7rem;
    }
} 

/* Partners Section Styles */
.partners {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.partners .container {
    position: relative;
    z-index: 1;
}

.partners h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 161, 105, 0.1), transparent);
    transition: left 0.5s ease;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(56, 161, 105, 0.2);
    border-color: #38a169;
}

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(56, 161, 105, 0.3);
}

.partner-logo i {
    font-size: 2rem;
    color: white;
}

.partner-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.partner-card:hover h3 {
    color: #38a169;
}

.partner-card p {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.partner-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-benefits {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.partners-benefits h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #38a169;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
}

/* Responsive Design for Partners */
@media (max-width: 768px) {
    .partners {
        padding: 3rem 0;
    }
    
    .partners h2 {
        font-size: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .partner-card {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .partners h2 {
        font-size: 1.8rem;
    }
    
    .partners-subtitle {
        font-size: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        padding: 1.2rem;
    }
    
    .partner-logo {
        width: 60px;
        height: 60px;
    }
    
    .partner-logo i {
        font-size: 1.5rem;
    }
}