:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --bg-dark: #0f172a;
    --bg-white: #ffffff;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-black: #000000;
    --accent: #10b981;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: #f8fafc;
    font-family: var(--font-family);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #334155;
    line-height: 1.7;
}

/* Background Animation */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, #f1f5f9 0%, #f8fafc 100%);
    z-index: -1;
}

.bg-blob {
    position: fixed;
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    filter: blur(160px);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    animation: move 25s infinite alternate;
}

@keyframes move {
    from {
        transform: translate(-10%, -10%) scale(1);
    }

    to {
        transform: translate(30%, 20%) scale(1.1);
    }
}

/* Navbar Customization */
.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.navbar .nav-link {
    color: #475569 !important;
}

.navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
}

.text-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

gmp-map {
    width: 100%;
    height: 100%;
}

.map-wrapper {
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    background: #e5e7eb;
}

/* Hero Section */
.hero-container {
    padding: 6rem 0;
}

.fw-800 {
    font-weight: 800;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-image {
    border-radius: 2rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-img-wrapper:hover .hero-image {
    transform: scale(1.02) translateY(-10px);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

/* Breadcrumb Styling */
.breadcrumb-item+.breadcrumb-item::before {
    content: "›" !important;
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: text-bottom;
}

/* Shadow Utility */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Footer style update */
footer {
    background: #f1f5f9;
    color: #64748b;
}

/* Auth Pages */
.auth-wrapper {
    min-height: 75vh;
}