body {
    background-color: #0f172a;
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #8DB600; /* Apple Green */
    --primary-glow: rgba(141, 182, 0, 0.4);
    --italy-green: #008C45;
    --italy-white: #ffffff;
    --italy-red: #CD212A;
    --ven-yellow: #FFCC00;
    --ven-blue: #00247D;
    --ven-red: #CF142B;
    --secondary: #3b82f6;
    --accent: #f59e0b;
    --surface: rgba(30, 41, 59, 0.7);
    --surface-border: rgba(255, 255, 255, 0.1);
    --text-dim: #94a3b8;
}

* {
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 10%;
    background: radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

.btn-main {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 25px -5px var(--primary-glow);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px var(--primary-glow);
}

/* Flag Line */
.flag-line {
    height: 6px;
    width: 200px;
    margin: 1.5rem auto;
    border-radius: 3px;
    background: linear-gradient(to right, 
        var(--italy-green) 0%, var(--italy-green) 16.6%, 
        var(--italy-white) 16.6%, var(--italy-white) 33.3%, 
        var(--italy-red) 33.3%, var(--italy-red) 50%, 
        var(--ven-yellow) 50%, var(--ven-yellow) 66.6%, 
        var(--ven-blue) 66.6%, var(--ven-blue) 83.3%, 
        var(--ven-red) 83.3%, var(--ven-red) 100%);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* Services */
.services {
    padding: 100px 10%;
    background: #0b1120;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-dim);
}

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

.service-card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 2px solid var(--primary); /* Apple Green Border */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-section {
    padding: 100px 10%;
    display: flex;
    justify-content: center;
}

.form-container {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    padding: 4rem;
    border-radius: 32px;
    width: 100%;
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dim);
}

input, textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    color: white;
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Footer */
footer {
    padding: 4rem 10%;
    text-align: center;
    border-top: 1px solid var(--surface-border);
    color: var(--text-dim);
}

/* Float WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float i {
    color: white;
    font-size: 30px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .navbar { padding: 1rem 5%; }
    .nav-links { display: none; }
}