:root {
    --primary-color: #0c1523;
    /* Deep Navy */
    --accent-color: #c5a059;
    /* Premium Gold from Logo */
    --text-color: #e2e8f0;
    --bg-color: #020617;
    /* Near Black */
    --card-bg: #0f172a;
    /* Slate Dark */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
.logo {
    font-family: 'Cinzel', serif;
    color: var(--accent-color);
}

.header {
    padding: 1.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(220, 181, 136, 0.2);
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.hero {
    text-align: center;
    padding: 6rem 2rem;
    background-color: var(--bg-color);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #cbd5e1;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #c9a376;
}

.services,
.team {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.services h2,
.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card,
.team-member {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--accent-color);
    transition: transform 0.3s;
}

.service-card:hover,
.team-member:hover {
    transform: translateY(-5px);
}

.service-card h3,
.team-member h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--primary-color);
    border-top: 1px solid rgba(220, 181, 136, 0.2);
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    margin: 1.5rem 0;
    transition: background-color 0.2s;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.copyright {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 2rem;
}

/* Floating WhatsApp Button - Simplified */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
}