/*
Theme Name: Qlogic Library Theme
Theme URI: https://qlogiclibrary.com
Author: Qlogic
Description: A modern, eye-catching library theme with gold and slate color scheme
Version: 4.0
Text Domain: qlogic-library
*/

/* ==========================================================================
   DESIGN TOKENS - Gold & Slate Color Palette
   ========================================================================== */
:root {
    /* Primary Colors - Rich Gold */
    --primary: #c99a2e;
    --primary-dark: #a67c1a;
    --primary-light: #E8B339;
    --primary-50: #fdf8ed;
    --primary-100: #f9eed3;

    /* Secondary Colors - Deep Slate */
    --secondary: #2C3E50;
    --secondary-dark: #1a252f;
    --secondary-light: #3d5166;

    /* Accent Colors */
    --accent-cream: #F5F1EB;
    --accent-gold: #E8B339;
    --accent-bronze: #b8860b;

    /* Neutrals */
    --white: #ffffff;
    --cream: #F5F1EB;
    --gray-50: #f8f7f5;
    --gray-100: #f1efe9;
    --gray-200: #e2dfd9;
    --gray-300: #c9c5bc;
    --gray-400: #9a958a;
    --gray-500: #6b665c;
    --gray-600: #4a463e;
    --gray-700: #363330;
    --gray-800: #252320;
    --gray-900: #1a1917;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #c99a2e 0%, #E8B339 50%, #d4a83a 100%);
    --gradient-secondary: linear-gradient(135deg, #2C3E50 0%, #3d5166 100%);
    --gradient-dark: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
    --gradient-hero: linear-gradient(135deg, #2C3E50 0%, #3d5166 50%, #4a5d6f 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-gold-shine: linear-gradient(135deg, #c99a2e 0%, #E8B339 25%, #f5d060 50%, #E8B339 75%, #c99a2e 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(44, 62, 80, 0.08);
    --shadow-md: 0 4px 12px -2px rgba(44, 62, 80, 0.12), 0 2px 6px -2px rgba(44, 62, 80, 0.08);
    --shadow-lg: 0 12px 24px -4px rgba(44, 62, 80, 0.15), 0 4px 8px -4px rgba(44, 62, 80, 0.1);
    --shadow-xl: 0 20px 40px -8px rgba(44, 62, 80, 0.2), 0 8px 16px -6px rgba(44, 62, 80, 0.12);
    --shadow-2xl: 0 32px 64px -12px rgba(44, 62, 80, 0.25);
    --shadow-glow: 0 0 40px rgba(201, 154, 46, 0.35);
    --shadow-glow-slate: 0 0 40px rgba(44, 62, 80, 0.3);
    --shadow-gold: 0 8px 32px rgba(201, 154, 46, 0.25);

    /* Typography */
    --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Animation Durations */
    --animation-fast: 0.3s;
    --animation-normal: 0.5s;
    --animation-slow: 0.8s;
}

/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover { color: var(--primary-dark); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 576px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 992px) {
    .container { padding: 0 2rem; }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

.hidden { display: none !important; }
.text-align-center { text-align: center; }

/* Layout Classes from Templates */
._none {
    display: block;
}

.node,
.node__content {
    display: block;
}

.region,
.region-content {
    display: block;
}

.layout-builder__layout {
    display: flex;
    flex-wrap: wrap;
}

/* Blob Background Decorations */
.particles-container,
.blob {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.blob {
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: rgba(201, 154, 46, 0.2);
    top: -100px;
    right: -100px;
    animation: floatSlow 8s ease-in-out infinite;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: rgba(44, 62, 80, 0.15);
    bottom: -50px;
    left: -50px;
    animation: floatSlow 10s ease-in-out infinite reverse;
}

.blob-primary {
    background: rgba(201, 154, 46, 0.2);
}

/* Form Classes */
.form,
.form-inline {
    display: block;
}

.form-item,
.js-form-item {
    margin-bottom: 0;
}

/* Link List */
.link-list {
    display: block;
}

/* Tab specific styles */
.tabs {
    display: block;
}

.tabs--links {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Navs */
.navs {
    display: block;
}

/* Image Hover Effects */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.6s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
}

.img-hover-shine {
    position: relative;
    overflow: hidden;
}

.img-hover-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.img-hover-shine:hover::after {
    left: 150%;
}

/* Hero Parallax */
.hero-parallax {
    position: relative;
}

/* Card Modern Styles */
.card-modern {
    position: relative;
}

.card-glow {
    transition: box-shadow var(--transition-base);
}

.card-glow:hover {
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.card-hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card-hover-lift:hover {
    transform: translateY(-8px);
}

/* Link Animations */
.link-underline-grow {
    position: relative;
    display: inline-block;
}

.link-underline-grow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width var(--transition-base);
}

.link-underline-grow:hover::after {
    width: 100%;
}

.link-underline-slide {
    position: relative;
}

/* Button Animations */
.btn-gradient-animated {
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* View Classes */
.view,
.view--news {
    display: block;
}

.result-content {
    display: block;
}

/* Featured Cards Grid */
.featured-cards-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (min-width: 768px) {
    .featured-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    .featured-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Ensure list items in featured cards are visible */
.featured-cards-grid > .list-item {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: 100%;
}

/* Block Classes */
.block {
    display: block;
}

/* Field Classes */
.field {
    display: block;
}

.field__item {
    display: block;
}

/* Filled Icon Style */
.material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1;
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6) 0%, rgba(201, 154, 46, 0.3) 100%);
    pointer-events: none;
}

/* Slider No Overflow */
.slider--no-overflow {
    overflow: visible;
}

/* Flex Grow */
.flex-grow-1 {
    flex-grow: 1 !important;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
}

/* Empty Col */
.empty-col {
    display: none;
}

/* Flag Decoration */
.flag-decoration {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-top: 2rem;
}

/* Focusable Skip Link */
.focusable:focus {
    position: fixed !important;
    top: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
    padding: 1rem 2rem !important;
    margin: 0 !important;
    clip: auto !important;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    z-index: 9999;
    text-decoration: none;
}

/* Button Close */
.btn-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--white);
    transition: opacity var(--transition-fast);
}

.btn-close:hover {
    opacity: 0.7;
}

/* Button Link */
.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.btn-link:hover {
    color: var(--primary-dark);
}

.btn-link--w-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Text Secondary */
.text-secondary {
    color: var(--secondary) !important;
}

/* Col Text */
.col-text {
    flex-shrink: 0;
}

/* Col Carousel */
.col-carousel {
    flex: 1;
    min-width: 0;
}

/* Fade Class for Transitions */
.fade {
    transition: opacity var(--transition-base);
}

.fade:not(.show) {
    opacity: 1; /* Keep visible by default */
}

/* Collapse */
.collapse:not(.show) {
    display: none;
}

.collapse.show {
    display: block;
}

/* Navbar Expand */
.navbar-expand-lg .navbar-collapse {
    display: flex !important;
}

@media (max-width: 991.98px) {
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }

    .navbar-expand-lg .navbar-collapse.show {
        display: block !important;
    }
}

