:root {
    --color-primary: #0F172A;
    /* Deep Navy - Trust */
    --color-secondary: #C0A062;
    /* Gold/Beige - Premium */
    --color-secondary-hover: #D4B475;
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    color: #334155;
    -webkit-font-smoothing: antialiased;
}

/* Bootstrap Overrides for Brand Colors */
.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: #1E293B;
    border-color: #1E293B;
}

.text-gold {
    color: var(--color-secondary) !important;
}

.text-secondary-gold {
    color: var(--color-secondary) !important;
}

.btn-gold {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

.btn-gold:hover {
    background-color: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover);
    color: white;
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    margin-top: 56px;
    /* Offset for fixed navbar */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    z-index: 1;
}

/* Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

/* Features */
.icon-circle {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Areas */
.area-card {
    min-width: 250px;
    transition: transform 0.2s ease;
}

.area-card:hover {
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--color-primary) !important;
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF;
}
