/* Satine Wall Care Putty - Global Styles */

:root {
    --satine-primary: #1e88e5;
    --satine-primary-soft: rgba(30, 136, 229, 0.08);
    --satine-dark: #111827;
    --satine-muted: #6b7280;
    --satine-bg: #f3f4f6;
    --satine-radius-lg: 1.25rem;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #ffffff;
    color: #111827;
}

.text-primary {
    color: var(--satine-primary) !important;
}

.bg-soft-primary {
    background-color: var(--satine-primary-soft) !important;
}

.main-navbar {
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.navbar-scrolled {
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.08) !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand .brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: linear-gradient(135deg, #e0f2fe, var(--satine-primary));
    box-shadow: 0 6px 18px rgba(30, 136, 229, 0.45);
    display: inline-block;
}

.nav-link {
    font-weight: 500;
    color: #4b5563;
}
.nav-link:hover,
.nav-link.active {
    color: var(--satine-primary) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #1d4ed8, var(--satine-primary));
    border: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

.hero-section {
    background: radial-gradient(circle at top left, #eff6ff, #ffffff);
}
.hero-image-wrapper {
    position: relative;
}
.hero-card {
    bottom: 8%;
    left: 7%;
    max-width: 320px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #1f2937, #1e3a8a);
}

.footer {
    font-size: 0.9rem;
}

.gallery-card img {
    transition: transform 0.4s ease;
}
.gallery-card:hover img {
    transform: scale(1.03);
}

.feature-card,
.benefit-card,
.product-card,
.stat-card {
    border-radius: var(--satine-radius-lg);
}

.page-hero {
    background: linear-gradient(120deg, #f3f4ff, #ffffff);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    z-index: 1050;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

/* Forms */
.form-control:focus,
.form-select:focus {
    border-color: var(--satine-primary);
    box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.25);
}

@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 5.5rem !important;
        padding-bottom: 5.5rem !important;
    }
}