/* TBM Menu Classes */
.tbm,
.tbm-main {
    display: block;
}

.tbm-no-arrows {
    display: block;
}

.animate.fading {
    display: block;
}

/* Container Inline */
.container-inline {
    display: block;
}

/* Form Control */
.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray-700);
    background-color: var(--white);
    background-clip: padding-box;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    color: var(--gray-700);
    background-color: var(--white);
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 3px var(--primary-100);
}

.form-control::placeholder {
    color: var(--gray-400);
    opacity: 1;
}

.form-control-lg {
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
    border-radius: var(--radius-lg);
}

/* Form Search */
.form-search {
    background-color: var(--white);
}

/* Border Gray */
.border-gray-300 {
    border-color: var(--gray-300) !important;
}

/* Background Color Classes */
.bg-color {
    /* Placeholder for dynamic bg colors */
}

/* First List Item */
.list-item.first {
    /* First item styling if needed */
}

/* Data Magnetic */
[data-magnetic] {
    /* Placeholder for magnetic effect */
}

/* Data Tilt */
[data-tilt] {
    /* Placeholder for tilt effect */
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.layout-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */

/* Fade Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale Animations */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleInBounce {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -15px) rotate(2deg); }
    50% { transform: translate(0, -25px) rotate(0deg); }
    75% { transform: translate(-15px, -15px) rotate(-2deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 154, 46, 0.4); }
    50% { box-shadow: 0 0 20px 10px rgba(201, 154, 46, 0.2); }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes goldShimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* Rotate Animation */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

@keyframes bounceHorizontal {
    0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(5px); }
}

/* Slide Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Wave Animation */
@keyframes wave {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    75% { transform: translateY(5px) rotate(-2deg); }
}

/* Ripple Effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Scroll Indicator Animation */
@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Stagger Animation Classes - Content visible by default, animations enhance UX */
[data-animate] {
    opacity: 1;
}

/* Only apply initial hidden state if JS is enabled and will handle animations */
.js-animations-enabled [data-animate]:not(.animated) {
    opacity: 0;
}

[data-animate].animated {
    animation-fill-mode: both;
    opacity: 1;
}

[data-animate="fade-in"].animated { animation: fadeIn var(--animation-normal) ease-out; }
[data-animate="fade-up"].animated { animation: fadeInUp var(--animation-normal) ease-out; }
[data-animate="fade-down"].animated { animation: fadeInDown var(--animation-normal) ease-out; }
[data-animate="fade-left"].animated { animation: fadeInLeft var(--animation-normal) ease-out; }
[data-animate="fade-right"].animated { animation: fadeInRight var(--animation-normal) ease-out; }
[data-animate="scale-in"].animated { animation: scaleIn var(--animation-normal) ease-out; }
[data-animate="scale-bounce"].animated { animation: scaleInBounce var(--animation-slow) ease-out; }

/* Animation Delays */
[data-delay="100"] { animation-delay: 0.1s; }
[data-delay="200"] { animation-delay: 0.2s; }
[data-delay="300"] { animation-delay: 0.3s; }
[data-delay="400"] { animation-delay: 0.4s; }
[data-delay="500"] { animation-delay: 0.5s; }
[data-delay="600"] { animation-delay: 0.6s; }
[data-delay="700"] { animation-delay: 0.7s; }
[data-delay="800"] { animation-delay: 0.8s; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   UTILITY BAR - Top Brand Bar
   ========================================================================== */
#qu-utility-bar {
    background: var(--gradient-dark);
    padding: 0.75rem 0;
    position: relative;
    overflow: hidden;
}

#qu-utility-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

#qu-utility-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 154, 46, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.qu-navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo-text {
    color: var(--white) !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   MAIN HEADER - Glassmorphism Style
   ========================================================================== */
.header-main {
    background: rgba(245, 241, 235, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.header-main--sticky {
    background: rgba(245, 241, 235, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-main--hidden {
    transform: translateY(-100%);
}

.header-main--main-bar {
    padding: 0;
}

.header-main--inner-wrapper {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-main--inner-wrapper {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }
}

.navbar {
    display: flex;
    align-items: center;
    flex: 1;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    position: relative;
}

@media (min-width: 768px) {
    .navbar-brand {
        font-size: 1.75rem;
    }
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.navbar-brand:hover::after {
    width: 100%;
}

/* Desktop Navigation */
.header-main--desktop-menus {
    display: none;
    flex: 1;
    padding-left: 2rem;
}

@media (min-width: 992px) {
    .header-main--desktop-menus {
        display: flex;
    }
}

.region-navigation {
    width: 100%;
    align-items: flex-end;
}

/* Navigation Menus */
.nav.navbar-nav,
.tbm-nav.level-0 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav.navbar-nav li,
.tbm-nav.level-0 > li {
    list-style: none;
}

.nav.navbar-nav a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav.navbar-nav a:hover {
    color: var(--primary);
    background: var(--primary-50);
}

.tbm-nav.level-0 > li > a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.tbm-nav.level-0 > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.tbm-nav.level-0 > li > a:hover {
    color: var(--primary);
}

.tbm-nav.level-0 > li > a:hover::before {
    width: 80%;
}

/* Header Buttons */
.header-main--button-list-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

@media (min-width: 768px) {
    .header-main--button-list-wrapper {
        gap: 1rem;
    }
}

.navbar-toggler {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-full);
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .navbar-toggler {
        padding: 0.75rem 1.25rem;
    }
}

.navbar-toggler:hover {
    background: var(--gray-200);
    transform: scale(1.02);
}

@media (min-width: 992px) {
    .navbar-toggler { display: none; }
}

.navbar-toggler--close { display: none; }
.mobile-menu-open .navbar-toggler--close {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mobile-menu-open .navbar-toggler--open { display: none; }

/* Ask Button - Eye-catching CTA */
.ask-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--gradient-primary);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .ask-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
}

.ask-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.ask-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    color: var(--secondary);
}

.ask-button:hover::before {
    left: 100%;
}

.ask-button .material-symbols-outlined {
    font-size: 1.25rem;
}

/* Search Form */
.search-block-form--wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gradient-secondary);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .search-block-form--wrapper {
        padding: 2rem;
    }
}

.search-block-form--wrapper.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-block-form form {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.search-block-form .js-form-item {
    flex: 1;
}

.search-block-form input[type="search"] {
    width: 100%;
    padding: 1rem 1.25rem;
    padding-right: 120px;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-full);
    outline: none;
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .search-block-form input[type="search"] {
        padding: 1.25rem 1.75rem;
        padding-right: 140px;
        font-size: 1.125rem;
    }
}

.search-block-form .form-actions {
    position: absolute;
    right: 0.375rem;
    top: 50%;
    transform: translateY(-50%);
}

.search-block-form button[type="submit"],
.search-block-form input[type="submit"] {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--secondary);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .search-block-form button[type="submit"],
    .search-block-form input[type="submit"] {
        padding: 1rem 2rem;
    }
}

.search-block-form button[type="submit"]:hover,
.search-block-form input[type="submit"]:hover {
    transform: scale(1.05);
}

