* { box-sizing: border-box; }

body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background: #0b0f1a;
color: #e5e7eb;
animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.navbar {
display: flex;
justify-content: space-between;
padding: 15px 40px;
background: rgba(0,0,0,0.8);
position: sticky;
top: 0;
}

.logo span { color: #000080; }

.navbar ul {
list-style: none;
display: flex;
gap: 20px;
}

.navbar a {
color: #e5e7eb;
text-decoration: none;
}

.cta {
background: linear-gradient(45deg, #000080, #4169e1);
padding: 8px 15px;
border-radius: 20px;
animation: pulse 2s infinite;
border: none;
color: white;
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}

.hero {
text-align: center;
padding: 120px 20px;
background: linear-gradient(135deg, #0b0f1a, #1a1f35, #000);
}

section {
padding: 70px 20px;
max-width: 1100px;
margin: auto;
}

h2 {
background: linear-gradient(45deg, #000080, #4169e1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 30px;
}

.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}

.card, .project, .blog {
background: #12172a;
padding: 20px;
border-radius: 12px;
transition: transform .3s, box-shadow .3s;
}

.card:hover, .project:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 128, 0.3);
}

form input, form textarea {
width: 100%;
margin: 10px 0;
padding: 12px;
background: #1a1f35;
border: none;
color: #fff;
border-radius: 6px;
}

form button {
background: linear-gradient(45deg, #000080, #4169e1);
border: none;
padding: 12px;
width: 100%;
border-radius: 20px;
cursor: pointer;
transition: background .3s;
color: white;
}

form button:hover {
background: linear-gradient(45deg, #4169e1, #000080);
}

form button:hover {
background: #0000aa;
}

footer {
text-align: center;
padding: 20px;
background: #000;
}

pre {
background: #1a1f35;
padding: 15px;
border-radius: 8px;
overflow-x: auto;
color: #e5e7eb;
font-family: 'Courier New', monospace;
}

code {
font-family: 'Courier New', monospace;
}

/* FREE SEO AUDIT CTA SECTION */
.cta-section {
text-align: center;
padding: 40px 20px;
background: linear-gradient(135deg, #1a1a2e, #16213e);
margin: 40px 0;
border-radius: 10px;
}

.cta-section h2 {
color: #4169e1;
margin-bottom: 20px;
}

.cta-section p {
max-width: 600px;
margin: 0 auto 20px;
line-height: 1.6;
}

/* TRUST SECTION */
.trust-section {
text-align: center;
padding: 40px 20px;
background: linear-gradient(135deg, #0f0f23, #1a1a2e);
margin: 40px 0;
border-radius: 10px;
}

.trust-section h2 {
color: #4169e1;
margin-bottom: 10px;
}

.trust-section p {
margin-bottom: 30px;
color: #b0b3c1;
}

.cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
margin-bottom: 30px;
flex-wrap: wrap;
}

.cta-buttons .cta {
padding: 12px 24px;
text-decoration: none;
border-radius: 25px;
font-weight: bold;
transition: all 0.3s ease;
display: inline-block;
}

.cta.whatsapp {
background: #25d366;
}

.cta.whatsapp:hover {
background: #128c7e;
transform: translateY(-2px);
}

.cta.audit {
background: #4169e1;
}

.cta.audit:hover {
background: #000080;
transform: translateY(-2px);
}

.trust-badges {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.badge {
background: rgba(65, 105, 225, 0.1);
border: 1px solid #4169e1;
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
color: #b0b3c1;
}
