:root {
    --brand-gold: #D4AF37;
    --brand-gold-dark: #B8860B;
    /*--brand-navy: #0F172A;*/
    --brand-navy: #000000;
    --brand-gold-light: #fff9e6;
    --gs-primary: #051123;
    --gs-primary-container: #1a2639;
    --gs-secondary: #735c00;
    --gs-secondary-container: #fed65b;
    --gs-surface: #f9f9f9;
    --gs-surface-container: #eeeeee;
    --gs-surface-container-low: #f3f3f4;
    --gs-on-surface: #1a1c1c;
    --gs-on-surface-variant: #44474c;
    --gs-outline-variant: #c5c6cd;
    --gs-golden: #D4AF37;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #334155;
}

.bg-brand-gold {
    background-color: var(--brand-gold) !important;
}

.text-brand-gold {
    color: var(--brand-gold) !important;
}

.bg-brand-navy {
    background-color: var(--brand-navy) !important;
}

.border-brand-gold {
    border-color: var(--brand-gold) !important;
}

.btn-gold {
    background-color: var(--brand-gold);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

    .btn-gold:hover {
        background-color: var(--brand-gold-dark);
        color: white;
    }

.btn-outline-gold {
    border: 2px solid var(--brand-gold);
    color: var(--brand-gold);
    background: transparent;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

    .btn-outline-gold:hover {
        background-color: var(--brand-gold);
        color: white;
    }

.nav-link.active-gold {
    color: var(--brand-gold) !important;
    border-bottom: 2px solid var(--brand-gold);
}

.pricing-table th {
    background-color: var(--brand-gold-light);
    font-size: 0.875rem;
}

.cat-card-img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.carousel-item {
    padding: 3rem 0;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--brand-gold);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(70%) sepia(50%) saturate(600%) hue-rotate(5deg);
}

/* NEW CUSTOM CLASSES REPLACING INLINE STYLES */
.header-bg {
    background-color: #000000;
}

.navbar-brand-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.hero-p-mobile {
    font-size: 0.8rem;
}

.carousel-image {
    height: 350px;
    object-fit: cover;
}

.section-services {
    background-color: #ffffff;
}

.service-tag {
    color: rgb(107, 33, 168);
    letter-spacing: 0.05em;
}

.service-title {
    color: rgb(26, 38, 57);
}

.service-desc {
    max-width: 600px;
}

.service-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #f3e8ff;
}

.service-icon {
    color: rgb(107, 33, 168);
}

.pricing-desc {
    max-width: 700px;
}

.poodle-card-tag {
    font-size: 0.65rem;
}

.cta-desc {
    max-width: 550px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-color: rgb(51, 65, 85);
}

.footer-divider {
    border-color: #1e293b !important;
}

@media (max-width: 767.98px) {
    .carousel-item h1 {
        font-size: 1.75rem;
    }

    .carousel-item p {
        font-size: 0.9rem;
    }

    .carousel-item .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .carousel-image {
        height: 200px !important;
    }
}

.hero-section {
    background-color: var(--brand-gold) !important;
    color: white;
    padding: 25px 0;
}

.contact-card {
    border: 1px solid var(--gs-outline-variant);
    border-radius: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    background-color: white;
}

    .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

.icon-circle {
    width: 48px;
    height: 48px;
    background-color: var(--gs-secondary-container);
    color: var(--gs-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.form-container {
    background-color: var(--gs-surface-container-low);
    border: 1px solid var(--gs-outline-variant);
    border-radius: 0.5rem;
    padding: 48px;
}

.btn-gs-primary {
    background-color: var(--gs-secondary);
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
}

    .btn-gs-primary:hover {
        background-color: #5a4800;
        color: white;
    }

.grayscale-map {
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-cover: cover;
    border-radius: 0.5rem;
}

.map-overlay {
    background-color: white;
    border: 1px solid var(--gs-outline-variant);
    border-radius: 0.5rem;
    padding: 1.5rem;
    position: absolute;
    bottom: 24px;
    left: 24px;
    max-width: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}