/* Mobile Menu */
.navbar-collapse {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    z-index: 999;
    overflow-y: auto;
    padding-top: 80px;
}

@media (min-width: 768px) {
    .navbar-collapse {
        padding-top: 100px;
    }
}

.navbar-collapse.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.navbar-collapse--inner-wrapper {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .navbar-collapse--inner-wrapper {
        padding: 2rem;
    }
}

.search-block-form--mobile {
    margin-bottom: 2rem;
}

.search-block-form--mobile form {
    flex-direction: column;
    gap: 1rem;
}

.search-block-form--mobile input[type="search"] {
    padding-right: 1.75rem;
}

.search-block-form--mobile .form-actions {
    position: static;
    transform: none;
}

.search-block-form--mobile button[type="submit"] {
    width: 100%;
    padding: 1rem;
}

.region-navigation-mobile .nav {
    flex-direction: column;
    gap: 0;
}

.region-navigation-mobile .nav a {
    display: block;
    padding: 1.25rem 1.5rem;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .region-navigation-mobile .nav a {
        font-size: 1.25rem;
    }
}

.region-navigation-mobile .nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

/* ==========================================================================
   HERO BANNER - Stunning Visual Impact
   ========================================================================== */
.hero-banner {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

@media (min-width: 768px) {
    .hero-banner {
        min-height: 550px;
    }
}

@media (min-width: 992px) {
    .hero-banner {
        min-height: 600px;
    }
}

/* Animated Background Shapes */
.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 154, 46, 0.15) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(232, 179, 57, 0.12) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner .row--main {
    display: flex;
    flex-wrap: wrap;
    min-height: 450px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .hero-banner .row--main {
        min-height: 500px;
    }
}

@media (min-width: 992px) {
    .hero-banner .row--main {
        flex-wrap: nowrap;
        min-height: 550px;
    }
}

.hero-banner .col-main {
    flex: 1;
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-banner .col-main {
        padding: 3rem 0;
    }
}

@media (min-width: 992px) {
    .hero-banner .col-main {
        padding: 4rem 0;
    }
}

.col-main--wrapper {
    width: 100%;
}

/* Tabbed Search - Glass Card */
.hero-banner-tabbed-search {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideUp 0.8s ease;
}

@media (min-width: 576px) {
    .hero-banner-tabbed-search {
        padding: 2rem;
        border-radius: var(--radius-2xl);
    }
}

@media (min-width: 768px) {
    .hero-banner-tabbed-search {
        padding: 2.5rem;
    }
}

/* Tabs Navigation */
.tabs--links {
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs--links::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .tabs--links {
        margin-bottom: 2rem;
    }
}

.nav-underline {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-underline .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-500);
    font-weight: 600;
    font-size: 0.875rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
    outline: unset !important;
}

@media (min-width: 768px) {
    .nav-underline .nav-link {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.nav-underline .nav-link:hover {
    color: var(--primary);
}

.nav-underline .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-underline .nav-link p { margin: 0; }

/* Tab Content */
.tab-content { min-height: 80px; }
.tab-pane { display: none; opacity: 0; }
.tab-pane.fade { transition: opacity var(--transition-base); }
.tab-pane.show { opacity: 1; }
.tab-pane.active { display: block; }
.tab-pane.show.active { display: block; opacity: 1; }

/* Search Form in Tabs */
.one-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.one-search-form .js-form-type-textfield {
    flex: 1;
    min-width: 100%;
}

@media (min-width: 576px) {
    .one-search-form .js-form-type-textfield {
        min-width: 250px;
    }
}

.one-search-form .form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    outline: none;
    transition: all var(--transition-fast);
    background: var(--white);
}

@media (min-width: 768px) {
    .one-search-form .form-control {
        padding: 1.25rem 1.5rem;
        font-size: 1.0625rem;
        border-radius: var(--radius-xl);
    }
}

.one-search-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-100);
}

.one-search-form .form-actions {
    flex-shrink: 0;
    width: 100%;
}

@media (min-width: 576px) {
    .one-search-form .form-actions {
        width: auto;
    }
}

/* Primary Button - Gradient with Glow */
.btn-solid-secondary,
.js-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-secondary);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: var(--shadow-lg), var(--shadow-glow-slate);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

@media (min-width: 576px) {
    .btn-solid-secondary,
    .js-form-submit {
        width: auto;
        padding: 1.25rem 2.5rem;
        border-radius: var(--radius-xl);
    }
}

.btn-solid-secondary::before,
.js-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 154, 46, 0.3), transparent);
    transition: left 0.5s;
}

.btn-solid-secondary:hover,
.js-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-slate);
}

.btn-solid-secondary:hover::before,
.js-form-submit:hover::before {
    left: 100%;
}

/* Hero Image Column */
.col-split {
    position: relative;
    min-height: 250px;
    order: -1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin: 1rem;
}

@media (min-width: 576px) {
    .col-split {
        min-height: 300px;
    }
}

@media (min-width: 768px) {
    .col-split {
        min-height: 350px;
        border-radius: var(--radius-2xl);
    }
}

@media (min-width: 992px) {
    .col-split {
        flex: 0 0 40%;
        max-width: 40%;
        order: 0;
        margin: 2rem 0;
    }
}

.hero-banner-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

@media (min-width: 768px) {
    .hero-banner-image {
        border-radius: var(--radius-2xl);
    }
}

.hero-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-banner-image:hover img {
    transform: scale(1.1);
}

.hero-banner-image .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6) 0%, rgba(201, 154, 46, 0.3) 100%);
}

.col-split--wrapper {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .col-split--wrapper {
        padding: 2.5rem;
    }
}

.hero-banner-overlaid-body {
    animation: fadeInUp 1s ease 0.5s both;
}

.btn-solid-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .btn-solid-primary {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
}

