:root {
    /* Brand Colors */
    --theme-color: #f65801;
    --theme-color-rgb: 246, 88, 1;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --bg-light: #f8f9fa;

    /* Spacing & Radius */
    --border-radius-lg: 0px;
    --border-radius-md: 0px;
    --border-radius-sm: 0px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 30px rgba(246, 88, 1, 0.15);

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Layout & Typography */
body {
    background-color: #fff;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    /* Ensuring modern font stack if available */
    line-height: 1.6;
}

/* Wide Container Override */
@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1440px;
    }
}

/* Modern Card System (Borderless) */
.premium-card {
    border: 0 !important;
    border-radius: var(--border-radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.premium-card img {
    transition: transform 0.6s ease;
}

.premium-card:hover img {
    transform: scale(1.03);
}

/* Header & Navigation */
.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.navbar .nav-link {
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem !important;
    color: var(--text-dark);
    transition: color 0.2s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--theme-color);
}

/* Modern Dropdown (Mega-ish) */
.dropdown-menu {
    border: 0;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 1rem;
    margin-top: 10px !important;
    width: max-content;
    min-width: 260px;
}

.dropdown-item {
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: rgba(246, 88, 1, 0.05);
    /* very light theme color */
    color: var(--theme-color);
    transform: translateX(5px);
}

/* Premium Hero Overlay */
.site-breadcrumb,
.hero-section {
    position: relative;
}

.site-breadcrumb::before,
.hero-section .overlay {
    background: rgba(0, 0, 0, 0.35) !important;
    /* Lighter overlay */
    backdrop-filter: blur(2px) !important;
    /* Subtle glass effect */
}

/* Buttons */
.theme-btn {
    border-radius: var(--border-radius-md);
    padding: 12px 28px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.theme-btn:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* Form Inputs */
.form-control {
    border-radius: var(--border-radius-md);
    padding: 12px 16px;
    border: 1px solid #e1e4e8;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 4px rgba(246, 88, 1, 0.1);
}

/* GLOBAL BORDER RADIUS RESET */
* {
    border-radius: 0 !important;
}