{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: ‘Inter’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, sans-serif;
color: #1a1a1a;
overflow-x: hidden;
background: #ffffff;
}

/* Hero Section */
.hero {
min-height: 100vh;
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
position: relative;
overflow: hidden;
display: flex;
align-items: center;
padding: 2rem;
}

.hero::before {
content: ‘’;
position: absolute;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}

.floating-shapes {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
}

.shape {
position: absolute;
background: rgba(255,255,255,0.1);
border-radius: 50%;
animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
width: 300px;
height: 300px;
top: 10%;
left: 10%;
animation-delay: 0s;
}

.shape:nth-child(2) {
width: 200px;
height: 200px;
top: 60%;
right: 10%;
animation-delay: 4s;
}

.shape:nth-child(3) {
width: 150px;
height: 150px;
bottom: 20%;
left: 50%;
animation-delay: 2s;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
33% { transform: translate(30px, -30px) rotate(120deg); }
66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
position: relative;
z-index: 2;
max-width: 1200px;
margin: 0 auto;
width: 100%;
}

.hero h1 {
font-size: 4rem;
font-weight: 800;
color: white;
margin-bottom: 1.5rem;
line-height: 1.1;
animation: slideInUp 1s ease;
}

.hero .subtitle {
font-size: 1.5rem;
color: rgba(255,255,255,0.95);
margin-bottom: 2.5rem;
max-width: 600px;
animation: slideInUp 1s ease 0.2s backwards;
}

.cta-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
animation: slideInUp 1s ease 0.4s backwards;
}

.btn {
padding: 1rem 2.5rem;
font-size: 1.1rem;
font-weight: 600;
border: none;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}

.btn-primary {
background: white;
color: #6366f1;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-secondary {
background: rgba(255,255,255,0.2);
color: white;
border: 2px solid white;
backdrop-filter: blur(10px);
}

.btn-secondary:hover {
background: rgba(255,255,255,0.3);
transform: translateY(-3px);
}

@keyframes slideInUp {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Services Section */
.services {
padding: 6rem 2rem;
background: #f9fafb;
}

.container {
max-width: 1200px;
margin: 0 auto;
}

.section-header {
text-align: center;
margin-bottom: 4rem;
}

.section-header h2 {
font-size: 3rem;
font-weight: 800;
color: #1a1a1a;
margin-bottom: 1rem;
}

.section-header p {
font-size: 1.2rem;
color: #6b7280;
max-width: 600px;
margin: 0 auto;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
}

.service-card {
background: white;
border-radius: 20px;
padding: 2.5rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}

.service-card::before {
content: ‘’;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #6366f1, #8b5cf6, #d946ef);
transform: scaleX(0);
transition: transform 0.4s ease;
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(99,102,241,0.15);
}

.service-card:hover::before {
transform: scaleX(1);
}

.service-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, #6366f1, #8b5cf6);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
margin-bottom: 1.5rem;
transition: all 0.3s ease;
}

.service-card:hover .service-icon {
transform: rotate(5deg) scale(1.1);
}

.service-card h3 {
font-size: 1.5rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 1rem;
}

.service-card p {
color: #6b7280;
line-height: 1.7;
font-size: 1rem;
}

.service-features {
list-style: none;
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid #e5e7eb;
}

.service-features li {
color: #4b5563;
margin-bottom: 0.5rem;
padding-left: 1.5rem;
position: relative;
}

.service-features li::before {
content: ‘✓’;
position: absolute;
left: 0;
color: #6366f1;
font-weight: bold;
}

/* Contact Section */
.contact {
padding: 6rem 2rem;
background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
position: relative;
overflow: hidden;
}

.contact::before {
content: ‘’;
position: absolute;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, transparent 70%);
top: -250px;
right: -250px;
}

.contact .section-header h2 {
color: white;
}

.contact .section-header p {
color: rgba(255,255,255,0.8);
}

.contact-wrapper {
max-width: 800px;
margin: 0 auto;
background: rgba(255,255,255,0.05);
backdrop-filter: blur(10px);
border-radius: 24px;
padding: 3rem;
border: 1px solid rgba(255,255,255,0.1);
position: relative;
z-index: 1;
}

.form-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-bottom: 1.5rem;
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
color: white;
font-weight: 600;
margin-bottom: 0.5rem;
font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 1rem;
background: rgba(255,255,255,0.1);
border: 2px solid rgba(255,255,255,0.2);
border-radius: 12px;
color: white;
font-size: 1rem;
transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
color: rgba(255,255,255,0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
outline: none;
border-color: #6366f1;
background: rgba(255,255,255,0.15);
}

.form-group select {
cursor: pointer;
}

.form-group select option {
background: #1e293b;
color: white;
}

textarea {
resize: vertical;
min-height: 150px;
}

.submit-btn {
width: 100%;
padding: 1.2rem;
background: linear-gradient(135deg, #6366f1, #8b5cf6);
color: white;
border: none;
border-radius: 12px;
font-size: 1.1rem;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(99,102,241,0.4);
}

.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(99,102,241,0.5);
}

.success-message {
display: none;
background: linear-gradient(135deg, #10b981, #059669);
color: white;
padding: 1.5rem;
border-radius: 12px;
margin-top: 1.5rem;
text-align: center;
font-weight: 600;
animation: slideInUp 0.5s ease;
}

/* Social Proof */
.social-proof {
padding: 4rem 2rem;
background: white;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 3rem;
max-width: 1000px;
margin: 0 auto;
text-align: center;
}

.stat {
animation: fadeIn 1s ease;
}

.stat-number {
font-size: 3rem;
font-weight: 800;
background: linear-gradient(135deg, #6366f1, #8b5cf6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
}

.stat-label {
color: #6b7280;
font-size: 1rem;
font-weight: 600;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}


.hero .subtitle {
    font-size: 1.2rem;
}

.section-header h2 {
    font-size: 2rem;
}

.cta-buttons {
    flex-direction: column;
}

.btn {
    width: 100%;
    text-align: center;
}

.contact-wrapper {
    padding: 2rem;
}

.form-grid {
    grid-template-columns: 1fr;
}


}

/* WhatsApp Float Button */
.whatsapp-float {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background: #25d366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
box-shadow: 0 4px 12px rgba(37,211,102,0.4);
cursor: pointer;
transition: all 0.3s ease;
z-index: 1000;
animation: bounce 2s infinite;
}

.whatsapp-float:hover {
transform: scale(1.1);
box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-10px);
}
60% {
transform: translateY(-5px);
}
}