.btn-solid-primary:hover {
    background: var(--gradient-primary);
    color: var(--secondary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

/* Scroll Indicator */
.scroll-indicator {
    display: none;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@media (min-width: 992px) {
    .scroll-indicator { display: block; }
}

.scroll-indicator-mouse {
    width: 28px;
    height: 44px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator-wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

.decoration--bottom-line {
    border: none;
    height: 5px;
    background: var(--gradient-primary);
    margin: 0;
}

/* ==========================================================================
   LOCATIONS & HOURS SECTION - FULLY RESPONSIVE
   ========================================================================== */
.locations-and-hours {
    padding: 1.5rem 0.75rem;
    background: var(--white);
    position: relative;
    overflow: visible; /* Allow slider arrows to be visible */
}

@media (min-width: 576px) {
    .locations-and-hours {
        padding: 2rem 1rem;
    }
}

@media (min-width: 768px) {
    .locations-and-hours {
        padding: 2.5rem 1.5rem;
    }
}

@media (min-width: 992px) {
    .locations-and-hours {
        padding: 3rem 2rem;
    }
}

/* Item List Container */
.item-list {
    width: 100%;
}

.item-list .row {
    margin: 0;
}

.item-list [class*="col-"] {
    padding: 0;
}

/* Popular Links Title Header */
.popular-links--location {
    margin-bottom: 0;
}

.popular-links--location > .row {
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .popular-links--location > .row {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .popular-links--location > .row {
        flex-wrap: nowrap;
    }
}

.popular-links--title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0 0 1rem 0;
    white-space: normal;
    position: relative;
    display: inline-block;
}

@media (min-width: 576px) {
    .popular-links--title {
        font-size: 1.375rem;
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    .popular-links--title {
        font-size: 1.5rem;
        margin: 0;
    }
}

.popular-links--title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.popular-links--location:hover .popular-links--title::after {
    width: 100px;
}

.popular-links--view-all {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .popular-links--view-all {
        margin-top: 0;
    }
}

.popular-links--view-all a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    background: var(--primary-50);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .popular-links--view-all a {
        font-size: 0.9375rem;
    }
}

.popular-links--view-all a:hover {
    background: var(--primary-100);
    transform: translateX(5px);
}

.popular-links--view-all a .material-symbols-outlined {
    transition: transform var(--transition-fast);
}

.popular-links--view-all a:hover .material-symbols-outlined {
    transform: translateX(3px);
    animation: bounceHorizontal 0.6s ease;
}

/* ==========================================================================
   SLIDER / CAROUSEL - FULLY RESPONSIVE (FIXED)
   ========================================================================== */
.slider {
    position: relative;
    overflow: visible; /* Allow arrows to show outside track */
}

.slider-carousel {
    overflow: visible; /* Allow arrows to be visible */
}

.slider-wrapper {
    position: relative;
    padding: 0.5rem 0 70px 0;
    overflow: visible;
}

@media (min-width: 768px) {
    .slider-wrapper {
        padding: 0.5rem 0 80px 0;
    }
}

@media (min-width: 992px) {
    .slider-wrapper {
        padding: 0.5rem 60px 0.5rem 0;
    }
}

.slider-track {
    position: relative;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 1rem 0.5rem 0;
    scroll-snap-type: x mandatory;
}

@media (min-width: 576px) {
    .slider-track {
        gap: 1.25rem;
        padding: 0.75rem 1rem 0.75rem 0;
    }
}

@media (min-width: 768px) {
    .slider-track {
        gap: 1.5rem;
        padding: 1rem 1rem 1rem 0;
    }
}

@media (min-width: 992px) {
    .slider-track {
        padding: 1rem 0;
    }
}

.slider-track::-webkit-scrollbar { display: none; }

.slider-item {
    flex: 0 0 auto;
    width: calc(85% - 1rem);
    min-width: 240px;
    max-width: 300px;
    scroll-snap-align: start;
}

@media (min-width: 480px) {
    .slider-item {
        width: calc(50% - 0.75rem);
        min-width: 250px;
        max-width: 320px;
    }
}

@media (min-width: 768px) {
    .slider-item {
        width: calc(33.333% - 1rem);
        min-width: 260px;
        max-width: 340px;
    }
}

@media (min-width: 992px) {
    .slider-item {
        width: calc(25% - 1.125rem);
        min-width: 260px;
        max-width: none;
    }
}

@media (min-width: 1200px) {
    .slider-item {
        min-width: 280px;
    }
}

.slider-observer {
    width: 1px;
    flex-shrink: 0;
}

/* Slider Arrows - Fixed positioning */
.slider-arrow {
    position: absolute;
    bottom: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    z-index: 10;
}

@media (min-width: 576px) {
    .slider-arrow {
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 768px) {
    .slider-arrow {
        width: 48px;
        height: 48px;
    }
}

.slider-arrow:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-primary);
    color: var(--secondary);
}

.slider-arrow:disabled {
    background: var(--gray-300);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Mobile: Arrows at bottom center with proper spacing */
.slider-arrow--left {
    left: calc(50% - 48px);
    right: auto;
}

.slider-arrow--right {
    right: calc(50% - 48px);
    left: auto;
}

/* Small mobile adjustments */
@media (max-width: 360px) {
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    .slider-arrow--left {
        left: calc(50% - 42px);
    }
    .slider-arrow--right {
        right: calc(50% - 42px);
    }
}

@media (min-width: 576px) {
    .slider-arrow--left {
        left: calc(50% - 55px);
    }
    .slider-arrow--right {
        right: calc(50% - 55px);
    }
}

/* Desktop: Arrows on sides - SYMMETRIC spacing for both arrows */
@media (min-width: 992px) {
    .slider-wrapper {
        padding: 0.5rem 60px 0.5rem 60px;
    }

    .slider-arrow {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
    }

    .slider-arrow:hover:not(:disabled) {
        transform: translateY(-50%) scale(1.1);
    }

    .slider-arrow--left {
        right: auto;
        left: 5px;
    }

    .slider-arrow--right {
        right: 5px;
        left: auto;
    }
}

/* Large desktop - more space for arrows */
@media (min-width: 1200px) {
    .slider-wrapper {
        padding: 0.5rem 65px 0.5rem 65px;
    }

    .slider-arrow--left {
        left: 10px;
    }

    .slider-arrow--right {
        right: 10px;
    }
}

.slider-arrow::before {
    font-family: 'Material Symbols Outlined';
    font-size: 20px;
}

@media (min-width: 576px) {
    .slider-arrow::before {
        font-size: 22px;
    }
}

@media (min-width: 768px) {
    .slider-arrow::before {
        font-size: 24px;
    }
}

.slider-arrow--left::before { content: 'chevron_left'; }
.slider-arrow--right::before { content: 'chevron_right'; }

.slider-dots { display: none; }

/* ============================================
   ADVANCED SLIDER ANIMATIONS & INTERACTIONS
   ============================================ */

/* Slider Arrow Advanced Animations */
.slider-arrow {
    /* position: relative; */
    overflow: hidden;
}

.slider-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.slider-arrow:active::after {
    width: 120%;
    height: 120%;
}

/* Arrow click pulse animation */
@keyframes arrowPulse {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(0.92); }
    100% { transform: translateY(-50%) scale(1); }
}

@keyframes arrowPulseMobile {
    0% { transform: scale(1); }
    50% { transform: scale(0.92); }
    100% { transform: scale(1); }
}

.slider-arrow:active {
    animation: arrowPulseMobile 0.2s ease-out;
}

@media (min-width: 992px) {
    .slider-arrow:active {
        animation: arrowPulse 0.2s ease-out;
    }
}

/* Arrow icon bounce on hover */
.slider-arrow:hover:not(:disabled)::before {
    animation: arrowIconBounce 0.4s ease-in-out;
}

@keyframes arrowIconBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

.slider-arrow--left:hover:not(:disabled)::before {
    animation: arrowIconBounceLeft 0.4s ease-in-out;
}

@keyframes arrowIconBounceLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-3px); }
}

/* Slider Item Entrance Animations */
.slider-item {
    opacity: 0;
    transform: translateY(20px);
    animation: sliderItemEnter 0.5s ease forwards;
}

