:root {
    --primary: #0066FF;
    --dark: #001A33;
    --white: #FFFFFF;
    --gray: #64748B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background: #F8FAFF;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Modern Background Animation */
.bg-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(80px);
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: move 10s infinite alternate;
}

.blob.secondary {
    background: rgba(0, 102, 255, 0.05);
    bottom: -100px;
    left: -100px;
    animation: move 15s infinite alternate-reverse;
}

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(-100px, 100px); }
}

/* UI Layout */
.main-content {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    padding: 60px 20px;
}

/* LOGO & BRANDING */
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.brand-img {
    height: 60px; /* Adjust based on your logo size */
    width: auto;
}

.brand-text {
    font-size: 2.2rem;
    font-weight: 800; /* BOLD ZANO */
    color: var(--dark);
    letter-spacing: -1px;
    text-align: left;
    line-height: 1;
}

.brand-text span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 4px;
    margin-top: 5px;
}

/* Typography */
.announcement {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 60px;
}

.accent { color: var(--primary); }

/* GRID SYSTEM */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 60px;
}

.service-item {
    background: var(--white);
    border: 1px solid rgba(0, 102, 255, 0.1);
    padding: 30px 15px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    cursor: default;
}

.service-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

/* FOOTER */
.email-btn {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: inline-block;
    margin: 15px 0 50px;
    border-bottom: 3px solid var(--primary);
}

.office-info {
    background: var(--white);
    max-width: 450px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.office-info h3 {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.phone-display {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 15px;
    color: var(--dark);
}

/* Mobile Friendly */
@media (max-width: 800px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-text { font-size: 1.8rem; }
}