:root {
    --primary-color: #d4af37;
    --secondary-color: #f8f9fa;
    --accent-color: #e83e8c;
    --text-color: #2d3436;
    --bg-color: #ffffff;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --hover-shadow: 0 20px 40px rgba(0,0,0,0.1);
    --border-radius: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #fcfcfc;
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

a { text-decoration: none; transition: all 0.3s ease; }

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 500;
    color: #555 !important;
    padding: 10px 15px !important;
    border-radius: 8px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(0,0,0,0.03);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4)), url('https://loremflickr.com/1920/1080/beauty,spa,salon');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #fcfcfc, transparent);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    line-height: 1.1;
    color: #ffffff !important;
}

.hero-section h1, .hero-section-small h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    background: white;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.service-card {
    padding: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

/* Footer */
footer {
    background: #1a1a1a !important;
    color: #a0a0a0;
}

footer h4, footer h5 {
    color: white;
    font-weight: 700;
}

.tag-cloud .badge {
    background: rgba(255,255,255,0.1) !important;
    color: #ccc;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s;
}

.tag-cloud .badge:hover {
    background: var(--primary-color) !important;
    color: white;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Top Bar */
.top-bar {
    background: #111 !important;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .navbar-brand { font-size: 1.2rem; }
}