.slider-item:nth-child(1) { animation-delay: 0.1s; }
.slider-item:nth-child(2) { animation-delay: 0.15s; }
.slider-item:nth-child(3) { animation-delay: 0.2s; }
.slider-item:nth-child(4) { animation-delay: 0.25s; }
.slider-item:nth-child(5) { animation-delay: 0.3s; }
.slider-item:nth-child(6) { animation-delay: 0.35s; }
.slider-item:nth-child(7) { animation-delay: 0.4s; }
.slider-item:nth-child(8) { animation-delay: 0.45s; }

@keyframes sliderItemEnter {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Item Hover Effects */
.slider-item {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slider-item:hover {
    transform: translateY(-5px);
    z-index: 2;
}

/* Scale effect for active item */
.slider-item.active {
    transform: scale(1.02);
}

.slider-item.active:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Smooth scroll snap behavior */
.slider-track {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 14px !important;
}

.slider-item {
    scroll-snap-align: start;
}

/* Touch feedback for mobile */
@media (max-width: 991px) {
    .slider-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Slider scroll shadow indicators */
.slider-track::before,
.slider-track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.slider-track::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, transparent 100%);
}

.slider-track::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.95) 0%, transparent 100%);
}

/* Show shadows when scrollable */
.slider-carousel:not(.slider--no-overflow) .slider-track::after {
    opacity: 1;
}

.slider-carousel.scrolled-left .slider-track::before {
    opacity: 1;
}

/* Focus visible styles for accessibility */
.slider-arrow:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

.slider-item a:focus-visible,
.slider-item button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-md);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .slider-item,
    .slider-arrow,
    .slider-arrow::after,
    .slider-arrow::before {
        animation: none !important;
        transition: opacity 0.2s ease !important;
    }

    .slider-item {
        opacity: 1;
        transform: none;
    }

    .slider-track {
        scroll-behavior: auto;
    }
}

/* Schedule Card - Modern Design with Animations */
.card--schedule {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

@media (min-width: 576px) {
    .card--schedule {
        padding: 1.5rem;
        border-radius: var(--radius-xl);
    }
}

@media (min-width: 768px) {
    .card--schedule {
        padding: 1.75rem;
    }
}

.card--schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.card--schedule::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 154, 46, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.card--schedule:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
}

.card--schedule:hover::before {
    transform: scaleX(1);
}

.card--schedule:hover::after {
    opacity: 1;
}

.card--schedule .card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card--schedule .card-title {
        font-size: 1.0625rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .card--schedule .card-title {
        font-size: 1.125rem;
    }
}

.card--schedule .card-title a {
    color: var(--secondary);
    transition: color var(--transition-fast);
}

.card--schedule .card-title a:hover {
    color: var(--primary);
}

.card-schedule-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.625rem 0.875rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

@media (min-width: 576px) {
    .card-schedule-time {
        gap: 0.75rem;
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
}

@media (min-width: 768px) {
    .card-schedule-time {
        font-size: 0.9375rem;
    }
}

.card--schedule:hover .card-schedule-time {
    background: var(--primary-50);
}

.card-schedule-time .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform var(--transition-fast);
}

@media (min-width: 768px) {
    .card-schedule-time .material-symbols-outlined {
        font-size: 1.5rem;
    }
}

.card--schedule:hover .card-schedule-time .material-symbols-outlined {
    transform: scale(1.1);
    animation: pulse 1s ease infinite;
}

/* ==========================================================================
   POPULAR LINKS SECTION - FULLY RESPONSIVE
   ========================================================================== */
.section-popular-links,
.popular-links {
    padding: 1.5rem 1rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: visible; /* Allow slider arrows to be visible */
}

@media (min-width: 576px) {
    .section-popular-links,
    .popular-links {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 992px) {
    .section-popular-links,
    .popular-links {
        padding: 2.5rem 2rem;
    }
}

/* Popular Link Buttons - Pill Style with Animations */
.slider-type--button-list .slider-item {
    width: auto;
    min-width: auto;
    max-width: none;
}

.slider-type--button-list .slider-track {
    gap: 0.75rem;
    padding: 0.5rem 0;
}

@media (min-width: 576px) {
    .slider-type--button-list .slider-track {
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .slider-type--button-list .slider-track {
        gap: 1.25rem;
        padding: 1rem 0;
    }
}

.slider-type--button-list .slider-item a,
.btn-solid.btn-solid-primary.btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--gradient-dark);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

@media (min-width: 576px) {
    .slider-type--button-list .slider-item a,
    .btn-solid.btn-solid-primary.btn-lg {
        gap: 0.625rem;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

@media (min-width: 768px) {
    .slider-type--button-list .slider-item a,
    .btn-solid.btn-solid-primary.btn-lg {
        gap: 0.75rem;
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
}

.slider-type--button-list .slider-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.slider-type--button-list .slider-item a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.slider-type--button-list .slider-item a:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    color: var(--secondary);
}

.slider-type--button-list .slider-item a:hover::before {
    opacity: 1;
}

.slider-type--button-list .slider-item a:active::after {
    width: 200px;
    height: 200px;
}

.slider-type--button-list .slider-item a > * {
    position: relative;
    z-index: 1;
}

.slider-type--button-list .slider-item a .material-symbols-outlined {
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
}

@media (min-width: 768px) {
    .slider-type--button-list .slider-item a .material-symbols-outlined {
        font-size: 1.5rem;
    }
}

.slider-type--button-list .slider-item a:hover .material-symbols-outlined {
    transform: rotate(10deg) scale(1.1);
}

/* ==========================================================================
   DISCOVER / FEATURED CARDS SECTION
   ========================================================================== */
.section-discover {
    padding: 3rem 0;
    background: var(--gray-50);
    position: relative;
}

@media (min-width: 768px) {
    .section-discover {
        padding: 4rem 0;
    }
}

@media (min-width: 992px) {
    .section-discover {
        padding: 5rem 0;
    }
}

.section-discover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--white) 0%, transparent 100%);
    pointer-events: none;
}

.section-discover h2 {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .section-discover h2 {
        margin-bottom: 3rem;
    }
}

/* List Grid */
.list {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
    .list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    .list { grid-template-columns: repeat(3, 1fr); }
}

.list-item {
    height: 100%;
    list-style: none;
}

/* Featured Card - Stunning Design */
.card--featured {
    position: relative;
    background: var(--gradient-secondary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 280px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    transition: all var(--transition-base);
    cursor: pointer;
}

@media (min-width: 576px) {
    .card--featured {
        min-height: 320px;
    }
}

@media (min-width: 768px) {
    .card--featured {
        min-height: 380px;
        border-radius: var(--radius-2xl);
    }
}

.card--featured:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-slate);
}

@media (min-width: 768px) {
    .card--featured:hover {
        transform: translateY(-12px) scale(1.02);
    }
}

.card--featured.bg-yellow {
    background: var(--gradient-primary);
    color: var(--secondary);
}

.card--featured.bg-yellow .card-subtitle {
    background: rgba(44, 62, 80, 0.2);
}

.card--featured .card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.card--featured .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.card--featured:hover .card-image img {
    transform: scale(1.1);
}

.card--featured .card-image .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.95) 0%, rgba(44, 62, 80, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.card--featured .card-body {
    position: relative;
    z-index: 2;
    padding: 1.25rem;
}

@media (min-width: 576px) {
    .card--featured .card-body {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .card--featured .card-body {
        padding: 2rem;
    }
}

.card--featured .card-subtitle {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.95;
    margin-bottom: 0.5rem;
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: rgba(201, 154, 46, 0.35);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
}

@media (min-width: 576px) {
    .card--featured .card-subtitle {
        font-size: 0.6875rem;
        padding: 0.25rem 0.75rem;
    }
}

@media (min-width: 768px) {
    .card--featured .card-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        padding: 0.375rem 0.875rem;
    }
}

.card--featured .card-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
    color: inherit;
}

@media (min-width: 576px) {
    .card--featured .card-title {
        font-size: 1.375rem;
    }
}

@media (min-width: 768px) {
    .card--featured .card-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .card--featured .card-title {
        font-size: 1.75rem;
    }
}

.card--featured .card-title a {
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

@media (min-width: 768px) {
    .card--featured .card-title a {
        gap: 0.75rem;
    }
}

.card--featured .card-title a:hover { color: inherit; }

.card--featured .card-title .material-symbols-outlined,
.card--featured .card-title .qul-icon {
    font-size: 1.25rem;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateX(-10px);
}

@media (min-width: 768px) {
    .card--featured .card-title .material-symbols-outlined,
    .card--featured .card-title .qul-icon {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .card--featured .card-title .material-symbols-outlined,
    .card--featured .card-title .qul-icon {
        font-size: 1.75rem;
    }
}

.card--featured:hover .card-title .material-symbols-outlined,
.card--featured:hover .card-title .qul-icon {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   QUICK SERVICES SECTION
   ========================================================================== */
.section-quick-services {
    padding: 3rem 0;
    background: var(--white);
    position: relative;
}

@media (min-width: 768px) {
    .section-quick-services {
        padding: 4rem 0;
    }
}

@media (min-width: 992px) {
    .section-quick-services {
        padding: 5rem 0;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
}

.services-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 576px) {
    .services-grid {
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Service Card - Modern Style */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    text-decoration: none;
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

@media (min-width: 576px) {
    .service-card {
        padding: 2rem 1.25rem;
    }
}

@media (min-width: 768px) {
    .service-card {
        padding: 2.5rem 1.5rem;
        border-radius: var(--radius-2xl);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    border-color: transparent;
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-slate);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 576px) {
    .service-icon {
        width: 70px;
        height: 70px;
    }
}

@media (min-width: 768px) {
    .service-icon {
        width: 80px;
        height: 80px;
        border-radius: var(--radius-xl);
        margin-bottom: 1.5rem;
    }
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
}

.service-icon .material-symbols-outlined {
    font-size: 1.75rem;
    color: var(--white);
    transition: color var(--transition-base);
}

@media (min-width: 768px) {
    .service-icon .material-symbols-outlined {
        font-size: 2.25rem;
    }
}

.service-card:hover .service-icon .material-symbols-outlined {
    color: var(--secondary);
}

.service-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.375rem;
    transition: color var(--transition-base);
}

@media (min-width: 576px) {
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 768px) {
    .service-card h3 {
        font-size: 1.125rem;
    }
}

.service-card p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
    transition: color var(--transition-base);
}

@media (min-width: 768px) {
    .service-card p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.section-stats {
    padding: 3rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .section-stats {
        padding: 4rem 0;
    }
}

@media (min-width: 992px) {
    .section-stats {
        padding: 5rem 0;
    }
}

.section-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 154, 46, 0.15) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 1;
}

@media (min-width: 576px) {
    .stats-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

@media (min-width: 576px) {
    .stat-item {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .stat-item {
        padding: 2rem;
        border-radius: var(--radius-xl);
    }
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(201, 154, 46, 0.3);
}

.stat-number {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .stat-number {
        margin-bottom: 0.75rem;
    }
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 1rem;
    }
}

/* ==========================================================================
   NEWS SECTION
   ========================================================================== */
.section-news {
    padding: 3rem 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .section-news {
        padding: 4rem 0;
    }
}

@media (min-width: 992px) {
    .section-news {
        padding: 5rem 0;
    }
}

.view-header {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .view-header {
        margin-bottom: 3rem;
    }
}

.view-header h2 { margin: 0; }

/* News Card - Vertical Style */
.card--vertical {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .card--vertical {
        min-height: 420px;
        border-radius: var(--radius-2xl);
    }
}

.card--vertical:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.card--vertical .card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.card--vertical .card-image {
    height: 160px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .card--vertical .card-image {
        height: 200px;
    }
}

.card--vertical .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}

.card--vertical .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card--vertical:hover .card-image img {
    transform: scale(1.1);
}

.card--vertical .card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .card--vertical .card-body {
        padding: 1.75rem;
    }
}

.card--vertical .card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: auto;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .card--vertical .card-title {
        font-size: 1.25rem;
    }
}

.card--vertical .card-title a {
    color: var(--secondary);
    transition: color var(--transition-fast);
}

.card--vertical .card-title a:hover {
    color: var(--primary);
}

.card--vertical .card-date {
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 1.25rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .card--vertical .card-date {
        font-size: 0.875rem;
        margin-top: 1.5rem;
    }
}

.card--vertical::after {
    content: 'arrow_forward';
    font-family: 'Material Symbols Outlined';
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg), var(--shadow-glow-slate);
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .card--vertical::after {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

.card--vertical:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* View All Button */
.btn-outline-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .btn-outline-secondary {
        gap: 0.75rem;
        padding: 1.125rem 2.25rem;
    }
}

.btn-outline-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-outline-secondary:hover {
    color: var(--secondary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-outline-secondary:hover::before {
    opacity: 1;
}

.btn-outline-secondary > * {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    margin-top: auto;
}

.footer--top {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 3rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .footer--top {
        padding: 4rem 0 3rem;
    }
}

@media (min-width: 992px) {
    .footer--top {
        padding: 5rem 0 4rem;
    }
}

.footer--top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer--top::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 154, 46, 0.1) 0%, transparent 70%);
}

.footer--top h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

@media (min-width: 768px) {
    .footer--top h2 {
        font-size: 1.375rem;
        margin-bottom: 1.75rem;
    }
}

.footer--top h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer--top .nav {
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer--top .nav {
        gap: 0.75rem;
    }
}

.footer--top .nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    padding: 0.375rem 0;
    transition: all var(--transition-fast);
    display: inline-block;
}

@media (min-width: 768px) {
    .footer--top .nav a {
        font-size: 1rem;
    }
}

.footer--top .nav a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.region-footer-top {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .region-footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Footer Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-contact-info {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .footer-contact-item {
        gap: 1rem;
        font-size: 1rem;
    }
}

.footer-contact-item .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--primary-light);
}

@media (min-width: 768px) {
    .footer-contact-item .material-symbols-outlined {
        font-size: 1.5rem;
    }
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-social {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .footer-social a {
        width: 48px;
        height: 48px;
    }
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: var(--secondary);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.footer-social .material-symbols-outlined {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .footer-social .material-symbols-outlined {
        font-size: 1.375rem;
    }
}

/* Footer Newsletter */
.footer-newsletter h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-newsletter h3 {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer-newsletter-form {
        gap: 0.75rem;
    }
}

.footer-newsletter-form input {
    flex: 1;
    min-width: 180px;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .footer-newsletter-form input {
        min-width: 200px;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-light);
}

.footer-newsletter-form button {
    padding: 0.875rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--secondary);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .footer-newsletter-form button {
        padding: 1rem 2rem;
    }
}

.footer-newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Footer Bottom */
.footer--bottom {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    padding: 1.5rem 0;
}

@media (min-width: 768px) {
    .footer--bottom {
        padding: 2rem 0;
    }
}

.footer-logo { display: inline-block; }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-links {
        gap: 2rem;
    }
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

@media (min-width: 768px) {
    .footer-links a {
        font-size: 0.9375rem;
    }
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-three-text-section {
    max-width: 100%;
}

@media (min-width: 992px) {
    .footer-three-text-section {
        max-width: 450px;
        text-align: right;
    }
}

.footer-three-text-section p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (min-width: 768px) {
    .footer-three-text-section p {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) rotate(180deg);
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-xl), var(--shadow-glow-slate);
}

@media (min-width: 768px) {
    .back-to-top {
        bottom: 2rem;
        right: 2rem;
        width: 56px;
        height: 56px;
    }
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotate(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow-slate);
    background: var(--gradient-primary);
    color: var(--secondary);
}

.back-to-top .material-symbols-outlined {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .back-to-top .material-symbols-outlined {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-flex { display: inline-flex !important; }
.d-inline-block { display: inline-block !important; }

.flex-column { flex-direction: column !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-grow-1 { flex-grow: 1 !important; }

.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-stretch { align-items: stretch !important; }
.align-center { align-items: center !important; }

/* List Items Flex */
.list-items-flex-1 > * {
    flex: 1;
}

.justify-content-center { justify-content: center !important; }
.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-between { justify-content: space-between !important; }

.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 2rem !important; }
.row-gap-1 { row-gap: 0.25rem !important; }
.row-gap-2 { row-gap: 0.5rem !important; }

.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 2rem !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 2rem !important; }
.mt-auto { margin-top: auto !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }
.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-auto { margin-left: auto !important; }
.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-auto { margin-right: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 2rem !important; margin-bottom: 2rem !important; }

.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 2rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 2rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 2rem !important; }
.ps-4 { padding-left: 1.5rem !important; }
.pe-4 { padding-right: 1.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.min-vh-100 { min-height: 100vh !important; }

.text-white { color: var(--white) !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-gray-600 { color: var(--gray-600) !important; }

.bg-white { background-color: var(--white) !important; }
.bg-cream { background-color: var(--cream) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-primary-dark { background-color: var(--primary-dark) !important; }
.bg-gray-100 { background-color: var(--gray-100) !important; }
.bg-gray-200 { background-color: var(--gray-200) !important; }
.bg-yellow { background-color: var(--accent-gold) !important; }

.small { font-size: 0.875rem !important; }
.fw-bold { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-medium { font-weight: 500 !important; }
.fw-normal { font-weight: 400 !important; }

/* Heading Size Utilities */
.h1 { font-size: clamp(2.5rem, 6vw, 4rem) !important; }
.h2 { font-size: clamp(2rem, 5vw, 3rem) !important; }
.h3 { font-size: clamp(1.5rem, 3vw, 2rem) !important; }
.h4 { font-size: 1.5rem !important; }
.h5 { font-size: 1.25rem !important; }
.h6 { font-size: 1rem !important; }

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Row/Column Grid */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

@media (min-width: 768px) {
    .row {
        margin: 0 -0.75rem;
    }
}

.row.g-0,
.row.no-gutters {
    margin: 0;
}

.row.g-0 > *,
.row.no-gutters > * {
    padding: 0;
}

[class*="col-"] {
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    [class*="col-"] {
        padding: 0 0.75rem;
    }
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-auto { flex: 0 0 auto; width: auto; }
.col { flex: 1 1 0%; }

@media (min-width: 768px) {
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

@media (min-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-flex { display: flex !important; }
    .d-lg-block { display: block !important; }
    .d-lg-inline-block { display: inline-block !important; }

    .col-lg { flex: 1 1 0%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-auto { flex: 0 0 auto; width: auto; }

    .mt-lg-0 { margin-top: 0 !important; }
    .mb-lg-0 { margin-bottom: 0 !important; }
    .mb-lg-2 { margin-bottom: 0.5rem !important; }
    .mb-lg-5 { margin-bottom: 2rem !important; }
    .pt-lg-6 { padding-top: 3rem !important; }

    .flex-lg-row { flex-direction: row !important; }
}

@media (min-width: 1200px) {
    .col-xl { flex: 1 1 0%; }
    .col-xl-auto { flex: 0 0 auto; width: auto; }
    .flex-xl-column { flex-direction: column !important; }
    .flex-xl-nowrap { flex-wrap: nowrap !important; }
    .mt-xl-2 { margin-top: 0.5rem !important; }
}

/* Focus Styles - Accessible */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Print Styles */
@media print {
    .header-main,
    .footer--top,
    .footer--bottom,
    .back-to-top,
    .navbar-toggler {
        display: none !important;
    }
}

/* ==========================================================================
   PAGE & POST CONTENT STYLES
   ========================================================================== */

/* Entry Content - Main Page/Post Content */
.entry-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

@media (min-width: 768px) {
    .entry-content {
        font-size: 1.0625rem;
    }
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(201, 154, 46, 0.3);
    text-underline-offset: 3px;
    transition: all var(--transition-fast);
}

.entry-content a:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--gray-600);
}

.entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.entry-content pre {
    background: var(--gray-800);
    color: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

.entry-content code {
    background: var(--gray-100);
    color: var(--secondary);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.entry-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.entry-content th,
.entry-content td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    text-align: left;
}

.entry-content th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--secondary);
}

.entry-content hr {
    border: none;
    height: 2px;
    background: var(--gray-200);
    margin: 2rem 0;
}

/* Entry Header */
.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .entry-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .entry-title {
        font-size: 3rem;
    }
}

/* Entry Thumbnail */
.entry-thumbnail {
    margin-bottom: 2rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.entry-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Entry Meta */
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.entry-meta a {
    color: var(--primary);
}

.entry-meta a:hover {
    color: var(--primary-dark);
}

.entry-meta-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
}

/* Entry Footer */
.entry-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 2rem;
}

.entry-footer .tags-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.entry-footer .tags-links a {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    transition: all var(--transition-fast);
}

.entry-footer .tags-links a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Posts List */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.posts-list .card--vertical {
    min-height: auto;
}

.posts-list .card-excerpt {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.posts-list .card-meta {
    margin-bottom: 0.75rem;
}

/* Post Navigation */
.post-navigation {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.post-navigation .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
    min-width: 200px;
}

.post-navigation a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.post-navigation a:hover {
    color: var(--primary);
}

.post-navigation .nav-next {
    text-align: right;
    justify-content: flex-end;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination-wrapper .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-wrapper .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0.5rem 1rem;
    background: var(--white);
    color: var(--gray-600);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.pagination-wrapper .page-numbers:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.pagination-wrapper .page-numbers.current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination-wrapper .prev,
.pagination-wrapper .next {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.pagination-wrapper .prev:hover,
.pagination-wrapper .next:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
}

/* No Posts Found */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.no-posts h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.no-posts p {
    color: var(--gray-500);
    margin-bottom: 0;
}

/* Page Links (for paginated posts) */
.page-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.page-links a,
.page-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
}

.page-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.page-links > span:not(.page-links-title) {
    background: var(--primary);
    color: var(--white);
}

/* Comments Section */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

.comments-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author img {
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 600;
    color: var(--secondary);
}

.comment-meta {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.comment-content {
    color: var(--gray-700);
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--gray-200);
    color: var(--gray-600);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.comment-reply-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* Comment Form */
.comment-respond {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.comment-reply-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.comment-form label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-100);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form .form-submit {
    margin-top: 1.5rem;
}

.comment-form .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--gradient-secondary);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
}

.comment-form .submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Button Styles for Content */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--secondary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: var(--secondary);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Article Styles */
article.post,
article.page {
    margin-bottom: 2rem;
}

article.post:last-child,
article.page:last-child {
    margin-bottom: 0;
}

/* Sidebar / Widget Styles */
aside {
    margin-top: 2rem;
}

@media (min-width: 992px) {
    aside {
        margin-top: 0;
    }
}

.widget {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-100);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--gray-600);
    transition: color var(--transition-fast);
}

.widget a:hover {
    color: var(--primary);
}

/* Search Form Widget */
.widget .search-form {
    display: flex;
    gap: 0.5rem;
}

.widget .search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
}

.widget .search-field:focus {
    border-color: var(--primary);
    outline: none;
}

.widget .search-submit {
    padding: 0.75rem 1.25rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.widget .search-submit:hover {
    background: var(--primary-dark);
}

/* Rounded Image Utility */
.rounded {
    border-radius: var(--radius-md) !important;
}

/* Border Utility */
.border-top {
    border-top: 1px solid var(--gray-200) !important;
}

/* Text End Utility */
.text-end {
    text-align: right !important;
}

/* Text Muted Utility */
.text-muted {
    color: var(--gray-500) !important;
}

/* Text Center Utility */
.text-center {
    text-align: center !important;
}

/* Lead Text */
.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Display Headings */
.display-1 {
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 900;
    line-height: 1;
}

.display-2 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1;
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
}

/* 404 Error Page */
.error-404 {
    padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
    .error-404 {
        padding: 5rem 2rem;
    }
}

.error-404 .page-title {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.error-404 h2 {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.error-404 .page-content {
    max-width: 500px;
    margin: 0 auto;
}

/* Search Form Wrapper */
.search-form-wrapper {
    max-width: 500px;
    margin: 2rem auto;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.search-form label {
    flex: 1;
    min-width: 200px;
}

.search-form .search-field {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.search-form .search-field:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-100);
}

.search-form .search-submit {
    padding: 1rem 1.5rem;
    background: var(--gradient-secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-form .search-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Search Results */
.search-results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.no-results h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.no-results .search-form {
    max-width: 400px;
    margin: 0 auto;
}

/* Card Meta & Excerpt */
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.card-meta a {
    color: var(--primary);
}

.card-excerpt {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.card-excerpt p {
    margin-bottom: 0;
}

/* Icon Styling */
.qul-icon,
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
}

/* ==========================================================================
   HOVER ANIMATIONS - Enhanced Creative Effects
   ========================================================================== */

/* Card Hover Effects */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Glow on Hover */
.hover-glow {
    transition: all var(--transition-base);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
}

/* Scale on Hover */
.hover-scale {
    transition: transform var(--transition-base);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Rotate on Hover */
.hover-rotate {
    transition: transform var(--transition-base);
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Shine Effect */
.hover-shine {
    position: relative;
    overflow: hidden;
}

.hover-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hover-shine:hover::after {
    left: 100%;
}

/* Underline Grow Effect */
.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.hover-underline:hover::after {
    width: 100%;
}

/* Icon Bounce on Hover */
.hover-icon-bounce:hover .material-symbols-outlined {
    animation: bounce 0.6s ease;
}

/* Gradient Shift on Hover */
.hover-gradient-shift {
    background-size: 200% 100%;
    transition: background-position var(--transition-slow);
}

.hover-gradient-shift:hover {
    background-position: 100% 0;
}

/* Border Glow Animation */
@keyframes borderGlow {
    0%, 100% {
        border-color: var(--primary);
        box-shadow: 0 0 5px rgba(201, 154, 46, 0.3);
    }
    50% {
        border-color: var(--primary-light);
        box-shadow: 0 0 20px rgba(201, 154, 46, 0.5);
    }
}

.animate-border-glow {
    animation: borderGlow 2s ease-in-out infinite;
}

/* Text Gradient Animation */
@keyframes textGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.animate-text-gradient {
    background: linear-gradient(270deg, var(--primary), var(--primary-light), var(--accent-gold), var(--primary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 4s ease infinite;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

/* Entrance Animations for Page Load */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Children Animation - Visible by default */
.stagger-children > * {
    opacity: 1;
    transform: translateY(0);
}

/* Only animate when JS adds the animate class */
.js-animations-enabled .stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-children.animate > *:nth-child(1) { animation: fadeInUp 0.5s ease 0.1s forwards; }
.stagger-children.animate > *:nth-child(2) { animation: fadeInUp 0.5s ease 0.2s forwards; }
.stagger-children.animate > *:nth-child(3) { animation: fadeInUp 0.5s ease 0.3s forwards; }
.stagger-children.animate > *:nth-child(4) { animation: fadeInUp 0.5s ease 0.4s forwards; }
.stagger-children.animate > *:nth-child(5) { animation: fadeInUp 0.5s ease 0.5s forwards; }
.stagger-children.animate > *:nth-child(6) { animation: fadeInUp 0.5s ease 0.6s forwards; }

/* Featured Cards Grid - Additional styling - Always visible */
.featured-cards-grid > *,
.featured-cards-grid.stagger-children > *,
.featured-cards-grid .list-item,
.featured-cards-grid .card--featured {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Section Discover - Ensure visibility */
.section-discover .list,
.section-discover .featured-cards-grid,
.section-discover .list-item,
.section-discover .card--featured {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Block Featured Cards - Ensure visibility */
.block-featured-cards-grid,
.block-featured-cards-grid .list,
.block-featured-cards-grid .list-item {
    display: block;
    opacity: 1;
    visibility: visible;
}

.block-featured-cards-grid .list.featured-cards-grid {
    display: grid;
}

.region-header-top #qu-utility-bar > .container{
    max-width: 100%;
}

.hero-banner-tabbed-search .tab-content .form-actions input{
        padding: 1.5rem 1.5rem;
}