﻿/* ========================================
   TABLE OF CONTENTS
   ========================================
   
   1. FOUNDATIONS
      - CSS Variables (:root)
      - Base Styles (body, typography, colors)
   
   2. UTILITIES
      - Padding Utilities
      - Margin Utilities
      - Font Awesome Icons
   
   3. COMPONENTS
      - Tour Components (price highlight, highlight list, cards)
      - Booking Widgets
      - Related Items
      - Section Headings
      - Card Panels
   
   4. PAGES
      - Navigation & Header
      - Tour Pages (list, detail)
      - Service Pages (list, detail)
      - Blog Pages (list, detail, categories)
      - Contact Pages
      - Error & Maintenance Pages
      - Homepage Sections (slider, intro, why-us, testimonials)
      - Footer
   
   5. HELPERS
      - Animations (scroll, fade, scale, stagger)
      - Loading Spinners
      - Image Loading
      - Responsive Utilities
   
   ======================================== */

/* ========================================
   FOUNDATIONS
   ======================================== */

:root {
  /* Color Palette */
  --color-primary: #DC3545;
  --color-primary-dark: #c82333;
  --color-secondary: #FF9500;
  --color-secondary-dark: #e6850e;
  --color-accent: #FFD700;
  --color-success: #28a745;
  --color-info: #17a2b8;
  --color-warning: #ffc107;

  /* Neutral Colors */
  --color-dark: #333;
  --color-gray-900: #495057;
  --color-gray-700: #666;
  --color-gray-500: #999;
  --color-gray-300: #ddd;
  --color-gray-100: #f8f9fa;
  --color-white: #ffffff;
  --color-light-gray: #e9ecef;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-primary-reverse: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --transition-bounce: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-primary: 0 4px 15px rgba(220, 53, 69, 0.4);
  --gradient-primary-reverse: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  --gradient-overlay: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  --gradient-dark-overlay: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));

  /* Spacing Scale */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-2xl: 40px;
  --spacing-3xl: 60px;
  --spacing-4xl: 80px;

  /* Padding & Margin Values */
  --padding-0: 0;
  --padding-1: 4px;
  --padding-2: 8px;
  --padding-3: 12px;
  --padding-4: 16px;
  --padding-5: 20px;
  --padding-6: 24px;
  --padding-8: 32px;
  --padding-10: 40px;
  --padding-12: 48px;
  --padding-16: 64px;
  --padding-20: 80px;
  --padding-24: 96px;
  --padding-32: 128px;

  --margin-0: 0;
  --margin-1: 4px;
  --margin-2: 8px;
  --margin-3: 12px;
  --margin-4: 16px;
  --margin-5: 20px;
  --margin-6: 24px;
  --margin-8: 32px;
  --margin-10: 40px;
  --margin-12: 48px;
  --margin-16: 64px;
  --margin-20: 80px;
  --margin-24: 96px;
  --margin-32: 128px;
  --margin-auto: auto;

  /* Typography Scale */
  --font-family-base: 'Montserrat', sans-serif;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;
  --font-size-4xl: 36px;
  --font-size-5xl: 48px;

  --font-weight-normal: 500;
  --font-weight-medium: 600;
  --font-weight-semibold: 700;
  --font-weight-bold: 800;
  --font-weight-black: 900;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;

  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 15px;
  --radius-2xl: 20px;
  --radius-round: 25px;
  --radius-circle: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 4px 15px rgba(220, 53, 69, 0.3);
  --shadow-primary-lg: 0 8px 25px rgba(220, 53, 69, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}


/* Base Styles */
body {
  color: var(--color-dark);
}

.primary-color {
  color: var(--color-primary);
}

.secondary-color {
  color: var(--color-secondary);
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

/* ========================================
   UTILITIES
   ======================================== */

/* ========================================
   PADDING UTILITIES
   ======================================== */

/* Padding All Sides */
.p-0 {
  padding: var(--padding-0) !important;
}

.p-1 {
  padding: var(--padding-1) !important;
}

.p-2 {
  padding: var(--padding-2) !important;
}

.p-3 {
  padding: var(--padding-3) !important;
}

.p-4 {
  padding: var(--padding-4) !important;
}

.p-5 {
  padding: var(--padding-5) !important;
}

.p-6 {
  padding: var(--padding-6) !important;
}

.p-8 {
  padding: var(--padding-8) !important;
}

.p-10 {
  padding: var(--padding-10) !important;
}

.p-12 {
  padding: var(--padding-12) !important;
}

.p-16 {
  padding: var(--padding-16) !important;
}

.p-20 {
  padding: var(--padding-20) !important;
}

.p-24 {
  padding: var(--padding-24) !important;
}

.p-32 {
  padding: var(--padding-32) !important;
}

/* Padding Top */
.pt-0 {
  padding-top: var(--padding-0) !important;
}

.pt-1 {
  padding-top: var(--padding-1) !important;
}

.pt-2 {
  padding-top: var(--padding-2) !important;
}

.pt-3 {
  padding-top: var(--padding-3) !important;
}

.pt-4 {
  padding-top: var(--padding-4) !important;
}

.pt-5 {
  padding-top: var(--padding-5) !important;
}

.pt-6 {
  padding-top: var(--padding-6) !important;
}

.pt-8 {
  padding-top: var(--padding-8) !important;
}

.pt-10 {
  padding-top: var(--padding-10) !important;
}

.pt-12 {
  padding-top: var(--padding-12) !important;
}

.pt-16 {
  padding-top: var(--padding-16) !important;
}

.pt-20 {
  padding-top: var(--padding-20) !important;
}

.pt-24 {
  padding-top: var(--padding-24) !important;
}

.pt-32 {
  padding-top: var(--padding-32) !important;
}

/* Padding Bottom */
.pb-0 {
  padding-bottom: var(--padding-0) !important;
}

.pb-1 {
  padding-bottom: var(--padding-1) !important;
}

.pb-2 {
  padding-bottom: var(--padding-2) !important;
}

.pb-3 {
  padding-bottom: var(--padding-3) !important;
}

.pb-4 {
  padding-bottom: var(--padding-4) !important;
}

.pb-5 {
  padding-bottom: var(--padding-5) !important;
}

.pb-6 {
  padding-bottom: var(--padding-6) !important;
}

.pb-8 {
  padding-bottom: var(--padding-8) !important;
}

.pb-10 {
  padding-bottom: var(--padding-10) !important;
}

.pb-12 {
  padding-bottom: var(--padding-12) !important;
}

.pb-16 {
  padding-bottom: var(--padding-16) !important;
}

.pb-20 {
  padding-bottom: var(--padding-20) !important;
}

.pb-24 {
  padding-bottom: var(--padding-24) !important;
}

.pb-32 {
  padding-bottom: var(--padding-32) !important;
}

/* Padding Left */
.pl-0 {
  padding-left: var(--padding-0) !important;
}

.pl-1 {
  padding-left: var(--padding-1) !important;
}

.pl-2 {
  padding-left: var(--padding-2) !important;
}

.pl-3 {
  padding-left: var(--padding-3) !important;
}

.pl-4 {
  padding-left: var(--padding-4) !important;
}

.pl-5 {
  padding-left: var(--padding-5) !important;
}

.pl-6 {
  padding-left: var(--padding-6) !important;
}

.pl-8 {
  padding-left: var(--padding-8) !important;
}

.pl-10 {
  padding-left: var(--padding-10) !important;
}

.pl-12 {
  padding-left: var(--padding-12) !important;
}

/* Padding Right */
.pr-0 {
  padding-right: var(--padding-0) !important;
}

.pr-1 {
  padding-right: var(--padding-1) !important;
}

.pr-2 {
  padding-right: var(--padding-2) !important;
}

.pr-3 {
  padding-right: var(--padding-3) !important;
}

.pr-4 {
  padding-right: var(--padding-4) !important;
}

.pr-5 {
  padding-right: var(--padding-5) !important;
}

.pr-6 {
  padding-right: var(--padding-6) !important;
}

.pr-8 {
  padding-right: var(--padding-8) !important;
}

.pr-10 {
  padding-right: var(--padding-10) !important;
}

.pr-12 {
  padding-right: var(--padding-12) !important;
}

/* Padding X (Left + Right) */
.px-0 {
  padding-left: var(--padding-0) !important;
  padding-right: var(--padding-0) !important;
}

.px-1 {
  padding-left: var(--padding-1) !important;
  padding-right: var(--padding-1) !important;
}

.px-2 {
  padding-left: var(--padding-2) !important;
  padding-right: var(--padding-2) !important;
}

.px-3 {
  padding-left: var(--padding-3) !important;
  padding-right: var(--padding-3) !important;
}

.px-4 {
  padding-left: var(--padding-4) !important;
  padding-right: var(--padding-4) !important;
}

.px-5 {
  padding-left: var(--padding-5) !important;
  padding-right: var(--padding-5) !important;
}

.px-6 {
  padding-left: var(--padding-6) !important;
  padding-right: var(--padding-6) !important;
}

.px-8 {
  padding-left: var(--padding-8) !important;
  padding-right: var(--padding-8) !important;
}

.px-10 {
  padding-left: var(--padding-10) !important;
  padding-right: var(--padding-10) !important;
}

.px-12 {
  padding-left: var(--padding-12) !important;
  padding-right: var(--padding-12) !important;
}

/* Padding Y (Top + Bottom) */
.py-0 {
  padding-top: var(--padding-0) !important;
  padding-bottom: var(--padding-0) !important;
}

.py-1 {
  padding-top: var(--padding-1) !important;
  padding-bottom: var(--padding-1) !important;
}

.py-2 {
  padding-top: var(--padding-2) !important;
  padding-bottom: var(--padding-2) !important;
}

.py-3 {
  padding-top: var(--padding-3) !important;
  padding-bottom: var(--padding-3) !important;
}

.py-4 {
  padding-top: var(--padding-4) !important;
  padding-bottom: var(--padding-4) !important;
}

.py-5 {
  padding-top: var(--padding-5) !important;
  padding-bottom: var(--padding-5) !important;
}

.py-6 {
  padding-top: var(--padding-6) !important;
  padding-bottom: var(--padding-6) !important;
}

.py-8 {
  padding-top: var(--padding-8) !important;
  padding-bottom: var(--padding-8) !important;
}

.py-10 {
  padding-top: var(--padding-10) !important;
  padding-bottom: var(--padding-10) !important;
}

.py-12 {
  padding-top: var(--padding-12) !important;
  padding-bottom: var(--padding-12) !important;
}

.py-16 {
  padding-top: var(--padding-16) !important;
  padding-bottom: var(--padding-16) !important;
}

.py-20 {
  padding-top: var(--padding-20) !important;
  padding-bottom: var(--padding-20) !important;
}

.py-24 {
  padding-top: var(--padding-24) !important;
  padding-bottom: var(--padding-24) !important;
}

.py-32 {
  padding-top: var(--padding-32) !important;
  padding-bottom: var(--padding-32) !important;
}

/* ========================================
   MARGIN UTILITIES
   ======================================== */

/* Margin All Sides */
.m-0 {
  margin: var(--margin-0) !important;
}

.m-1 {
  margin: var(--margin-1) !important;
}

.m-2 {
  margin: var(--margin-2) !important;
}

.m-3 {
  margin: var(--margin-3) !important;
}

.m-4 {
  margin: var(--margin-4) !important;
}

.m-5 {
  margin: var(--margin-5) !important;
}

.m-6 {
  margin: var(--margin-6) !important;
}

.m-8 {
  margin: var(--margin-8) !important;
}

.m-10 {
  margin: var(--margin-10) !important;
}

.m-12 {
  margin: var(--margin-12) !important;
}

.m-16 {
  margin: var(--margin-16) !important;
}

.m-20 {
  margin: var(--margin-20) !important;
}

.m-24 {
  margin: var(--margin-24) !important;
}

.m-32 {
  margin: var(--margin-32) !important;
}

.m-auto {
  margin: var(--margin-auto) !important;
}

/* Margin Top */
.mt-0 {
  margin-top: var(--margin-0) !important;
}

.mt-1 {
  margin-top: var(--margin-1) !important;
}

.mt-2 {
  margin-top: var(--margin-2) !important;
}

.mt-3 {
  margin-top: var(--margin-3) !important;
}

.mt-4 {
  margin-top: var(--margin-4) !important;
}

.mt-5 {
  margin-top: var(--margin-5) !important;
}

.mt-6 {
  margin-top: var(--margin-6) !important;
}

.mt-8 {
  margin-top: var(--margin-8) !important;
}

.mt-10 {
  margin-top: var(--margin-10) !important;
}

.mt-12 {
  margin-top: var(--margin-12) !important;
}

.mt-16 {
  margin-top: var(--margin-16) !important;
}

.mt-20 {
  margin-top: var(--margin-20) !important;
}

.mt-24 {
  margin-top: var(--margin-24) !important;
}

.mt-32 {
  margin-top: var(--margin-32) !important;
}

.mt-auto {
  margin-top: var(--margin-auto) !important;
}

/* Margin Bottom */
.mb-0 {
  margin-bottom: var(--margin-0) !important;
}

.mb-1 {
  margin-bottom: var(--margin-1) !important;
}

.mb-2 {
  margin-bottom: var(--margin-2) !important;
}

.mb-3 {
  margin-bottom: var(--margin-3) !important;
}

.mb-4 {
  margin-bottom: var(--margin-4) !important;
}

.mb-5 {
  margin-bottom: var(--margin-5) !important;
}

.mb-6 {
  margin-bottom: var(--margin-6) !important;
}

.mb-8 {
  margin-bottom: var(--margin-8) !important;
}

.mb-10 {
  margin-bottom: var(--margin-10) !important;
}

.mb-12 {
  margin-bottom: var(--margin-12) !important;
}

.mb-16 {
  margin-bottom: var(--margin-16) !important;
}

.mb-20 {
  margin-bottom: var(--margin-20) !important;
}

.mb-24 {
  margin-bottom: var(--margin-24) !important;
}

.mb-32 {
  margin-bottom: var(--margin-32) !important;
}

.mb-auto {
  margin-bottom: var(--margin-auto) !important;
}

/* Margin Left */
.ml-0 {
  margin-left: var(--margin-0) !important;
}

.ml-1 {
  margin-left: var(--margin-1) !important;
}

.ml-2 {
  margin-left: var(--margin-2) !important;
}

.ml-3 {
  margin-left: var(--margin-3) !important;
}

.ml-4 {
  margin-left: var(--margin-4) !important;
}

.ml-5 {
  margin-left: var(--margin-5) !important;
}

.ml-6 {
  margin-left: var(--margin-6) !important;
}

.ml-8 {
  margin-left: var(--margin-8) !important;
}

.ml-10 {
  margin-left: var(--margin-10) !important;
}

.ml-12 {
  margin-left: var(--margin-12) !important;
}

.ml-auto {
  margin-left: var(--margin-auto) !important;
}

/* Margin Right */
.mr-0 {
  margin-right: var(--margin-0) !important;
}

.mr-1 {
  margin-right: var(--margin-1) !important;
}

.mr-2 {
  margin-right: var(--margin-2) !important;
}

.mr-3 {
  margin-right: var(--margin-3) !important;
}

.mr-4 {
  margin-right: var(--margin-4) !important;
}

.mr-5 {
  margin-right: var(--margin-5) !important;
}

.mr-6 {
  margin-right: var(--margin-6) !important;
}

.mr-8 {
  margin-right: var(--margin-8) !important;
}

.mr-10 {
  margin-right: var(--margin-10) !important;
}

.mr-12 {
  margin-right: var(--margin-12) !important;
}

.mr-auto {
  margin-right: var(--margin-auto) !important;
}

/* Margin X (Left + Right) */
.mx-0 {
  margin-left: var(--margin-0) !important;
  margin-right: var(--margin-0) !important;
}

.mx-1 {
  margin-left: var(--margin-1) !important;
  margin-right: var(--margin-1) !important;
}

.mx-2 {
  margin-left: var(--margin-2) !important;
  margin-right: var(--margin-2) !important;
}

.mx-3 {
  margin-left: var(--margin-3) !important;
  margin-right: var(--margin-3) !important;
}

.mx-4 {
  margin-left: var(--margin-4) !important;
  margin-right: var(--margin-4) !important;
}

.mx-5 {
  margin-left: var(--margin-5) !important;
  margin-right: var(--margin-5) !important;
}

.mx-6 {
  margin-left: var(--margin-6) !important;
  margin-right: var(--margin-6) !important;
}

.mx-8 {
  margin-left: var(--margin-8) !important;
  margin-right: var(--margin-8) !important;
}

.mx-10 {
  margin-left: var(--margin-10) !important;
  margin-right: var(--margin-10) !important;
}

.mx-12 {
  margin-left: var(--margin-12) !important;
  margin-right: var(--margin-12) !important;
}

.mx-auto {
  margin-left: var(--margin-auto) !important;
  margin-right: var(--margin-auto) !important;
}

/* Margin Y (Top + Bottom) */
.my-0 {
  margin-top: var(--margin-0) !important;
  margin-bottom: var(--margin-0) !important;
}

.my-1 {
  margin-top: var(--margin-1) !important;
  margin-bottom: var(--margin-1) !important;
}

.my-2 {
  margin-top: var(--margin-2) !important;
  margin-bottom: var(--margin-2) !important;
}

.my-3 {
  margin-top: var(--margin-3) !important;
  margin-bottom: var(--margin-3) !important;
}

.my-4 {
  margin-top: var(--margin-4) !important;
  margin-bottom: var(--margin-4) !important;
}

.my-5 {
  margin-top: var(--margin-5) !important;
  margin-bottom: var(--margin-5) !important;
}

.my-6 {
  margin-top: var(--margin-6) !important;
  margin-bottom: var(--margin-6) !important;
}

.my-8 {
  margin-top: var(--margin-8) !important;
  margin-bottom: var(--margin-8) !important;
}

.my-10 {
  margin-top: var(--margin-10) !important;
  margin-bottom: var(--margin-10) !important;
}

.my-12 {
  margin-top: var(--margin-12) !important;
  margin-bottom: var(--margin-12) !important;
}

.my-16 {
  margin-top: var(--margin-16) !important;
  margin-bottom: var(--margin-16) !important;
}

.my-20 {
  margin-top: var(--margin-20) !important;
  margin-bottom: var(--margin-20) !important;
}

.my-24 {
  margin-top: var(--margin-24) !important;
  margin-bottom: var(--margin-24) !important;
}

.my-32 {
  margin-top: var(--margin-32) !important;
  margin-bottom: var(--margin-32) !important;
}


* {
  font-family: 'Montserrat', sans-serif;
}

/* Base animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in from left */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in animation */
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animation for multiple items */
.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Delay classes for stagger effect */
.stagger-delay-1 {
  transition-delay: 0.1s;
}

.stagger-delay-2 {
  transition-delay: 0.2s;
}

.stagger-delay-3 {
  transition-delay: 0.3s;
}

.stagger-delay-4 {
  transition-delay: 0.4s;
}

.stagger-delay-5 {
  transition-delay: 0.5s;
}

.stagger-delay-6 {
  transition-delay: 0.6s;
}

/* Loading spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulse animation for buttons */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Bounce animation for icons */
.bounce-animation {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Image loading effects */
img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

img.loaded {
  opacity: 1;
}

/* Skeleton loading for images */
.image-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced button hover effects */
.btn-banner:hover,
.service-card-cta:hover,
.btn-consultation:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card hover effects */
.service-card:hover,
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Icon hover effects */
.service-icon:hover,
.item-icon:hover,
.benefit-icon:hover {
  transform: scale(1.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth transitions for all interactive elements */
* {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Disable transitions during animations to prevent conflicts */
.animate-on-scroll,
.fade-in-left,
.fade-in-right,
.scale-in,
.stagger-item {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Font Awesome Icons - Common ones used in the project */
.fa-bus:before {
  content: "\f207";
}

.fa-phone:before {
  content: "\f095";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-headset:before {
  content: "\f590";
}

.fa-star:before {
  content: "\f005";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-instagram:before {
  content: "\f16d";
}

/* ========================================
   COMPONENTS
   ======================================== */

.tour-price-highlight {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
}

.tour-price-highlight .price-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    border: 2px solid rgba(255, 122, 24, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7a18;
    font-size: 26px;
    background: transparent;
}

.tour-price-highlight .price-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tour-price-highlight .price-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ff9350;
    font-weight: 600;
}

.tour-price-highlight .price-values {
    display: flex;
    gap: 12px;
    align-items: baseline;
    flex-wrap: wrap;
}

.tour-price-highlight .price-final {
    font-size: 32px;
    font-weight: 700;
    color: #ff6a00;
}

.tour-price-highlight .price-original {
    font-size: 16px;
}

.tour-price-highlight .price-unit {
    font-size: 14px;
    color: var(--color-gray-600);
}

.tour-highlight-list {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.07);
    margin-bottom: 32px;
}

.tour-highlight-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.tour-highlight-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 500;
}

.tour-highlight-list li i {
    color: var(--color-primary);
}

.tour-description,
.tour-itinerary,
.tour-policy {
    padding: 0;
    margin-bottom: 30px;
}

.tour-description table {
    width: 100% !important;
    border: 1px solid var(--color-gray-300);
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: var(--color-white);
}

.tour-description table th,
.tour-description table td {
    border: 1px solid var(--color-gray-300);
    padding: 12px 15px;
    vertical-align: middle;
    color: var(--color-dark);
}

.tour-description table thead th {
    background-color: var(--color-gray-300);
    font-weight: 600;
}

.tour-description table p {
    margin-bottom: 0;
}

.section-heading span {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.section-heading h2 {
    margin: 6px 0 20px;
}

.tour-inclusion-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card-panel {
    background: #fff;
    padding: 24px 0;
}

.booking-widget .booking-support {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    background: var(--color-gray-100);
    margin-top: 16px;
}

.booking-widget .booking-support i {
    font-size: 24px;
    color: var(--color-primary);
}

.related-tours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-tour {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--color-gray-100);
    transition: border 0.2s ease, transform 0.2s ease;
}

.related-tour:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.related-tour .tour-info h4 {
    margin-bottom: 4px;
}

.related-tour .tour-info h4 a {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-tour .tour-info h4 a:hover {
    color: var(--color-primary);
}

.related-tour .tour-meta {
    font-size: 13px;
    color: var(--color-gray-600);
    margin-bottom: 6px;
}

.tour-itinerary ul,
.tour-itinerary ol {
    padding-left: 18px;
}

@media (max-width: 991.98px) {
}
.tour-card .tour-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 20px rgba(255, 122, 24, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tour-card .tour-btn i {
  transition: transform 0.2s ease;
}

.tour-card .tour-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(255, 122, 24, 0.45);
  color: #fff;
}

.tour-card .tour-btn:hover i {
  transform: translateX(4px);
}

.popular-tour .tour-info h4 {
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.3em * 2);
}

.popular-tour .tour-info h4 a {
  color: #1d1d1f;
  text-decoration: none;
  transition: color 0.2s ease;
}

.popular-tour .tour-info h4 a:hover {
  color: #ff7a18;
}

.popular-tours {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-tour {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--color-gray-100);
  border-radius: 8px;
  transition: all 0.3s ease;
  align-items: center;
}

.popular-tour:hover {
  background: var(--color-light-gray);
}

.tour-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-thumb a {
  width: 100%;
  height: 100%;
  display: block;
}

.tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-thumb .thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tour-info .tour-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.tour-info .tour-price .price-original {
  font-size: 13px;
}

.tour-info .tour-price .price-unit {
  font-size: 12px;
  color: var(--color-gray-600);
}

.support-item .support-icon img.contact-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* ========================================
   PAGES
   ======================================== */

/* --- Tour Pages --- */
.tour-detail-hero-section {
    position: relative;
    padding: 80px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
    margin-bottom: 50px;
}

.tour-detail-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 18, 41, 0.65), rgba(9, 18, 41, 0.85));
}

.tour-detail-hero-section .container,
.tour-detail-hero-content {
    position: relative;
    z-index: 2;
}

.tour-header {
    max-width: 800px;
}

.tour-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.badge-soft-primary,
.badge-soft-danger {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-soft-primary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.badge-soft-danger {
    background: rgba(255, 99, 99, 0.25);
    color: #ffe1e1;
}

.tour-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.meta-chip {
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    min-width: 160px;
}

.meta-chip span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 4px;
}

.meta-chip span i {
    margin-right: 6px;
}

.meta-chip strong {
    font-size: 16px;
    font-weight: 600;
}

.tour-gallery .gallery-placeholder {
    height: 420px;
    border-radius: 16px;
    background: var(--color-gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    gap: 8px;
    font-weight: 600;
}

/* --- Navigation & Header --- */
/* Language Switcher */
.lang-icon {
  width: 20px;
  height: 15px;
  margin-right: 5px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-700);
  transition: var(--transition-base);
}

.lang-text:hover,
.lang-text.active {
  color: var(--color-primary);
}

/* Top Link */
.top-link {
  background: var(--color-gray-100);
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  position: relative;
}

.top-link a {
  text-decoration: none;
  color: var(--color-dark);
  margin-right: 15px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-link a:hover {
  color: var(--color-primary);
}

.lang-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
  border-radius: 2px;
}

.lang-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-link i {
  margin-right: 5px;
  color: var(--color-primary);
}

/* Navigation */
.navbar {
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  padding: 15px 0;
  transition: all 0.3s ease;
  position: relative;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.navbar .container {
  position: relative;
  z-index: 2;
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.95) 0%, rgba(255, 149, 0, 0.95) 100%);
  backdrop-filter: blur(15px);
  box-shadow: 0 6px 25px rgba(220, 53, 69, 0.4);
  padding: 10px 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 20px;
  color: var(--color-white) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--color-accent) !important;
  transform: scale(1.05);
}

.nav-link {
  font-weight: 700;
  margin-left: 25px;
  color: var(--color-white) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
}

.nav-link:hover {
  color: var(--color-accent) !important;
  transform: translateY(-2px);
}


/* Dropdown Toggle */
.dropdown-toggle::after {
  border-top: 0.3em solid var(--color-white);
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(15px);
  padding: 10px 0;
  margin-top: 5px;
  min-width: 200px;
  animation: dropdownFadeIn 0.3s ease;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Ensure dropdown stays open when hovering over menu items */
.dropdown-menu:hover {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Keep dropdown open when hovering over the entire dropdown area */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
}


/* Dropdown positioning */
.dropdown {
  position: relative;
}

/* Create an invisible bridge to prevent dropdown from closing */
.dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
  z-index: 999;
}


@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  color: var(--color-dark) !important;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 12px 20px;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-item:hover {
  background: var(--gradient-primary);
  color: var(--color-white) !important;
}

.dropdown-item::before {
  content: 'â†’';
  position: absolute;
  left: 5px;
  color: var(--color-white);
  opacity: 0;
  font-weight: bold;
}

.dropdown-item:hover::before {
  opacity: 1;
  left: 0px;
}

/* Navbar Responsive */
@media (max-width: 992px) {
  .navbar {
    padding: 12px 0;
  }

  .nav-link {
    margin-left: 15px;
    font-size: 13px;
  }

  .navbar-brand {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
  }

  .nav-link {
    margin-left: 10px;
    font-size: 12px;
  }

  .navbar-brand {
    font-size: 16px;
  }

  .dropdown-menu {
    min-width: 180px;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 0;
    border-radius: 5px;
  }

  .dropdown-item {
    font-size: 12px;
    padding: 10px 15px;
  }

  /* Show dropdown on mobile when parent is active */
  .dropdown.show .dropdown-menu {
    display: block;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 8px 0;
  }

  .nav-link {
    margin-left: 8px;
    font-size: 11px;
  }

  .navbar-brand {
    font-size: 14px;
  }

  .dropdown-menu {
    min-width: 160px;
  }

  .dropdown-item {
    font-size: 11px;
    padding: 8px 12px;
  }
}

/* --- Homepage Sections --- */
/* Slider Banner */
.slider-banner {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.banner-swiper {
  width: 100%;
  height: 100%;
}

.slider-banner .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slider-banner .slide-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.slider-banner .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.slider-banner .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  z-index: 2;
  text-align: center;
}

.swiper-slide .container {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  text-align: center;
}

/* Swiper Navigation Buttons */
.banner-next,
.banner-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.banner-next::after,
.banner-prev::after {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
}

.banner-next::after {
  content: '\f054';
  /* fa-chevron-right */
}

.banner-prev::after {
  content: '\f053';
  /* fa-chevron-left */
}

.banner-next:hover,
.banner-prev:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.banner-prev {
  left: 20px;
}

.banner-next {
  right: 20px;
}

/* Swiper Pagination */
.banner-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: auto;
  margin: 0 auto;
  text-align: center;
  min-width: 60px;
  max-width: 200px;
  flex-wrap: nowrap;
  overflow: visible;
}

.banner-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin: 0;
  transition: all 0.3s ease;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  box-sizing: border-box;
}

.banner-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.banner-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  transform: scale(1.3);
  box-shadow: 0 3px 10px rgba(220, 53, 69, 0.5);
  border-color: var(--color-secondary);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}


@keyframes autoplayPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pause autoplay indicator */
.banner-swiper.paused::before {
  background: var(--color-primary);
  animation: none;
  content: 'â¸';
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

/* Go to Top Button */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.go-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
  background: linear-gradient(135deg, #FF9500 0%, #DC3545 100%);
}

.go-to-top.show {
  display: flex;
  animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Fixed Support Icons */
.fixed-support {
  position: fixed;
  right: 35px;
  bottom: 40px;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.support-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-white);
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.support-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  opacity: 0.9;
  z-index: -1;
  border-radius: 50%;
}

.support-btn:hover {
  transform: translateX(-10px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.support-btn:hover .support-text {
  opacity: 1;
  transform: translateX(0);
}

.support-text {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-white);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.support-text::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid rgba(0, 0, 0, 0.8);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* Hotline Button */
.hotline-btn {
  background: linear-gradient(135deg, #DC3545 0%, #FF6B6B 100%);
  animation: hotlinePulse 2s infinite;
}

@keyframes hotlinePulse {
  0% {
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
  }

  50% {
    box-shadow: 0 4px 25px rgba(220, 53, 69, 0.8);
  }

  100% {
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
  }
}

/* Facebook Button */
.facebook-btn {
  background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
}

.facebook-btn:hover {
  background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
  transform: translateX(-10px) scale(1.1);
}

.facebook-btn:hover i {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 2px 4px rgba(24, 119, 242, 0.3));
}

/* Zalo Button */
.zalo-btn {
  background: linear-gradient(135deg, #0068FF 0%, #00A8FF 100%);
}

.zalo-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: all 0.3s ease;
}

.zalo-btn:hover .zalo-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 2px 4px rgba(0, 104, 255, 0.3));
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Slider Responsive */
@media (max-width: 768px) {
  .slider-banner {
    height: auto;
  }

  .slider-banner h1 {
    font-size: 36px;
  }

  .slider-banner p {
    font-size: 16px;
  }

  .banner-next,
  .banner-prev {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .banner-next::after,
  .banner-prev::after {
    font-size: 10px;
  }

  .banner-prev {
    left: 15px;
  }

  .banner-next {
    right: 15px;
  }

  .banner-pagination {
    bottom: 25px;
    gap: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    margin: 0 auto;
  }

  .banner-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-width: 1px;
    border-radius: 50%;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  /* Go to Top Button Tablet */
  .go-to-top {
    width: 48px;
    height: 48px;
    bottom: 25px;
    right: 25px;
    font-size: 17px;
  }

  /* Fixed Support Icons Tablet */
  .fixed-support {
    right: 25px;
    gap: 13px;
  }

  .support-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .support-icon {
    width: 20px;
    height: 20px;
  }

  .support-text {
    font-size: 13px;
    padding: 7px 13px;
    right: 65px;
  }

  .zalo-icon {
    width: 16px;
    height: 16px;
  }

  /* Top Link Tablet */
  .top-link {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .top-link .row {
    justify-content: center;
    text-align: center;
  }

  .top-link .col-md-6 {
    text-align: center !important;
    margin-bottom: 5px;
  }

  .top-link .col-md-6:last-child {
    margin-bottom: 0;
  }

  .top-link a {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    justify-content: center;
    margin: 0 8px;
  }

  .top-link a:hover {
    color: #FFD700;
  }

  .top-link i {
    color: #FFD700;
  }

  .lang-text {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  /* Hide language text on tablet, show only icons */
  .top-link .col-md-6:first-child .lang-text {
    display: none;
  }

  .lang-icon {
    width: 18px;
    height: 18px;
  }

  .top-link .col-md-6:first-child a {
    margin: 0 8px;
  }

  /* Hide address on tablet */
  .top-link .col-md-6:last-child a:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .slider-banner h1 {
    font-size: 28px;
  }

  .slider-banner p {
    font-size: 14px;
  }

  .banner-next,
  .banner-prev {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .banner-next::after,
  .banner-prev::after {
    font-size: 8px;
  }

  .banner-prev {
    left: 10px;
  }

  .banner-next {
    right: 10px;
  }

  .banner-pagination {
    bottom: 20px;
    gap: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    margin: 0 auto;
  }

  .banner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-width: 1px;
    border-radius: 50%;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  /* Go to Top Button Mobile */
  .go-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
  }

  /* Fixed Support Icons Mobile */
  .fixed-support {
    right: 25px;
    gap: 12px;
  }

  .support-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .support-icon {
    width: 18px;
    height: 18px;
  }

  .support-text {
    font-size: 12px;
    padding: 6px 12px;
    right: 60px;
  }

  .zalo-icon {
    width: 14px;
    height: 14px;
  }

  /* Top Link Mobile */
  .top-link {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .top-link .row {
    justify-content: center;
    text-align: center;
  }

  .top-link .col-md-6 {
    text-align: center !important;
    margin-bottom: 5px;
  }

  .top-link .col-md-6:last-child {
    margin-bottom: 0;
  }

  .top-link a {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    justify-content: center;
    margin: 0 8px;
  }

  .top-link a:hover {
    color: #FFD700;
  }

  .top-link i {
    color: #FFD700;
  }

  .lang-text {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  /* Hide language text on mobile, show only icons */
  .top-link .col-md-6:first-child .lang-text {
    display: none;
  }

  .lang-icon {
    width: 20px;
    height: 20px;
  }

  .top-link .col-md-6:first-child a {
    margin: 0 8px;
  }

  /* Hide address on mobile */
  .top-link .col-md-6:last-child a:last-child {
    display: none;
  }
}

.slider-banner h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-banner p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-banner {
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
  padding: 12px 35px;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

/* Danh sÃ¡ch dá»‹ch vá»¥ */
.service-section {
  padding: 60px 0;
  background: var(--color-gray-100);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  margin: 15px auto 0;
}

.service-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(220, 53, 69, 0.2);
}

.service-card-image {
  position: relative;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 3px;
  margin: 15px 0;
  padding: 0;
}

.price-prefix {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-700);
}

.price-amount {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.price-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-700);
}

.service-card-body {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 200px);
}

.service-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 10px 0;
}

.service-card-cta:hover {
  color: var(--color-secondary);
}

.service-card-cta i {
  transition: transform 0.3s ease;
}

.service-card-cta:hover i {
  transform: translateX(3px);
}

/* Service Cards Responsive */
@media (max-width: 1200px) {
  .service-card-body {
    padding: 20px 15px;
  }

  .service-card-title {
    font-size: 16px;
  }

  .service-card-price {
    margin: 12px 0;
  }

  .price-prefix {
    font-size: 13px;
  }

  .price-amount {
    font-size: 22px;
  }

  .price-unit {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .service-card {
    margin-bottom: 25px;
  }

  .service-card img {
    height: 180px;
  }

  .service-card-body {
    height: calc(100% - 180px);
    padding: 20px 15px;
  }

  .service-card-title {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
  }

  .service-card img {
    height: 160px;
  }

  .service-card-body {
    height: calc(100% - 160px);
    padding: 15px;
  }

  .service-card-title {
    font-size: 15px;
  }

  .service-card p {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .service-card-cta {
    font-size: 13px;
  }

  .service-card-price {
    margin: 10px 0;
  }

  .price-prefix {
    font-size: 12px;
  }

  .price-amount {
    font-size: 20px;
  }

  .price-unit {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .service-card img {
    height: 140px;
  }

  .service-card-body {
    height: calc(100% - 140px);
    padding: 12px;
  }

  .service-card-title {
    font-size: 14px;
  }

  .service-card p {
    font-size: 11px;
  }

  .service-card-cta {
    font-size: 12px;
  }
}

/* Giá»›i thiá»‡u */
/* Intro Section - Split Screen Layout */
.intro-section {
  padding: 0;
  min-height: 100vh;
  display: flex;
}

.intro-layout {
  display: flex;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
}

.intro-image-side {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.steering-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8);
}

.intro-content-side {
  flex: 1;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  padding: 60px 40px;
  position: relative;
}

.content-wrapper {
  max-width: 100%;
  color: var(--color-white);
}

.intro-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--color-white);
  line-height: 1.2;
}

.title-line {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin-bottom: 30px;
}

.intro-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.benefits-list {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefit-icon i {
  font-size: 12px;
  color: var(--color-white);
}

.benefit-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  color: #e0e0e0;
}

.benefit-text strong {
  color: var(--color-white);
  font-weight: 600;
}

.customer-quote {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin: 40px 0;
  position: relative;
  border-left: 4px solid var(--color-white);
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(10px);
}

.quote-mark {
  position: absolute;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: bold;
  line-height: 1;
}

.quote-mark.top {
  top: 10px;
  left: 20px;
}

.quote-mark.bottom {
  bottom: 10px;
  right: 20px;
  transform: rotate(180deg);
}

.quote-content {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.conclusion-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: var(--shadow-md);
}

.service-icon i {
  font-size: 18px;
  color: var(--color-primary);
}

.service-item span {
  font-size: 13px;
  color: var(--color-white);
  font-weight: 500;
  line-height: 1.3;
}

/* Intro Section Responsive */
@media (max-width: 1024px) {
  .intro-content-side {
    padding: 40px 30px;
  }

  .intro-title {
    font-size: 32px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .intro-layout {
    flex-direction: column;
  }

  .intro-image-side {
    height: 50vh;
    min-height: 300px;
  }

  .intro-content-side {
    padding: 40px 20px;
    min-height: auto;
  }

  .intro-title {
    font-size: 28px;
  }

  .benefit-item {
    margin-bottom: 15px;
  }

  .benefit-text {
    font-size: 14px;
  }

  .customer-quote {
    padding: 20px;
    margin: 30px 0;
  }

  .quote-mark {
    font-size: 40px;
  }

  .quote-content {
    font-size: 14px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-item {
    padding: 15px 8px;
  }

  .service-icon {
    width: 35px;
    height: 35px;
  }

  .service-icon i {
    font-size: 16px;
  }

  .service-item span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .intro-content-side {
    padding: 30px 15px;
  }

  .intro-title {
    font-size: 24px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .benefit-item {
    gap: 10px;
  }

  .benefit-icon {
    width: 18px;
    height: 18px;
  }

  .benefit-icon i {
    font-size: 10px;
  }
}

/* Táº¡i sao chá»n chÃºng tÃ´i */
/* Why Us Section - New Layout */
.why-us-section {
  padding: 100px 0;
  background: var(--color-gray-100);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23e9ecef"><path d="M0,200 L1000,0 L1000,200 Z"/></svg>') no-repeat center bottom;
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.why-us-layout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.why-us-left,
.why-us-right {
  flex: 1;
  max-width: 45%;
}

.why-us-center {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.car-container {
  position: relative;
  min-width: 350px;
  max-width: 480px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
  transform: rotate(90deg);
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  background: var(--color-white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.why-us-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
}

.left-item {
  flex-direction: row;
  text-align: right;
}

.right-item {
  flex-direction: row;
  text-align: left;
}

.item-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px 0 0;
}

.left-item .item-icon {
  margin: 0 0 0 15px;
  order: 2;
}

.right-item .item-icon {
  margin: 0 15px 0 0;
  order: 1;
}

.item-icon i {
  font-size: 24px;
  color: var(--color-white);
}

.item-content {
  flex: 1;
}

.left-item .item-content {
  order: 1;
}

.right-item .item-content {
  order: 2;
}

.item-content h4 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.3;
}

.item-content p {
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.connecting-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}

.left-item .connecting-dot {
  right: -4px;
}

.right-item .connecting-dot {
  left: -4px;
}

/* Connecting lines */
.why-us-item::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 60px;
  background: var(--color-primary);
  z-index: 3;
}

.left-item::after {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
}

.right-item::after {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
}

/* Why Us Responsive */
@media (max-width: 1200px) {
  .why-us-layout {
    max-width: 100%;
    padding: 0 20px;
  }

  .why-us-center {
    flex: 0 0 200px;
  }

  .car-container {
    width: 180px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .why-us-layout {
    flex-direction: column;
    gap: 40px;
  }

  .why-us-left,
  .why-us-right {
    max-width: 100%;
    width: 100%;
  }

  .why-us-center {
    order: -1;
    flex: none;
    margin: 20px 0;
  }

  .car-container {
    width: 150px;
    height: auto;
  }

  .why-us-item {
    margin-bottom: 30px;
  }

  .left-item,
  .right-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
  }

  .left-item .item-icon {
    order: 1;
  }

  .left-item .item-content {
    order: 2;
  }

  .left-item .connecting-dot {
    order: 999;
    display: none;
  }

  .item-icon {
    margin: 0 0 20px 0;
    align-self: center;
    order: 1;
    flex-shrink: 0;
  }

  .item-content {
    order: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .item-content h4 {
    text-align: center;
    margin-bottom: 10px;
    order: 1;
  }

  .item-content p {
    text-align: center;
    order: 2;
  }

  .connecting-dot {
    display: none;
    order: 999;
  }

  .why-us-item::after {
    display: none;
  }

  .item-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .item-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .why-us-item {
    padding: 15px;
    margin-bottom: 20px;
  }

  .left-item,
  .right-item {
    align-items: center;
    text-align: center;
    justify-content: flex-start;
  }

  .left-item .item-icon {
    order: 1;
  }

  .left-item .item-content {
    order: 2;
  }

  .left-item .connecting-dot {
    order: 999;
    display: none;
  }

  .item-icon {
    width: 45px;
    height: 45px;
    margin: 0 0 15px 0;
    order: 1;
    flex-shrink: 0;
  }

  .item-icon i {
    font-size: 20px;
  }

  .item-content {
    order: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .item-content h4 {
    text-align: center;
    order: 1;
  }

  .item-content p {
    text-align: center;
    order: 2;
  }

  .connecting-dot {
    display: none;
    order: 999;
  }

  .item-content h4 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .item-content p {
    font-size: 13px;
    line-height: 1.4;
  }
}

.why-us-item p {
  color: var(--color-gray-700);
  font-size: 14px;
}

/* Banner tÆ° váº¥n */
.consultation-banner {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 60px 0;
  text-align: center;
}

.consultation-banner h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.consultation-banner p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-consultation {
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 5px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-consultation:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

.consultation-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.phone-btn {
  background: var(--gradient-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.phone-btn:hover {
  background: linear-gradient(135deg, #c82333 0%, #e6850e 100%);
  color: var(--color-white);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(220, 53, 69, 0.4);
}

.phone-btn i {
  font-size: 24px;
}

.zalo-btn {
  background: linear-gradient(135deg, #0068FF 0%, #00A8FF 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 104, 255, 0.3);
}

.zalo-btn:hover {
  background: linear-gradient(135deg, #0056CC 0%, #0088DD 100%);
  color: var(--color-white);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 104, 255, 0.4);
}

.zalo-btn i {
  font-size: 24px;
}

.consultation-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Consultation Buttons Responsive */
@media (max-width: 768px) {
  .consultation-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .phone-btn,
  .zalo-btn {
    width: 100%;
    max-width: 350px;
    justify-content: center;
    font-size: 16px;
  }

  .phone-btn i,
  .zalo-btn i {
    font-size: 20px;
  }

  .consultation-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {

  .phone-btn,
  .zalo-btn {
    font-size: 15px;
  }

  .phone-btn i,
  .zalo-btn i {
    font-size: 18px;
  }

  .consultation-icon {
    width: 18px;
    height: 18px;
  }
}

/* KhÃ¡ch hÃ ng */
/* Testimonial Section with Background Image */
.testimonial-section {
  padding: 100px 0;
  background: var(--gradient-dark-overlay),
    url('../images/testimonial-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.testimonial-section .section-title {
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 60px;
}

.testimonial-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Testimonial Slider */
/* Testimonial Slider - Swiper */
.testimonial-swiper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px 60px;
  overflow: visible;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}


/* Testimonial Pagination - Updated */
.testimonial-pagination {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.6) !important;
  opacity: 1 !important;
  margin: 0 4px !important;
  transition: all 0.3s ease !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}


.testimonial-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
  transform: scale(1.3) !important;
  box-shadow: 0 3px 10px rgba(220, 53, 69, 0.5) !important;
  border-color: #FF9500 !important;
  border-radius: 50% !important;
}

.testimonial-slide.prev {
  display: block;
  opacity: 0.3;
  transform: translateX(-50px);
}

.testimonial-slide.next {
  display: block;
  opacity: 0.3;
  transform: translateX(50px);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.testimonial-avatar {
  margin-bottom: 20px;
}

.avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.avatar-img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.stars {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 18px;
}

.stars i {
  margin: 0 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.stars i:hover {
  transform: scale(1.2);
  color: #FFA500;
}

.testimonial-card p {
  color: #555;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
}

.testimonial-card p::before {
  content: '"';
  font-size: 60px;
  color: #FFD700;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
  opacity: 0.3;
}

.testimonial-card p::after {
  content: '"';
  font-size: 60px;
  color: #FFD700;
  position: absolute;
  bottom: -40px;
  right: -10px;
  font-family: serif;
  opacity: 0.3;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 16px;
  margin-top: 10px;
}

/* Testimonial Navigation - Updated */
.testimonial-next,
.testimonial-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(220, 53, 69, 0.2);
}

/* Remove any pseudo-elements from testimonial navigation buttons */
.testimonial-next::after,
.testimonial-prev::after,
.testimonial-next::before,
.testimonial-prev::before {
  display: none !important;
  content: none !important;
}

/* Ensure Font Awesome icons are properly displayed */
.testimonial-next i,
.testimonial-prev i {
  font-size: 18px;
  color: inherit;
  display: inline-block;
  line-height: 1;
}

/* Override Swiper default button styles */
.testimonial-next.swiper-button-next,
.testimonial-prev.swiper-button-prev {
  border: 2px solid rgba(220, 53, 69, 0.2) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  margin-top: 0 !important;
}

.testimonial-next.swiper-button-next::after,
.testimonial-prev.swiper-button-prev::after {
  display: none !important;
  content: none !important;
}

.testimonial-next.swiper-button-next::before,
.testimonial-prev.swiper-button-prev::before {
  display: none !important;
  content: none !important;
}

.testimonial-next:hover,
.testimonial-prev:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.testimonial-prev {
  left: -35px;
}

.testimonial-next {
  right: -35px;
}


/* Testimonial Responsive */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .testimonial-slider-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .testimonial-next,
  .testimonial-prev {
    width: 40px;
    height: 40px;
  }

  .testimonial-next i,
  .testimonial-prev i {
    font-size: 14px;
  }

  /* Ensure no pseudo-elements on mobile */
  .testimonial-next::after,
  .testimonial-prev::after,
  .testimonial-next::before,
  .testimonial-prev::before {
    display: none !important;
    content: none !important;
  }

  .testimonial-prev {
    left: -15px;
  }

  .testimonial-next {
    right: -15px;
  }

  .testimonial-card {
    padding: 30px 20px;
    margin-bottom: 25px;
  }

  .avatar-img {
    width: 70px;
    height: 70px;
  }

  .stars {
    font-size: 16px;
  }

  .testimonial-card p {
    font-size: 15px;
  }

  .testimonial-card p::before,
  .testimonial-card p::after {
    font-size: 40px;
  }

  .testimonial-card p::before {
    top: -15px;
    left: -5px;
  }

  .testimonial-card p::after {
    bottom: -30px;
    right: -5px;
  }

  .testimonial-pagination {
    margin-top: 30px;
  }

  .testimonial-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-slider-container {
    padding: 0 15px;
  }

  .testimonial-nav {
    width: 35px;
    height: 35px;
    display: none;
    /* Hide arrows on very small screens */
  }

  .testimonial-card {
    padding: 25px 15px;
  }

  .avatar-img {
    width: 60px;
    height: 60px;
  }

  .stars {
    font-size: 14px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .testimonial-pagination {
    margin-top: 25px;
  }

  .testimonial-dot {
    width: 8px;
    height: 8px;
  }
}

/* BÃ i viáº¿t */
.post-section {
  padding: 80px 0;
}

.post-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.post-card-image {
  position: relative;
  overflow: hidden;
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover img {
  transform: scale(1.05);
}

.post-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.post-card-body {
  padding: 25px;
}

.post-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.post-card-date,
.post-card-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-gray-700);
}

.post-card-date i,
.post-card-author i {
  color: var(--color-primary);
  font-size: 12px;
}

.post-card-title {
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.post-card:hover .post-card-title {
  color: var(--color-primary);
}

.post-card p {
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.post-card-cta:hover {
  color: var(--color-secondary);
  border-bottom-color: #FF9500;
  transform: translateX(5px);
}

.post-card-cta i {
  transition: transform 0.3s ease;
}

.post-card-cta:hover i {
  transform: translateX(3px);
}

/* Post Cards Responsive */
@media (max-width: 768px) {
  .post-card-body {
    padding: 20px;
  }

  .post-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .post-card-title {
    font-size: 16px;
  }

  .post-card-category {
    font-size: 11px;
    padding: 5px 10px;
  }

  .post-card-date,
  .post-card-author {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .post-card-body {
    padding: 15px;
  }

  .post-card-title {
    font-size: 15px;
  }

  .post-card p {
    font-size: 13px;
  }

  .post-card-cta {
    font-size: 13px;
  }

  .post-card-category {
    top: 10px;
    left: 10px;
    font-size: 10px;
    padding: 4px 8px;
  }
}


/* Footer */
.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../images/footer-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
  padding: 80px 0 30px;
  position: relative;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  position: relative;
  padding-left: 20px;
}

.footer h5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

.footer h5::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #FF9500;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

.footer a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
  padding: 5px 0;
  font-weight: 500;
}

.footer a:hover {
  color: var(--color-primary);
  transform: translateX(5px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.footer a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.footer a:hover::before {
  width: 10px;
}

.footer a::after {
  content: 'â†’';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  opacity: 0;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 12px;
}

.footer a:hover::after {
  opacity: 1;
  right: -15px;
}

/* Footer Links List Styling */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.footer ul li::before {
  content: 'â€¢';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer ul li:hover::before {
  color: var(--color-secondary);
  transform: translateY(-50%) scale(1.2);
}

.footer ul li a {
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.footer ul li:hover a {
  color: var(--color-secondary);
  transform: translateX(8px);
}

.footer-contact {
  margin-bottom: 15px;
  color: var(--color-gray-300);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-contact i {
  color: var(--color-primary);
  margin-right: 10px;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: var(--color-gray-300);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .footer-bottom {
    font-size: 12px;
  }
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-company-info {
  font-size: 12px;
  color: var(--color-gray-300);
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  color: var(--color-gray-500);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.4s ease;
  z-index: -1;
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--color-white);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
  border-color: rgba(255, 149, 0, 0.5);
}

.social-links a:hover::before {
  left: 0;
}

.social-links a i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-links a:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 20px;
    background-attachment: scroll;
  }

  .footer h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-contact {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    margin-right: 8px;
  }

  .social-links a:hover {
    transform: translateY(-2px) scale(1.05);
  }

  .footer h5 {
    font-size: 14px;
    padding-left: 18px;
    letter-spacing: 0.8px;
  }

  .footer h5::before {
    width: 3px;
    height: 18px;
  }

  .footer h5::after {
    left: 6px;
    border-left-width: 5px;
    border-top-width: 2.5px;
    border-bottom-width: 2.5px;
  }
}

@media (max-width: 480px) {
  .footer h5 {
    font-size: 13px;
    padding-left: 16px;
    letter-spacing: 0.6px;
  }

  .footer h5::before {
    width: 3px;
    height: 16px;
  }

  .footer h5::after {
    left: 5px;
    border-left-width: 4px;
    border-top-width: 2px;
    border-bottom-width: 2px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    margin-right: 6px;
  }

  .footer ul li a {
    font-size: 13px;
  }

  .footer a::before {
    left: -12px;
    height: 1.5px;
  }

  .footer a:hover::before {
    width: 8px;
  }

  .footer a::after {
    right: -15px;
    font-size: 10px;
  }

  .footer a:hover::after {
    right: -12px;
  }
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.mobile-contact-btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.mobile-contact-btn:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: var(--color-primary);
}

.mobile-contact-btn i {
  font-size: 16px;
}

/* Mobile Menu Content */
.mobile-menu-content {
  flex: 1;
  overflow-y: auto;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-item {
  margin-bottom: 20px;
}

.mobile-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-link:hover {
  color: #FFD700;
  padding-left: 10px;
}

.mobile-menu-link i {
  color: var(--color-white);
  font-size: 16px;
  transition: transform 0.3s ease;
}

.mobile-menu-link:hover i {
  color: var(--color-accent);
}

.mobile-menu-item.active .mobile-menu-link i {
  transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

.mobile-submenu.active {
  max-height: 300px;
  padding: 10px 0;
}

.mobile-submenu li {
  margin: 0;
}

.mobile-submenu a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 12px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 40px;
}

.mobile-submenu a:hover {
  color: var(--color-accent);
  padding-left: 50px;
}

.mobile-submenu a::before {
  content: 'â†’';
  position: absolute;
  left: 20px;
  color: var(--color-white);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.mobile-submenu a:hover::before {
  transform: translateX(5px);
}


/* Hamburger Icon - SVG Enhanced */
/* Mobile Menu Toggle Button */
.navbar-toggler {
  border: none;
  background: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}

.navbar-toggler:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.mobile-menu-toggle {
  border: none;
  background: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}

.mobile-menu-toggle:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.menu-icon {
  width: 30px;
  height: 30px;
  border: none;
}


/* Mobile Menu Responsive */
@media (max-width: 768px) {
  .mobile-menu-container {
    padding: 15px;
  }

  .mobile-menu-header {
    margin-bottom: 30px;
  }

  .mobile-menu-link {
    font-size: 16px;
    padding: 12px 0;
  }

  .mobile-contact-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .mobile-submenu a {
    font-size: 14px;
    padding: 10px 15px;
    padding-left: 35px;
  }

  .mobile-submenu a::before {
    left: 15px;
  }
}

@media (max-width: 480px) {
  .mobile-menu-container {
    padding: 10px;
  }

  .mobile-menu-link {
    font-size: 15px;
  }

  .mobile-contact-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

}

/* --- Blog Pages --- */

/* Blog Hero Section */
.blog-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
}

.blog-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Blog Filter Section */
.blog-filter-section {
  background: var(--color-gray-100);
  padding: 40px 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.blog-filter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-tab {
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  color: var(--color-gray-700);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.search-box {
  display: flex;
  background: var(--color-white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.search-input {
  border: none;
  padding: 12px 20px;
  width: 300px;
  outline: none;
  font-size: 14px;
}

.search-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: var(--color-primary-dark);
}

/* Blog Content Section */
.blog-content-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-post {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blog-post.featured-post {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 50px;
}

.post-image {
  position: relative;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-post .post-image img {
  height: 100%;
  min-height: 300px;
}

.blog-post:hover .post-image img {
  transform: scale(1.05);
}

.post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.post-category.featured {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--color-dark);
}

.post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-post:hover .post-overlay {
  opacity: 1;
}

.post-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-content {
  padding: 25px;
}

.post-title,
.post-title a {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.featured-post .post-title {
  font-size: 24px;
}

.blog-post:hover .post-title {
  color: var(--color-primary);
}

.post-excerpt {
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tag {
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.post-read-more:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
  transform: translateX(5px);
}

.post-read-more i {
  transition: transform 0.3s ease;
}

.post-read-more:hover i {
  transform: translateX(3px);
}

/* Blog Pagination */
.blog-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-item {
  margin: 0;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--color-white);
  color: var(--color-gray-700);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.page-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.page-item.active .page-link {
  background: var(--color-primary);
  color: var(--color-white);
  border: none !important;
}

.page-item.disabled .page-link {
  background: var(--color-gray-100);
  color: #ccc;
  cursor: not-allowed;
}

/* Blog Sidebar */
.blog-sidebar {
  padding-left: 30px;
}

.sidebar-widget {
  background: var(--color-white);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
}

/* Search Widget */
.search-widget {
  display: flex;
  background: var(--color-gray-100);
  border-radius: 25px;
  overflow: hidden;
}

.search-widget .search-input {
  background: transparent;
  border: none;
  padding: 12px 15px;
  width: 100%;
  outline: none;
  font-size: 14px;
}

.search-widget .search-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-widget .search-btn:hover {
  background: var(--color-primary-dark);
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-gray-700);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.category-list a:hover {
  color: var(--color-primary);
  padding-left: 10px;
}

.count {
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

/* Popular Posts */
.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-post {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
  border-bottom: none;
}

.post-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.popular-post:hover .post-thumb img {
  transform: scale(1.1);
}

.post-info h4 {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 1.4;
}

.post-info h4 a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-info h4 a:hover {
  color: var(--color-primary);
}

.post-date {
  font-size: 12px;
  color: var(--color-white);
}

/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud .tag {
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--color-light-gray);
}

.tag-cloud .tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Newsletter Widget */
.newsletter-widget {
  background: var(--gradient-primary);
}

.newsletter-widget .widget-title {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget .widget-title::after {
  background: var(--color-white);
}

.newsletter-widget p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  background: var(--color-white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.newsletter-input {
  border: none;
  padding: 12px 20px;
  width: 100%;
  color: var(--color-dark);
  outline: none;
  font-size: 14px;
  background: var(--color-white);
}

.newsletter-input::placeholder {
  color: var(--color-gray-500);
}

.newsletter-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 25px 25px 0;
}

.newsletter-btn:hover {
  background: var(--color-primary-dark);
}

.newsletter-btn i {
  font-size: 16px;
}

/* Category Hero Section */
.category-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.category-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-nav {
  margin-bottom: 30px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}


.breadcrumb-item a:hover {
  color: var(--color-white);
}

.breadcrumb-item.active {
  color: var(--color-white);
  font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.8);
}

.category-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.category-hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.category-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

/* Category Filter Section */
.category-filter-section {
  background: var(--color-gray-100);
  padding: 30px 0;
  border-bottom: 1px solid var(--color-gray-300);
}

.filter-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sort-options label {
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
}

.sort-select {
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.view-options {
  display: flex;
  gap: 5px;
}

.view-btn {
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  color: var(--color-gray-700);
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Related Categories */
.related-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-categories li {
  margin-bottom: 8px;
}

.related-categories a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-gray-700);
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.related-categories a:hover {
  color: var(--color-primary);
  padding-left: 10px;
}

/* Blog Detail Hero Section */
.blog-detail-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.blog-detail-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.blog-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.post-meta-header {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.post-meta-header>div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.post-meta-header i {
  color: #FFD700;
}

.blog-detail-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.blog-detail-hero-content .post-excerpt {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Blog Detail Content Section */
.blog-detail-content-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.blog-detail-post {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.post-featured-image {
  position: relative;
  margin-bottom: 0;
}

.post-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--color-white);
  padding: 20px;
}

.image-caption p {
  margin: 0;
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
}

.post-content {
  padding: 40px;
}

.post-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 30px 0 20px 0;
  line-height: 1.3;
}

.post-content h2:first-child {
  margin-top: 0;
}

.post-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-dark);
  margin: 25px 0 15px 0;
  line-height: 1.3;
}

.post-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 20px 0 10px 0;
  line-height: 1.3;
}

.post-content p {
  color: var(--color-gray-700);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.post-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post-content li {
  color: var(--color-gray-700);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.post-content strong {
  color: var(--color-dark);
  font-weight: 600;
}

.post-content img {
  width: 100%;
  height: auto;
}

.post-footer {
  padding: 20px;
}

/* Post Share */
.post-share {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}

.post-share h4,
.post-tags-section h4 {
  margin-bottom: 20px;
  color: var(--color-dark);
  font-size: 18px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  justify-content: flex-start;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 4px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.share-btn i {
  margin-right: 5px;
  font-size: 13px;
}

.share-btn.facebook {
  background: #1877F2;
  color: var(--color-white);
}

.share-btn.twitter {
  background: #1DA1F2;
  color: var(--color-white);
}

.share-btn.linkedin {
  background: #0077B5;
  /* Official LinkedIn blue */
  color: var(--color-white);
}

.share-btn.zalo {
  background: #0068FF;
  color: var(--color-white);
}

.share-btn.copy {
  background: #6c757d;
  color: var(--color-white);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Related Posts */
.related-posts {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.related-posts h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.related-post {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.related-post:last-child {
  border-bottom: none;
}

.related-post:hover {
  padding-left: 10px;
}

.related-post .post-image {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.related-post .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post:hover .post-image img {
  transform: scale(1.1);
}

.related-post .post-content {
  padding: 0 15px;
}

.related-post .post-content h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  line-height: 1.4;
}

.related-post .post-content h4 a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post .post-content h4 a:hover {
  color: var(--color-primary);
}

/* Comments Section */
.comments-section {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.comments-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 25px;
}

.comment-form {
  background: var(--color-gray-100);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.comment-form h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.comment-form .form-control {
  border: 2px solid var(--color-light-gray);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.comment-form .form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.comment-form .btn-primary {
  background: var(--color-primary);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.comment-form .btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment-item {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-avatar {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
}

.comment-date {
  font-size: 12px;
  color: var(--color-gray-500);
}

.comment-content p {
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.reply-btn {
  background: none;
  border: 1px solid var(--color-light-gray);
  color: var(--color-gray-700);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reply-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Author Widget */
.author-widget {
  background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-light-gray) 100%);
  border-left: 4px solid var(--color-primary);
}

.author-info {
  display: flex;
  gap: 15px;
}

.author-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-primary);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
}

.author-details p {
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.author-social {
  display: flex;
  gap: 10px;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Table of Contents Widget */
.toc-widget {
  background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-light-gray) 100%);
  border-left: 4px solid var(--color-secondary);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list a {
  display: block;
  color: var(--color-gray-700);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-light-gray);
  transition: all 0.3s ease;
  font-size: 14px;
}

.toc-list a:hover {
  color: var(--color-primary);
  padding-left: 10px;
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-hero-content h1 {
    font-size: 36px;
  }

  .blog-hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 28px;
  }

  .blog-filter-content {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-tabs {
    justify-content: center;
  }

  .search-box {
    width: 100%;
  }

  .search-input {
    width: 100%;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-post.featured-post {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }

  .post-meta-header {
    gap: 15px;
  }

  .blog-detail-hero-content h1 {
    font-size: 32px;
  }

  .post-content {
    padding: 25px;
  }

  .post-content h2 {
    font-size: 24px;
  }

  .post-content h3 {
    font-size: 20px;
  }

  .share-buttons {
    justify-content: center;
  }

  .related-post {
    flex-direction: column;
  }

  .related-post .post-image {
    width: 100%;
    height: 150px;
  }

  .comment-item {
    flex-direction: column;
  }

  .comment-avatar {
    align-self: flex-start;
  }

  .author-info {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .blog-hero-content h1 {
    font-size: 28px;
  }

  .blog-hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .filter-tabs {
    flex-direction: column;
    width: 100%;
  }

  .filter-tab {
    text-align: center;
  }

  .blog-detail-hero-content h1 {
    font-size: 24px;
  }

  .post-content {
    padding: 20px;
  }

  .related-post .post-content {
    padding: 0;
  }

  .post-content h2 {
    font-size: 20px;
  }

  .post-content h3 {
    font-size: 18px;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    justify-content: center;
  }
}

/* ===== TAG PAGE STYLES ===== */

/* Tag Hero Section */
.tag-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tag-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.tag-hero-content {
  position: relative;
  z-index: 2;
}

.tag-header {
  margin-bottom: 30px;
}

.tag-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.tag-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tag-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.tag-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.tag-stats .stat-item {
  text-align: center;
}

.tag-stats .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 5px;
}

.tag-stats .stat-label {
  font-size: 14px;
  opacity: 0.8;
}

/* Tag Filter Section */
.tag-filter-section {
  padding: 40px 0;
  background: var(--color-gray-100);
  border-bottom: 1px solid var(--color-light-gray);
}

.tag-filter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-options {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-options label {
  font-weight: 600;
  color: var(--color-dark);
}

.sort-select {
  padding: 8px 15px;
  border: 1px solid var(--color-gray-300);
  border-radius: 5px;
  background: var(--color-white);
  font-size: 14px;
}

.view-options {
  display: flex;
  gap: 5px;
}

.view-btn {
  padding: 8px 12px;
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  color: var(--color-gray-700);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.related-tags {
  display: flex;
  align-items: center;
  gap: 15px;
}

.related-tags-label {
  font-weight: 600;
  color: var(--color-dark);
}

.related-tags-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.related-tags-list .tag {
  padding: 5px 12px;
  background: var(--color-light-gray);
  color: var(--color-gray-700);
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-tags-list .tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Tag Content Section */
.tag-content-section {
  padding: 60px 0;
}

.tag-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Tag Info Widget */
.tag-info-widget {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.tag-info-widget .widget-title {
  color: var(--color-white);
  margin-bottom: 20px;
}

.tag-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.tag-display i {
  font-size: 20px;
}

.tag-name {
  font-size: 18px;
  font-weight: 700;
}

.tag-description p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 15px;
}

.tag-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tag-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.9;
}

.tag-meta .meta-item i {
  width: 16px;
  text-align: center;
}

/* Popular Tags Widget */
.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.popular-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--color-light-gray);
}

.popular-tags .tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.popular-tags .tag .count {
  background: var(--color-light-gray);
  color: var(--color-gray-700);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
}

.popular-tags .tag:hover .count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

/* ===== SEARCH PAGE STYLES ===== */

/* Search Hero Section */
.search-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.search-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.search-hero-content {
  position: relative;
  z-index: 2;
}

.search-header {
  margin-bottom: 40px;
}

.search-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.search-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.search-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Search Form */
.search-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.search-form {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.search-input-group {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

.search-btn {
  padding: 15px 30px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-btn:hover {
  background: var(--color-primary-dark);
}

.search-filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 150px;
}

.filter-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-700);
  text-transform: uppercase;
}

.filter-select {
  padding: 8px 12px;
  border: 1px solid var(--color-gray-300);
  border-radius: 5px;
  background: var(--color-white);
  font-size: 14px;
  color: var(--color-dark);
}

/* Search Results Section */
.search-results-section {
  padding: 60px 0;
}

.search-info {
  margin-bottom: 30px;
  padding: 20px;
  background: var(--color-gray-100);
  border-radius: 10px;
  border-left: 4px solid var(--color-primary);
}

.search-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.results-count {
  font-size: 16px;
  color: var(--color-dark);
}

.search-time {
  font-size: 14px;
  color: var(--color-gray-700);
}

.search-suggestions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.suggestions-label {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 14px;
}

.suggestions-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.suggestion-tag {
  padding: 4px 12px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 15px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.suggestion-tag:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Search Results */
.search-results {
  margin-bottom: 50px;
}

.search-result-item {
  background: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  transition: all 0.3s ease;
}

.search-result-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.result-type {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
}

.result-type i {
  font-size: 14px;
}

.result-content {
  display: flex;
  gap: 20px;
}

.result-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-info {
  flex: 1;
}

.result-title {
  margin-bottom: 10px;
}

.result-title a {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.result-title a:hover {
  color: var(--color-primary);
}

.result-excerpt {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
}

.result-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.result-meta span {
  font-size: 12px;
  color: var(--color-gray-700);
  padding: 4px 8px;
  background: var(--color-gray-100);
  border-radius: 4px;
}

.result-category {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
}

.result-price {
  background: var(--color-success) !important;
  color: var(--color-white) !important;
}

.result-rating {
  background: var(--color-warning) !important;
  color: var(--color-dark) !important;
}

.result-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.result-tags .tag {
  padding: 3px 8px;
  background: var(--color-light-gray);
  color: var(--color-gray-700);
  border-radius: 12px;
  font-size: 11px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.result-tags .tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Search Pagination */
.search-pagination {
  margin-top: 50px;
}

/* Search Sidebar */
.search-sidebar {
  padding-left: 30px;
}

/* Search Tips Widget */
.search-tips-widget {
  background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
  color: var(--color-white);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.search-tips-widget .widget-title {
  color: var(--color-white);
  margin-bottom: 20px;
}

.search-tips {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tip-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tip-item i {
  font-size: 16px;
  margin-top: 2px;
  opacity: 0.9;
}

.tip-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.tip-content p {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
}

/* Popular Searches Widget */
.popular-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-tag {
  padding: 6px 12px;
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--color-light-gray);
}

.search-tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Recent Searches Widget */
.recent-searches {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recent-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--color-gray-100);
  border-radius: 8px;
  color: var(--color-gray-700);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.recent-search:hover {
  background: var(--color-light-gray);
  color: var(--color-dark);
}

.recent-search i {
  font-size: 12px;
  color: var(--color-primary);
}

/* ===== RESPONSIVE DESIGN FOR TAG & SEARCH ===== */

@media (max-width: 768px) {

  .tag-hero-content h1,
  .search-hero-content h1 {
    font-size: 36px;
  }

  .tag-stats,
  .search-stats {
    flex-direction: column;
    gap: 20px;
  }

  .tag-filter-content {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-options {
    justify-content: space-between;
  }

  .search-form {
    padding: 20px;
  }

  .search-filters {
    flex-direction: column;
    gap: 15px;
  }

  .filter-group {
    min-width: auto;
  }

  .result-content {
    flex-direction: column;
    gap: 15px;
  }

  .result-image {
    width: 100%;
    height: 200px;
  }

  .search-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {

  .tag-hero-content h1,
  .search-hero-content h1 {
    font-size: 28px;
  }

  .tag-posts {
    grid-template-columns: 1fr;
  }

  .search-input-group {
    flex-direction: column;
  }

  .search-btn {
    justify-content: center;
  }
}

/* --- Error & Maintenance Pages --- */

/* Maintenance Hero Section */
.maintenance-hero-section {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: var(--color-white);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.maintenance-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.05"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.maintenance-content {
  position: relative;
  z-index: 2;
}

.maintenance-icon {
  font-size: 80px;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: spin 3s linear infinite;
}

.maintenance-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.maintenance-message {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.maintenance-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.info-item i {
  font-size: 24px;
  opacity: 0.8;
}

.info-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-content p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

.maintenance-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.maintenance-progress {
  max-width: 400px;
  margin: 0 auto;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.progress-percentage {
  font-weight: 600;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Maintenance Features Section */
.maintenance-features-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.maintenance-features h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.feature-item p {
  color: var(--color-gray-700);
  line-height: 1.6;
}

/* Maintenance Contact Section */
.maintenance-contact-section {
  padding: 80px 0;
}

.maintenance-contact h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
}

.maintenance-contact p {
  text-align: center;
  font-size: 18px;
  color: var(--color-gray-700);
  margin-bottom: 50px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 32px;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border-radius: 50%;
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.contact-info p {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.contact-info span {
  font-size: 14px;
  color: var(--color-gray-700);
}

/* Maintenance Footer */
.maintenance-footer {
  background: #343a40;
  color: var(--color-white);
  padding: 40px 0;
}

.maintenance-footer-content {
  text-align: center;
}

.footer-logo h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #adb5bd;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #495057;
  color: var(--color-white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-copyright p {
  color: var(--color-gray-500);
  font-size: 14px;
  margin: 0;
}

/* ===== ERROR PAGE STYLES ===== */

/* Error Hero Section */
.error-hero-section {
  background: linear-gradient(135deg, #DC3545 0%, #c82333 100%);
  color: var(--color-white);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.error-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.error-content {
  position: relative;
  z-index: 2;
}

.error-icon {
  font-size: 80px;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: pulse 2s infinite;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.error-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.error-message {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Error Help Section */
.error-help-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.error-help h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
}

.help-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.help-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.help-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.help-icon {
  font-size: 32px;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border-radius: 50%;
  flex-shrink: 0;
}

.help-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.help-content p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin-bottom: 15px;
}

.help-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.help-link:hover {
  color: var(--color-primary-dark);
}

/* Error Popular Section */
.error-popular-section {
  padding: 80px 0;
}

.error-popular h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
}

.popular-pages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 5px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.page-item:hover {
  transform: translateY(-3px);
}

.page-icon {
  font-size: 32px;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border-radius: 50%;
  flex-shrink: 0;
}

.page-info h3 {
  margin-bottom: 5px;
}

.page-info h3 a {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-info h3 a:hover {
  color: var(--color-primary);
}

.page-info p {
  color: var(--color-gray-700);
  font-size: 14px;
  margin: 0;
}

/* Error Contact Section */
.error-contact-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.error-contact h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
}

.error-contact p {
  text-align: center;
  font-size: 18px;
  color: var(--color-gray-700);
  margin-bottom: 50px;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.contact-info-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.contact-info-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.contact-info-item p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin: 0;
}

.contact-info-item a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-item a:hover {
  color: var(--color-primary-dark);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
}

.contact-form-container {
  background: var(--color-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.contact-form-container p {
  color: var(--color-gray-700);
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-control {
  padding: 12px 15px;
  border: 1px solid var(--color-gray-300);
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  outline: none;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-form .form-check-input {
  margin-top: 5px;
}

.contact-form .form-check-label {
  font-size: 14px;
  line-height: 1.5;
}

.contact-form .form-check-label a {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-form .form-check-label a:hover {
  text-decoration: underline;
}

/* Contact Map Container */
.contact-map-container {
  background: var(--color-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.contact-methods h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.method-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--color-gray-100);
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.method-item:hover {
  background: var(--color-light-gray);
}

.method-icon {
  font-size: 24px;
  color: var(--color-primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
}

.method-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.method-info p {
  font-size: 14px;
  color: var(--color-gray-700);
  margin-bottom: 5px;
}

.method-link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.method-link:hover {
  color: var(--color-primary-dark);
}

/* FAQ Section */
.contact-faq-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.contact-faq h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: var(--color-gray-100);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--color-light-gray);
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--color-dark);
}

.faq-question i {
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 80px 0;
  background: var(--gradient-primary);
  color: var(--color-white);
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN FOR MAINTENANCE, ERROR & CONTACT ===== */

@media (max-width: 768px) {

  .maintenance-content h1,
  .error-content h1,
  .contact-hero-content h1 {
    font-size: 36px;
  }

  .error-code {
    font-size: 80px;
  }

  .maintenance-info {
    flex-direction: column;
    gap: 30px;
  }

  .info-item {
    justify-content: center;
  }

  .maintenance-actions,
  .error-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-container,
  .contact-map-container {
    padding: 20px;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .maintenance-content h1,
  .error-content h1,
  .contact-hero-content h1 {
    font-size: 28px;
  }

  .error-code {
    font-size: 60px;
  }

  .maintenance-icon,
  .error-icon {
    font-size: 60px;
  }

  .features-grid,
  .contact-methods,
  .help-options,
  .popular-pages {
    grid-template-columns: 1fr;
  }
}

/* --- Service Pages --- */

/* Service Hero Section */
.service-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

.service-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
}

.service-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.service-hero-stats .stat-item {
  text-align: center;
}

.service-hero-stats .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-hero-stats .stat-label {
  font-size: 16px;
  opacity: 0.8;
}

/* Service Filter Section */
.service-filter-section {
  padding: 40px 0;
  background: var(--color-gray-100);
  border-bottom: 1px solid var(--color-light-gray);
}

.service-filter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.filter-tabs {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-300);
  color: var(--color-gray-700);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-tabs a {
  text-decoration: none;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.filter-options {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-options label {
  font-weight: 600;
  color: var(--color-dark);
}

.sort-select {
  padding: 8px 15px;
  border: 1px solid var(--color-gray-300);
  border-radius: 5px;
  background: var(--color-white);
  font-size: 14px;
}

.view-options {
  display: flex;
  gap: 5px;
}

.view-btn {
  padding: 8px 12px;
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  color: var(--color-gray-700);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Service Content Section */
.service-content-section {
  padding: 60px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
  position: relative;
  height: 285px;
  min-width: 220px;
  overflow: hidden;
}

.service-image img {
  min-width: 220px;
  min-height: 250px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.badge-popular {
  background: var(--color-success);
  color: var(--color-white);
}

.badge-new {
  background: var(--color-info);
  color: var(--color-white);
}

.badge-luxury {
  background: var(--color-warning);
  color: var(--color-dark);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-actions {
  display: flex;
  gap: 15px;
}

.action-btn {
  width: 45px;
  height: 45px;
  background: var(--color-white);
  border: none;
  border-radius: 50%;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  transform: scale(1.1);
}

.service-content {
  padding: 15px 25px;
}

.service-category {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.service-description {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
}

.service-features {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.feature-tag {
  padding: 4px 10px;
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.service-price {
  margin-bottom: 15px;
}

.price-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
}

.price-unit {
  font-size: 14px;
  color: var(--color-gray-700);
  margin-left: 5px;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: var(--color-warning);
}

.rating-text {
  font-size: 12px;
  color: var(--color-gray-700);
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  margin: 15px 0;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.service-btn:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Service Sidebar */
.service-sidebar {
  padding-left: 30px;
}

.sidebar-widget {
  background: var(--color-white);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
}

/* Booking Widget */
.booking-widget {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.booking-widget .widget-title {
  color: var(--color-white);
  margin-bottom: 20px;
}

.quick-booking-form .form-group {
  margin-bottom: 15px;
}

.quick-booking-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--color-white);
  font-size: 14px;
}

.quick-booking-form .form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 14px;
}

.quick-booking-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.quick-booking-form .form-control:focus {
  outline: none;
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
}

.btn-block {
  width: 100%;
}

/* Support Widget */
.support-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--color-gray-100);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.support-item:hover {
  background: var(--color-light-gray);
}

.support-icon {
  font-size: 24px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--color-primary);
}

.support-icon i {
  color: var(--color-primary);
}

.support-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.support-content p {
  font-size: 14px;
  color: var(--color-gray-700);
  margin-bottom: 5px;
}

.support-content span {
  font-size: 12px;
  color: var(--color-gray-500);
}

/* Popular Services Widget */
.popular-services {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-service {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--color-gray-100);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.popular-service:hover {
  background: var(--color-light-gray);
}

.service-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-info h4 {
  margin-bottom: 5px;
}

.service-info h4 a {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-info h4 a:hover {
  color: var(--color-primary);
}

.service-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-rating i {
  color: var(--color-warning);
  font-size: 12px;
}

.service-rating span {
  font-size: 12px;
  color: var(--color-gray-700);
}

.service-grid.list-view {
  grid-template-columns: 1fr;
}

.service-card.list-view {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: stretch;
}

.service-card.list-view .service-image {
  flex: 0 0 45%;
  height: 100%;
  min-height: 260px;
}

.service-card.list-view .service-content {
  flex: 1;
}

/* Why Choose Widget */
.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--color-gray-100);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.why-item:hover {
  background: var(--color-light-gray);
}

.why-item i {
  color: var(--color-primary);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.why-item span {
  font-size: 14px;
  color: var(--color-dark);
  font-weight: 500;
}

/* Tour Listing */
.tour-filter-section {
  padding: 40px 0;
  background: var(--color-gray-100);
  border-bottom: 1px solid var(--color-light-gray);
}

.tour-filter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.tour-filter-summary h2 {
  font-size: 28px;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.tour-filter-summary p {
  margin: 0;
  color: var(--color-gray-600);
}

.tour-content-section {
  padding: 60px 0;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.tour-grid.list-view {
  grid-template-columns: 1fr;
}

.tour-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tour-card.list-view {
  flex-direction: row;
  gap: 25px;
}

.tour-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.tour-card.list-view .tour-image {
  flex: 0 0 45%;
  height: auto;
  min-height: 260px;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover .tour-overlay {
  opacity: 1;
}

.tour-actions {
  display: flex;
  gap: 10px;
}

.tour-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.tour-content-header {
  margin-bottom: 20px;
}

.tour-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.tour-description {
  margin: 0;
  color: var(--color-gray-700);
  line-height: 1.7;
  font-size: 14px;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex: 1 1 45%;
  min-width: 220px;
}

.meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.meta-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-gray-500);
  letter-spacing: 0.5px;
}

.meta-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.tour-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 15px;
}

.tour-card .price-amount {
  font-size: 24px;
}

.tour-card-footer {
  margin: 15px 0;
}

.tour-sidebar .tour-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.tour-sidebar .tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-grid.list-view .tour-card {
  align-items: stretch;
}

.tour-grid.list-view .tour-content {
  flex: 1;
}

@media (max-width: 1024px) {
  .tour-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .tour-card.list-view {
    flex-direction: column;
  }

  .tour-card.list-view .tour-image {
    flex: unset;
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .tour-filter-summary h2 {
    font-size: 24px;
  }

  .meta-item {
    flex: 1 1 100%;
    min-width: 0;
  }
}

/* ===== SERVICE DETAIL PAGE STYLES ===== */

/* Service Detail Hero Section */
.service-detail-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.service-detail-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.service-detail-hero-content {
  position: relative;
  z-index: 2;
}

.service-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.badge {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-popular {
  background: var(--color-success);
  color: var(--color-white);
}

.badge-new {
  background: var(--color-info);
  color: var(--color-white);
}

.service-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Service Detail Content Section */
.service-detail-content-section {
  padding: 60px 0;
}

/* Service Gallery */
.service-gallery {
  margin-bottom: 50px;
}

.gallery-main {
  margin-bottom: 20px;
  position: relative;
}

.main-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  max-height: 860px;
}

.main-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.gallery-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
}

.thumbnail {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--color-primary);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service Description */
.service-description {
  margin-bottom: 50px;
}

.service-description h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.service-description h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: var(--color-dark);
}

.service-description p {
  color: var(--color-gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-description ul {
  color: var(--color-gray-700);
  line-height: 1.8;
  padding-left: 20px;
}

.service-description li {
  margin-bottom: 8px;
}

.service-description table {
  width: 100% !important;
  border: 1px solid var(--color-gray-300);
  border-collapse: collapse;
  margin-bottom: 20px;
  background-color: var(--color-white);
}

.service-description table th,
.service-description table td {
  border: 1px solid var(--color-gray-300);
  padding: 12px 15px;
  vertical-align: middle;
  color: var(--color-dark);
}

.service-description table thead th {
  background-color: var(--color-gray-100);
  font-weight: 600;
}

.service-description table p {
  margin-bottom: 0;
}

/* Service Features */
.service-features {
  margin-bottom: 20px;
}

.service-features h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 32px;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.feature-content p {
  color: var(--color-gray-700);
  margin: 0;
}

/* Service Reviews */
.service-reviews {
  margin-bottom: 50px;
}

.service-reviews h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-dark);
}

.reviews-summary {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--color-gray-100);
  border-radius: 10px;
}

.rating-overview {
  text-align: center;
  flex-shrink: 0;
}

.rating-score {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.rating-stars {
  color: var(--color-warning);
  font-size: 20px;
  margin-bottom: 10px;
}

.rating-text {
  color: var(--color-gray-700);
  font-size: 14px;
}

.rating-breakdown {
  flex: 1;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.rating-label {
  width: 50px;
  font-size: 14px;
  color: var(--color-gray-700);
}

.rating-progress {
  flex: 1;
  height: 8px;
  background: var(--color-light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-warning);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.rating-count {
  width: 30px;
  text-align: right;
  font-size: 14px;
  color: var(--color-gray-700);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  background: var(--color-white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.review-rating {
  color: var(--color-warning);
  font-size: 14px;
}

.review-date {
  color: var(--color-gray-700);
  font-size: 14px;
}

.review-content p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Service Detail Sidebar */
.service-detail-sidebar {
  padding-left: 30px;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.booking-form .form-group {
  margin-bottom: 20px;
}

.booking-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-dark);
  font-size: 14px;
}

.booking-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-gray-300);
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.booking-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  outline: none;
}

.booking-summary {
  background: var(--color-gray-100);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--color-gray-700);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

/* Service Info Widget */
.service-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-info-list .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--color-gray-100);
  border-radius: 8px;
}

.service-info-list .info-item i {
  color: var(--color-primary);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.service-info-list .info-item span {
  font-size: 14px;
  color: var(--color-dark);
}

/* Related Services */
.related-services {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-service {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--color-gray-100);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.related-service:hover {
  background: var(--color-light-gray);
}

/* ===== RESPONSIVE DESIGN FOR SERVICE PAGES ===== */

@media (max-width: 768px) {

  .service-hero-content h1,
  .service-detail-hero-content h1 {
    font-size: 36px;
  }

  .service-hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .service-filter-content {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-tabs {
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar,
  .service-detail-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }

  .reviews-summary {
    flex-direction: column;
    gap: 20px;
  }

  .gallery-thumbnails {
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .service-hero-content h1,
  .service-detail-hero-content h1 {
    font-size: 28px;
  }

  .service-meta {
    flex-direction: column;
    gap: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-thumbnails {
    flex-wrap: wrap;
  }

  .thumbnail {
    width: 80px;
    height: 60px;
  }
}

/* ========================================
   HELPERS
   ======================================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in from left */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Fade in from right */
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in animation */
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animation for multiple items */
.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Delay classes for stagger effect */
.stagger-delay-1 {
  transition-delay: 0.1s;
}

.stagger-delay-2 {
  transition-delay: 0.2s;
}

.stagger-delay-3 {
  transition-delay: 0.3s;
}

.stagger-delay-4 {
  transition-delay: 0.4s;
}

.stagger-delay-5 {
  transition-delay: 0.5s;
}

.stagger-delay-6 {
  transition-delay: 0.6s;
}

/* Loading spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulse animation for buttons */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Bounce animation for icons */
.bounce-animation {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Image loading effects */
img {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

img.loaded {
  opacity: 1;
}

/* Skeleton loading for images */
.image-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced button hover effects */
.btn-banner:hover,
.service-card-cta:hover,
.btn-consultation:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card hover effects */
.service-card:hover,
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Icon hover effects */
.service-icon:hover,
.item-icon:hover,
.benefit-icon:hover {
  transform: scale(1.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth transitions for all interactive elements */
* {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Disable transitions during animations to prevent conflicts */
.animate-on-scroll,
.fade-in-left,
.fade-in-right,
.scale-in,
.stagger-item {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Font Awesome Icons - Common ones used in the project */
.fa-bus:before {
  content: "\f207";
}

.fa-phone:before {
  content: "\f095";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-headset:before {
  content: "\f590";
}

.fa-star:before {
  content: "\f005";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-instagram:before {
  content: "\f16d";
}


body {
  color: var(--color-dark);
}

.primary-color {
  color: var(--color-primary);
}

.secondary-color {
  color: var(--color-secondary);
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

/* Language Switcher */
.lang-icon {
  width: 20px;
  height: 15px;
  margin-right: 5px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-700);
  transition: var(--transition-base);
}

.lang-text:hover,
.lang-text.active {
  color: var(--color-primary);
}

/* Top Link */
.top-link {
  background: var(--color-gray-100);
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  position: relative;
}

.top-link a {
  text-decoration: none;
  color: var(--color-dark);
  margin-right: 15px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-link a:hover {
  color: var(--color-primary);
}

.lang-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
  border-radius: 2px;
}

.lang-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-link i {
  margin-right: 5px;
  color: var(--color-primary);
}

/* Navigation */
.navbar {
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  padding: 15px 0;
  transition: all 0.3s ease;
  position: relative;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.navbar .container {
  position: relative;
  z-index: 2;
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.95) 0%, rgba(255, 149, 0, 0.95) 100%);
  backdrop-filter: blur(15px);
  box-shadow: 0 6px 25px rgba(220, 53, 69, 0.4);
  padding: 10px 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 20px;
  color: var(--color-white) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--color-accent) !important;
  transform: scale(1.05);
}

.nav-link {
  font-weight: 700;
  margin-left: 25px;
  color: var(--color-white) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
}

.nav-link:hover {
  color: var(--color-accent) !important;
  transform: translateY(-2px);
}


/* Dropdown Toggle */
.dropdown-toggle::after {
  border-top: 0.3em solid var(--color-white);
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(15px);
  padding: 10px 0;
  margin-top: 5px;
  min-width: 200px;
  animation: dropdownFadeIn 0.3s ease;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Ensure dropdown stays open when hovering over menu items */
.dropdown-menu:hover {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Keep dropdown open when hovering over the entire dropdown area */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.1s;
}


/* Dropdown positioning */
.dropdown {
  position: relative;
}

/* Create an invisible bridge to prevent dropdown from closing */
.dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
  z-index: 999;
}


@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  color: var(--color-dark) !important;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 12px 20px;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-item:hover {
  background: var(--gradient-primary);
  color: var(--color-white) !important;
}

.dropdown-item::before {
  content: 'â†’';
  position: absolute;
  left: 5px;
  color: var(--color-white);
  opacity: 0;
  font-weight: bold;
}

.dropdown-item:hover::before {
  opacity: 1;
  left: 0px;
}

/* Navbar Responsive */
@media (max-width: 992px) {
  .navbar {
    padding: 12px 0;
  }

  .nav-link {
    margin-left: 15px;
    font-size: 13px;
  }

  .navbar-brand {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
  }

  .nav-link {
    margin-left: 10px;
    font-size: 12px;
  }

  .navbar-brand {
    font-size: 16px;
  }

  .dropdown-menu {
    min-width: 180px;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 0;
    border-radius: 5px;
  }

  .dropdown-item {
    font-size: 12px;
    padding: 10px 15px;
  }

  /* Show dropdown on mobile when parent is active */
  .dropdown.show .dropdown-menu {
    display: block;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 8px 0;
  }

  .nav-link {
    margin-left: 8px;
    font-size: 11px;
  }

  .navbar-brand {
    font-size: 14px;
  }

  .dropdown-menu {
    min-width: 160px;
  }

  .dropdown-item {
    font-size: 11px;
    padding: 8px 12px;
  }
}

/* --- Homepage Sections --- */
/* Slider Banner */
.slider-banner {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.banner-swiper {
  width: 100%;
  height: 100%;
}

.slider-banner .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slider-banner .slide-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.slider-banner .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.slider-banner .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  z-index: 2;
  text-align: center;
}

.swiper-slide .container {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  text-align: center;
}

/* Swiper Navigation Buttons */
.banner-next,
.banner-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.banner-next::after,
.banner-prev::after {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
}

.banner-next::after {
  content: '\f054';
  /* fa-chevron-right */
}

.banner-prev::after {
  content: '\f053';
  /* fa-chevron-left */
}

.banner-next:hover,
.banner-prev:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.banner-prev {
  left: 20px;
}

.banner-next {
  right: 20px;
}

/* Swiper Pagination */
.banner-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: auto;
  margin: 0 auto;
  text-align: center;
  min-width: 60px;
  max-width: 200px;
  flex-wrap: nowrap;
  overflow: visible;
}

.banner-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin: 0;
  transition: all 0.3s ease;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  box-sizing: border-box;
}

.banner-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.banner-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  transform: scale(1.3);
  box-shadow: 0 3px 10px rgba(220, 53, 69, 0.5);
  border-color: var(--color-secondary);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}


@keyframes autoplayPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pause autoplay indicator */
.banner-swiper.paused::before {
  background: var(--color-primary);
  animation: none;
  content: 'â¸';
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

/* Go to Top Button */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.go-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
  background: linear-gradient(135deg, #FF9500 0%, #DC3545 100%);
}

.go-to-top.show {
  display: flex;
  animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Fixed Support Icons */
.fixed-support {
  position: fixed;
  right: 35px;
  bottom: 40px;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.support-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-white);
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.support-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  opacity: 0.9;
  z-index: -1;
  border-radius: 50%;
}

.support-btn:hover {
  transform: translateX(-10px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.support-btn:hover .support-text {
  opacity: 1;
  transform: translateX(0);
}

.support-text {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-white);
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.support-text::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid rgba(0, 0, 0, 0.8);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* Hotline Button */
.hotline-btn {
  background: linear-gradient(135deg, #DC3545 0%, #FF6B6B 100%);
  animation: hotlinePulse 2s infinite;
}

@keyframes hotlinePulse {
  0% {
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
  }

  50% {
    box-shadow: 0 4px 25px rgba(220, 53, 69, 0.8);
  }

  100% {
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
  }
}

/* Facebook Button */
.facebook-btn {
  background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
}

.facebook-btn:hover {
  background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
  transform: translateX(-10px) scale(1.1);
}

.facebook-btn:hover i {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 2px 4px rgba(24, 119, 242, 0.3));
}

/* Zalo Button */
.zalo-btn {
  background: linear-gradient(135deg, #0068FF 0%, #00A8FF 100%);
}

.zalo-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: all 0.3s ease;
}

.zalo-btn:hover .zalo-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 2px 4px rgba(0, 104, 255, 0.3));
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Slider Responsive */
@media (max-width: 768px) {
  .slider-banner {
    height: auto;
  }

  .slider-banner h1 {
    font-size: 36px;
  }

  .slider-banner p {
    font-size: 16px;
  }

  .banner-next,
  .banner-prev {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .banner-next::after,
  .banner-prev::after {
    font-size: 10px;
  }

  .banner-prev {
    left: 15px;
  }

  .banner-next {
    right: 15px;
  }

  .banner-pagination {
    bottom: 25px;
    gap: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    margin: 0 auto;
  }

  .banner-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-width: 1px;
    border-radius: 50%;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  /* Go to Top Button Tablet */
  .go-to-top {
    width: 48px;
    height: 48px;
    bottom: 25px;
    right: 25px;
    font-size: 17px;
  }

  /* Fixed Support Icons Tablet */
  .fixed-support {
    right: 25px;
    gap: 13px;
  }

  .support-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .support-icon {
    width: 20px;
    height: 20px;
  }

  .support-text {
    font-size: 13px;
    padding: 7px 13px;
    right: 65px;
  }

  .zalo-icon {
    width: 16px;
    height: 16px;
  }

  /* Top Link Tablet */
  .top-link {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .top-link .row {
    justify-content: center;
    text-align: center;
  }

  .top-link .col-md-6 {
    text-align: center !important;
    margin-bottom: 5px;
  }

  .top-link .col-md-6:last-child {
    margin-bottom: 0;
  }

  .top-link a {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    justify-content: center;
    margin: 0 8px;
  }

  .top-link a:hover {
    color: #FFD700;
  }

  .top-link i {
    color: #FFD700;
  }

  .lang-text {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  /* Hide language text on tablet, show only icons */
  .top-link .col-md-6:first-child .lang-text {
    display: none;
  }

  .lang-icon {
    width: 18px;
    height: 18px;
  }

  .top-link .col-md-6:first-child a {
    margin: 0 8px;
  }

  /* Hide address on tablet */
  .top-link .col-md-6:last-child a:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .slider-banner h1 {
    font-size: 28px;
  }

  .slider-banner p {
    font-size: 14px;
  }

  .banner-next,
  .banner-prev {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .banner-next::after,
  .banner-prev::after {
    font-size: 8px;
  }

  .banner-prev {
    left: 10px;
  }

  .banner-next {
    right: 10px;
  }

  .banner-pagination {
    bottom: 20px;
    gap: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    margin: 0 auto;
  }

  .banner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-width: 1px;
    border-radius: 50%;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  /* Go to Top Button Mobile */
  .go-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
  }

  /* Fixed Support Icons Mobile */
  .fixed-support {
    right: 25px;
    gap: 12px;
  }

  .support-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .support-icon {
    width: 18px;
    height: 18px;
  }

  .support-text {
    font-size: 12px;
    padding: 6px 12px;
    right: 60px;
  }

  .zalo-icon {
    width: 14px;
    height: 14px;
  }

  /* Top Link Mobile */
  .top-link {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .top-link .row {
    justify-content: center;
    text-align: center;
  }

  .top-link .col-md-6 {
    text-align: center !important;
    margin-bottom: 5px;
  }

  .top-link .col-md-6:last-child {
    margin-bottom: 0;
  }

  .top-link a {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    justify-content: center;
    margin: 0 8px;
  }

  .top-link a:hover {
    color: #FFD700;
  }

  .top-link i {
    color: #FFD700;
  }

  .lang-text {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  /* Hide language text on mobile, show only icons */
  .top-link .col-md-6:first-child .lang-text {
    display: none;
  }

  .lang-icon {
    width: 20px;
    height: 20px;
  }

  .top-link .col-md-6:first-child a {
    margin: 0 8px;
  }

  /* Hide address on mobile */
  .top-link .col-md-6:last-child a:last-child {
    display: none;
  }
}

.slider-banner h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-banner p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn-banner {
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
  padding: 12px 35px;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

/* Danh sÃ¡ch dá»‹ch vá»¥ */
.service-section {
  padding: 60px 0;
  background: var(--color-gray-100);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  margin: 15px auto 0;
}

.service-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(220, 53, 69, 0.2);
}

.service-card-image {
  position: relative;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 3px;
  margin: 15px 0;
  padding: 0;
}

.price-prefix {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-700);
}

.price-amount {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.price-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-700);
}

.service-card-body {
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 200px);
}

.service-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 10px 0;
}

.service-card-cta:hover {
  color: var(--color-secondary);
}

.service-card-cta i {
  transition: transform 0.3s ease;
}

.service-card-cta:hover i {
  transform: translateX(3px);
}

/* Service Cards Responsive */
@media (max-width: 1200px) {
  .service-card-body {
    padding: 20px 15px;
  }

  .service-card-title {
    font-size: 16px;
  }

  .service-card-price {
    margin: 12px 0;
  }

  .price-prefix {
    font-size: 13px;
  }

  .price-amount {
    font-size: 22px;
  }

  .price-unit {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .service-card {
    margin-bottom: 25px;
  }

  .service-card img {
    height: 180px;
  }

  .service-card-body {
    height: calc(100% - 180px);
    padding: 20px 15px;
  }

  .service-card-title {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
  }

  .service-card img {
    height: 160px;
  }

  .service-card-body {
    height: calc(100% - 160px);
    padding: 15px;
  }

  .service-card-title {
    font-size: 15px;
  }

  .service-card p {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .service-card-cta {
    font-size: 13px;
  }

  .service-card-price {
    margin: 10px 0;
  }

  .price-prefix {
    font-size: 12px;
  }

  .price-amount {
    font-size: 20px;
  }

  .price-unit {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .service-card img {
    height: 140px;
  }

  .service-card-body {
    height: calc(100% - 140px);
    padding: 12px;
  }

  .service-card-title {
    font-size: 14px;
  }

  .service-card p {
    font-size: 11px;
  }

  .service-card-cta {
    font-size: 12px;
  }
}

/* Giá»›i thiá»‡u */
/* Intro Section - Split Screen Layout */
.intro-section {
  padding: 0;
  min-height: 100vh;
  display: flex;
}

.intro-layout {
  display: flex;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
}

.intro-image-side {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.steering-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8);
}

.intro-content-side {
  flex: 1;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  padding: 60px 40px;
  position: relative;
}

.content-wrapper {
  max-width: 100%;
  color: var(--color-white);
}

.intro-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--color-white);
  line-height: 1.2;
}

.title-line {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin-bottom: 30px;
}

.intro-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.benefits-list {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.benefit-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefit-icon i {
  font-size: 12px;
  color: var(--color-white);
}

.benefit-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  color: #e0e0e0;
}

.benefit-text strong {
  color: var(--color-white);
  font-weight: 600;
}

.customer-quote {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin: 40px 0;
  position: relative;
  border-left: 4px solid var(--color-white);
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(10px);
}

.quote-mark {
  position: absolute;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: bold;
  line-height: 1;
}

.quote-mark.top {
  top: 10px;
  left: 20px;
}

.quote-mark.bottom {
  bottom: 10px;
  right: 20px;
  transform: rotate(180deg);
}

.quote-content {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.conclusion-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: var(--shadow-md);
}

.service-icon i {
  font-size: 18px;
  color: var(--color-primary);
}

.service-item span {
  font-size: 13px;
  color: var(--color-white);
  font-weight: 500;
  line-height: 1.3;
}

/* Intro Section Responsive */
@media (max-width: 1024px) {
  .intro-content-side {
    padding: 40px 30px;
  }

  .intro-title {
    font-size: 32px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .intro-layout {
    flex-direction: column;
  }

  .intro-image-side {
    height: 50vh;
    min-height: 300px;
  }

  .intro-content-side {
    padding: 40px 20px;
    min-height: auto;
  }

  .intro-title {
    font-size: 28px;
  }

  .benefit-item {
    margin-bottom: 15px;
  }

  .benefit-text {
    font-size: 14px;
  }

  .customer-quote {
    padding: 20px;
    margin: 30px 0;
  }

  .quote-mark {
    font-size: 40px;
  }

  .quote-content {
    font-size: 14px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-item {
    padding: 15px 8px;
  }

  .service-icon {
    width: 35px;
    height: 35px;
  }

  .service-icon i {
    font-size: 16px;
  }

  .service-item span {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .intro-content-side {
    padding: 30px 15px;
  }

  .intro-title {
    font-size: 24px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .benefit-item {
    gap: 10px;
  }

  .benefit-icon {
    width: 18px;
    height: 18px;
  }

  .benefit-icon i {
    font-size: 10px;
  }
}

/* Táº¡i sao chá»n chÃºng tÃ´i */
/* Why Us Section - New Layout */
.why-us-section {
  padding: 100px 0;
  background: var(--color-gray-100);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23e9ecef"><path d="M0,200 L1000,0 L1000,200 Z"/></svg>') no-repeat center bottom;
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.why-us-layout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.why-us-left,
.why-us-right {
  flex: 1;
  max-width: 45%;
}

.why-us-center {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.car-container {
  position: relative;
  min-width: 350px;
  max-width: 480px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
  transform: rotate(90deg);
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  background: var(--color-white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.why-us-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
}

.left-item {
  flex-direction: row;
  text-align: right;
}

.right-item {
  flex-direction: row;
  text-align: left;
}

.item-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px 0 0;
}

.left-item .item-icon {
  margin: 0 0 0 15px;
  order: 2;
}

.right-item .item-icon {
  margin: 0 15px 0 0;
  order: 1;
}

.item-icon i {
  font-size: 24px;
  color: var(--color-white);
}

.item-content {
  flex: 1;
}

.left-item .item-content {
  order: 1;
}

.right-item .item-content {
  order: 2;
}

.item-content h4 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.3;
}

.item-content p {
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.connecting-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}

.left-item .connecting-dot {
  right: -4px;
}

.right-item .connecting-dot {
  left: -4px;
}

/* Connecting lines */
.why-us-item::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 60px;
  background: var(--color-primary);
  z-index: 3;
}

.left-item::after {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
}

.right-item::after {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
}

/* Why Us Responsive */
@media (max-width: 1200px) {
  .why-us-layout {
    max-width: 100%;
    padding: 0 20px;
  }

  .why-us-center {
    flex: 0 0 200px;
  }

  .car-container {
    width: 180px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .why-us-layout {
    flex-direction: column;
    gap: 40px;
  }

  .why-us-left,
  .why-us-right {
    max-width: 100%;
    width: 100%;
  }

  .why-us-center {
    order: -1;
    flex: none;
    margin: 20px 0;
  }

  .car-container {
    width: 150px;
    height: auto;
  }

  .why-us-item {
    margin-bottom: 30px;
  }

  .left-item,
  .right-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
  }

  .left-item .item-icon {
    order: 1;
  }

  .left-item .item-content {
    order: 2;
  }

  .left-item .connecting-dot {
    order: 999;
    display: none;
  }

  .item-icon {
    margin: 0 0 20px 0;
    align-self: center;
    order: 1;
    flex-shrink: 0;
  }

  .item-content {
    order: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .item-content h4 {
    text-align: center;
    margin-bottom: 10px;
    order: 1;
  }

  .item-content p {
    text-align: center;
    order: 2;
  }

  .connecting-dot {
    display: none;
    order: 999;
  }

  .why-us-item::after {
    display: none;
  }

  .item-content h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .item-content p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .why-us-item {
    padding: 15px;
    margin-bottom: 20px;
  }

  .left-item,
  .right-item {
    align-items: center;
    text-align: center;
    justify-content: flex-start;
  }

  .left-item .item-icon {
    order: 1;
  }

  .left-item .item-content {
    order: 2;
  }

  .left-item .connecting-dot {
    order: 999;
    display: none;
  }

  .item-icon {
    width: 45px;
    height: 45px;
    margin: 0 0 15px 0;
    order: 1;
    flex-shrink: 0;
  }

  .item-icon i {
    font-size: 20px;
  }

  .item-content {
    order: 2;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .item-content h4 {
    text-align: center;
    order: 1;
  }

  .item-content p {
    text-align: center;
    order: 2;
  }

  .connecting-dot {
    display: none;
    order: 999;
  }

  .item-content h4 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .item-content p {
    font-size: 13px;
    line-height: 1.4;
  }
}

.why-us-item p {
  color: var(--color-gray-700);
  font-size: 14px;
}

/* Banner tÆ° váº¥n */
.consultation-banner {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 60px 0;
  text-align: center;
}

.consultation-banner h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}

.consultation-banner p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-consultation {
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 5px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-consultation:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

.consultation-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.phone-btn {
  background: var(--gradient-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.phone-btn:hover {
  background: linear-gradient(135deg, #c82333 0%, #e6850e 100%);
  color: var(--color-white);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(220, 53, 69, 0.4);
}

.phone-btn i {
  font-size: 24px;
}

.zalo-btn {
  background: linear-gradient(135deg, #0068FF 0%, #00A8FF 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 104, 255, 0.3);
}

.zalo-btn:hover {
  background: linear-gradient(135deg, #0056CC 0%, #0088DD 100%);
  color: var(--color-white);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 104, 255, 0.4);
}

.zalo-btn i {
  font-size: 24px;
}

.consultation-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* Consultation Buttons Responsive */
@media (max-width: 768px) {
  .consultation-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .phone-btn,
  .zalo-btn {
    width: 100%;
    max-width: 350px;
    justify-content: center;
    font-size: 16px;
  }

  .phone-btn i,
  .zalo-btn i {
    font-size: 20px;
  }

  .consultation-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {

  .phone-btn,
  .zalo-btn {
    font-size: 15px;
  }

  .phone-btn i,
  .zalo-btn i {
    font-size: 18px;
  }

  .consultation-icon {
    width: 18px;
    height: 18px;
  }
}

/* KhÃ¡ch hÃ ng */
/* Testimonial Section with Background Image */
.testimonial-section {
  padding: 100px 0;
  background: var(--gradient-dark-overlay),
    url('../images/testimonial-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.testimonial-section .section-title {
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 60px;
}

.testimonial-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Testimonial Slider */
/* Testimonial Slider - Swiper */
.testimonial-swiper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px 60px;
  overflow: visible;
}

.testimonial-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}


/* Testimonial Pagination - Updated */
.testimonial-pagination {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.6) !important;
  opacity: 1 !important;
  margin: 0 4px !important;
  transition: all 0.3s ease !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}


.testimonial-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
  transform: scale(1.3) !important;
  box-shadow: 0 3px 10px rgba(220, 53, 69, 0.5) !important;
  border-color: #FF9500 !important;
  border-radius: 50% !important;
}

.testimonial-slide.prev {
  display: block;
  opacity: 0.3;
  transform: translateX(-50px);
}

.testimonial-slide.next {
  display: block;
  opacity: 0.3;
  transform: translateX(50px);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.testimonial-avatar {
  margin-bottom: 20px;
}

.avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.avatar-img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.stars {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 18px;
}

.stars i {
  margin: 0 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.stars i:hover {
  transform: scale(1.2);
  color: #FFA500;
}

.testimonial-card p {
  color: #555;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
}

.testimonial-card p::before {
  content: '"';
  font-size: 60px;
  color: #FFD700;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
  opacity: 0.3;
}

.testimonial-card p::after {
  content: '"';
  font-size: 60px;
  color: #FFD700;
  position: absolute;
  bottom: -40px;
  right: -10px;
  font-family: serif;
  opacity: 0.3;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 16px;
  margin-top: 10px;
}

/* Testimonial Navigation - Updated */
.testimonial-next,
.testimonial-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(220, 53, 69, 0.2);
}

/* Remove any pseudo-elements from testimonial navigation buttons */
.testimonial-next::after,
.testimonial-prev::after,
.testimonial-next::before,
.testimonial-prev::before {
  display: none !important;
  content: none !important;
}

/* Ensure Font Awesome icons are properly displayed */
.testimonial-next i,
.testimonial-prev i {
  font-size: 18px;
  color: inherit;
  display: inline-block;
  line-height: 1;
}

/* Override Swiper default button styles */
.testimonial-next.swiper-button-next,
.testimonial-prev.swiper-button-prev {
  border: 2px solid rgba(220, 53, 69, 0.2) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  margin-top: 0 !important;
}

.testimonial-next.swiper-button-next::after,
.testimonial-prev.swiper-button-prev::after {
  display: none !important;
  content: none !important;
}

.testimonial-next.swiper-button-next::before,
.testimonial-prev.swiper-button-prev::before {
  display: none !important;
  content: none !important;
}

.testimonial-next:hover,
.testimonial-prev:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.testimonial-prev {
  left: -35px;
}

.testimonial-next {
  right: -35px;
}


/* Testimonial Responsive */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .testimonial-slider-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .testimonial-next,
  .testimonial-prev {
    width: 40px;
    height: 40px;
  }

  .testimonial-next i,
  .testimonial-prev i {
    font-size: 14px;
  }

  /* Ensure no pseudo-elements on mobile */
  .testimonial-next::after,
  .testimonial-prev::after,
  .testimonial-next::before,
  .testimonial-prev::before {
    display: none !important;
    content: none !important;
  }

  .testimonial-prev {
    left: -15px;
  }

  .testimonial-next {
    right: -15px;
  }

  .testimonial-card {
    padding: 30px 20px;
    margin-bottom: 25px;
  }

  .avatar-img {
    width: 70px;
    height: 70px;
  }

  .stars {
    font-size: 16px;
  }

  .testimonial-card p {
    font-size: 15px;
  }

  .testimonial-card p::before,
  .testimonial-card p::after {
    font-size: 40px;
  }

  .testimonial-card p::before {
    top: -15px;
    left: -5px;
  }

  .testimonial-card p::after {
    bottom: -30px;
    right: -5px;
  }

  .testimonial-pagination {
    margin-top: 30px;
  }

  .testimonial-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-slider-container {
    padding: 0 15px;
  }

  .testimonial-nav {
    width: 35px;
    height: 35px;
    display: none;
    /* Hide arrows on very small screens */
  }

  .testimonial-card {
    padding: 25px 15px;
  }

  .avatar-img {
    width: 60px;
    height: 60px;
  }

  .stars {
    font-size: 14px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .testimonial-pagination {
    margin-top: 25px;
  }

  .testimonial-dot {
    width: 8px;
    height: 8px;
  }
}

/* BÃ i viáº¿t */
.post-section {
  padding: 80px 0;
}

.post-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.post-card-image {
  position: relative;
  overflow: hidden;
}

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover img {
  transform: scale(1.05);
}

.post-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.post-card-body {
  padding: 25px;
}

.post-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.post-card-date,
.post-card-author {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-gray-700);
}

.post-card-date i,
.post-card-author i {
  color: var(--color-primary);
  font-size: 12px;
}

.post-card-title {
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.post-card:hover .post-card-title {
  color: var(--color-primary);
}

.post-card p {
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.post-card-cta:hover {
  color: var(--color-secondary);
  border-bottom-color: #FF9500;
  transform: translateX(5px);
}

.post-card-cta i {
  transition: transform 0.3s ease;
}

.post-card-cta:hover i {
  transform: translateX(3px);
}

/* Post Cards Responsive */
@media (max-width: 768px) {
  .post-card-body {
    padding: 20px;
  }

  .post-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .post-card-title {
    font-size: 16px;
  }

  .post-card-category {
    font-size: 11px;
    padding: 5px 10px;
  }

  .post-card-date,
  .post-card-author {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .post-card-body {
    padding: 15px;
  }

  .post-card-title {
    font-size: 15px;
  }

  .post-card p {
    font-size: 13px;
  }

  .post-card-cta {
    font-size: 13px;
  }

  .post-card-category {
    top: 10px;
    left: 10px;
    font-size: 10px;
    padding: 4px 8px;
  }
}


/* Footer */
.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../images/footer-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
  padding: 80px 0 30px;
  position: relative;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  position: relative;
  padding-left: 20px;
}

.footer h5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

.footer h5::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid #FF9500;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

.footer a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
  padding: 5px 0;
  font-weight: 500;
}

.footer a:hover {
  color: var(--color-primary);
  transform: translateX(5px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.footer a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.footer a:hover::before {
  width: 10px;
}

.footer a::after {
  content: 'â†’';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  opacity: 0;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 12px;
}

.footer a:hover::after {
  opacity: 1;
  right: -15px;
}

/* Footer Links List Styling */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.footer ul li::before {
  content: 'â€¢';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer ul li:hover::before {
  color: var(--color-secondary);
  transform: translateY(-50%) scale(1.2);
}

.footer ul li a {
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.footer ul li:hover a {
  color: var(--color-secondary);
  transform: translateX(8px);
}

.footer-contact {
  margin-bottom: 15px;
  color: var(--color-gray-300);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-contact i {
  color: var(--color-primary);
  margin-right: 10px;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: var(--color-gray-300);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .footer-bottom {
    font-size: 12px;
  }
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-company-info {
  font-size: 12px;
  color: var(--color-gray-300);
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  color: var(--color-gray-500);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.4s ease;
  z-index: -1;
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--color-white);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
  border-color: rgba(255, 149, 0, 0.5);
}

.social-links a:hover::before {
  left: 0;
}

.social-links a i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-links a:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 20px;
    background-attachment: scroll;
  }

  .footer h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-contact {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    margin-right: 8px;
  }

  .social-links a:hover {
    transform: translateY(-2px) scale(1.05);
  }

  .footer h5 {
    font-size: 14px;
    padding-left: 18px;
    letter-spacing: 0.8px;
  }

  .footer h5::before {
    width: 3px;
    height: 18px;
  }

  .footer h5::after {
    left: 6px;
    border-left-width: 5px;
    border-top-width: 2.5px;
    border-bottom-width: 2.5px;
  }
}

@media (max-width: 480px) {
  .footer h5 {
    font-size: 13px;
    padding-left: 16px;
    letter-spacing: 0.6px;
  }

  .footer h5::before {
    width: 3px;
    height: 16px;
  }

  .footer h5::after {
    left: 5px;
    border-left-width: 4px;
    border-top-width: 2px;
    border-bottom-width: 2px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    margin-right: 6px;
  }

  .footer ul li a {
    font-size: 13px;
  }

  .footer a::before {
    left: -12px;
    height: 1.5px;
  }

  .footer a:hover::before {
    width: 8px;
  }

  .footer a::after {
    right: -15px;
    font-size: 10px;
  }

  .footer a:hover::after {
    right: -12px;
  }
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.mobile-contact-btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.mobile-contact-btn:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: var(--color-primary);
}

.mobile-contact-btn i {
  font-size: 16px;
}

/* Mobile Menu Content */
.mobile-menu-content {
  flex: 1;
  overflow-y: auto;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-item {
  margin-bottom: 20px;
}

.mobile-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-link:hover {
  color: #FFD700;
  padding-left: 10px;
}

.mobile-menu-link i {
  color: var(--color-white);
  font-size: 16px;
  transition: transform 0.3s ease;
}

.mobile-menu-link:hover i {
  color: var(--color-accent);
}

.mobile-menu-item.active .mobile-menu-link i {
  transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

.mobile-submenu.active {
  max-height: 300px;
  padding: 10px 0;
}

.mobile-submenu li {
  margin: 0;
}

.mobile-submenu a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 12px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 40px;
}

.mobile-submenu a:hover {
  color: var(--color-accent);
  padding-left: 50px;
}

.mobile-submenu a::before {
  content: 'â†’';
  position: absolute;
  left: 20px;
  color: var(--color-white);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.mobile-submenu a:hover::before {
  transform: translateX(5px);
}


/* Hamburger Icon - SVG Enhanced */
/* Mobile Menu Toggle Button */
.navbar-toggler {
  border: none;
  background: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}

.navbar-toggler:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.mobile-menu-toggle {
  border: none;
  background: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}

.mobile-menu-toggle:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.menu-icon {
  width: 30px;
  height: 30px;
  border: none;
}


/* Mobile Menu Responsive */
@media (max-width: 768px) {
  .mobile-menu-container {
    padding: 15px;
  }

  .mobile-menu-header {
    margin-bottom: 30px;
  }

  .mobile-menu-link {
    font-size: 16px;
    padding: 12px 0;
  }

  .mobile-contact-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .mobile-submenu a {
    font-size: 14px;
    padding: 10px 15px;
    padding-left: 35px;
  }

  .mobile-submenu a::before {
    left: 15px;
  }
}

@media (max-width: 480px) {
  .mobile-menu-container {
    padding: 10px;
  }

  .mobile-menu-link {
    font-size: 15px;
  }

  .mobile-contact-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

}

/* --- Blog Pages --- */

/* Blog Hero Section */
.blog-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
}

.blog-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Blog Filter Section */
.blog-filter-section {
  background: var(--color-gray-100);
  padding: 40px 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.blog-filter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-tab {
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  color: var(--color-gray-700);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.search-box {
  display: flex;
  background: var(--color-white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.search-input {
  border: none;
  padding: 12px 20px;
  width: 300px;
  outline: none;
  font-size: 14px;
}

.search-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: var(--color-primary-dark);
}

/* Blog Content Section */
.blog-content-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-post {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.blog-post:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blog-post.featured-post {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 50px;
}

.post-image {
  position: relative;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-post .post-image img {
  height: 100%;
  min-height: 300px;
}

.blog-post:hover .post-image img {
  transform: scale(1.05);
}

.post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.post-category.featured {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: var(--color-dark);
}

.post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-post:hover .post-overlay {
  opacity: 1;
}

.post-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-content {
  padding: 25px;
}

.post-title,
.post-title a {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.featured-post .post-title {
  font-size: 24px;
}

.blog-post:hover .post-title {
  color: var(--color-primary);
}

.post-excerpt {
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tag {
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.post-read-more:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
  transform: translateX(5px);
}

.post-read-more i {
  transition: transform 0.3s ease;
}

.post-read-more:hover i {
  transform: translateX(3px);
}

/* Blog Pagination */
.blog-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-item {
  margin: 0;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--color-white);
  color: var(--color-gray-700);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.page-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.page-item.active .page-link {
  background: var(--color-primary);
  color: var(--color-white);
  border: none !important;
}

.page-item.disabled .page-link {
  background: var(--color-gray-100);
  color: #ccc;
  cursor: not-allowed;
}

/* Blog Sidebar */
.blog-sidebar {
  padding-left: 30px;
}

.sidebar-widget {
  background: var(--color-white);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
}

/* Search Widget */
.search-widget {
  display: flex;
  background: var(--color-gray-100);
  border-radius: 25px;
  overflow: hidden;
}

.search-widget .search-input {
  background: transparent;
  border: none;
  padding: 12px 15px;
  width: 100%;
  outline: none;
  font-size: 14px;
}

.search-widget .search-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-widget .search-btn:hover {
  background: var(--color-primary-dark);
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-gray-700);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.category-list a:hover {
  color: var(--color-primary);
  padding-left: 10px;
}

.count {
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

/* Popular Posts */
.popular-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-post {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.popular-post:last-child {
  border-bottom: none;
}

.post-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.popular-post:hover .post-thumb img {
  transform: scale(1.1);
}

.post-info h4 {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 1.4;
}

.post-info h4 a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-info h4 a:hover {
  color: var(--color-primary);
}

.post-date {
  font-size: 12px;
  color: var(--color-white);
}

/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud .tag {
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--color-light-gray);
}

.tag-cloud .tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Newsletter Widget */
.newsletter-widget {
  background: var(--gradient-primary);
}

.newsletter-widget .widget-title {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.newsletter-widget .widget-title::after {
  background: var(--color-white);
}

.newsletter-widget p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  background: var(--color-white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.newsletter-input {
  border: none;
  padding: 12px 20px;
  width: 100%;
  color: var(--color-dark);
  outline: none;
  font-size: 14px;
  background: var(--color-white);
}

.newsletter-input::placeholder {
  color: var(--color-gray-500);
}

.newsletter-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 25px 25px 0;
}

.newsletter-btn:hover {
  background: var(--color-primary-dark);
}

.newsletter-btn i {
  font-size: 16px;
}

/* Category Hero Section */
.category-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.category-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-nav {
  margin-bottom: 30px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}


.breadcrumb-item a:hover {
  color: var(--color-white);
}

.breadcrumb-item.active {
  color: var(--color-white);
  font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.8);
}

.category-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.category-hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.category-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

/* Category Filter Section */
.category-filter-section {
  background: var(--color-gray-100);
  padding: 30px 0;
  border-bottom: 1px solid var(--color-gray-300);
}

.filter-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sort-options label {
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
}

.sort-select {
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.view-options {
  display: flex;
  gap: 5px;
}

.view-btn {
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  color: var(--color-gray-700);
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Related Categories */
.related-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-categories li {
  margin-bottom: 8px;
}

.related-categories a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-gray-700);
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.related-categories a:hover {
  color: var(--color-primary);
  padding-left: 10px;
}

/* Blog Detail Hero Section */
.blog-detail-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.blog-detail-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.blog-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.post-meta-header {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.post-meta-header>div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.post-meta-header i {
  color: #FFD700;
}

.blog-detail-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.blog-detail-hero-content .post-excerpt {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Blog Detail Content Section */
.blog-detail-content-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.blog-detail-post {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.post-featured-image {
  position: relative;
  margin-bottom: 0;
}

.post-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--color-white);
  padding: 20px;
}

.image-caption p {
  margin: 0;
  font-size: 14px;
  font-style: italic;
  opacity: 0.9;
}

.post-content {
  padding: 40px;
}

.post-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 30px 0 20px 0;
  line-height: 1.3;
}

.post-content h2:first-child {
  margin-top: 0;
}

.post-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-dark);
  margin: 25px 0 15px 0;
  line-height: 1.3;
}

.post-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 20px 0 10px 0;
  line-height: 1.3;
}

.post-content p {
  color: var(--color-gray-700);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.post-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post-content li {
  color: var(--color-gray-700);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.post-content strong {
  color: var(--color-dark);
  font-weight: 600;
}

.post-content img {
  width: 100%;
  height: auto;
}

.post-footer {
  padding: 20px;
}

/* Post Share */
.post-share {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}

.post-share h4,
.post-tags-section h4 {
  margin-bottom: 20px;
  color: var(--color-dark);
  font-size: 18px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  justify-content: flex-start;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 4px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.share-btn i {
  margin-right: 5px;
  font-size: 13px;
}

.share-btn.facebook {
  background: #1877F2;
  color: var(--color-white);
}

.share-btn.twitter {
  background: #1DA1F2;
  color: var(--color-white);
}

.share-btn.linkedin {
  background: #0077B5;
  /* Official LinkedIn blue */
  color: var(--color-white);
}

.share-btn.zalo {
  background: #0068FF;
  color: var(--color-white);
}

.share-btn.copy {
  background: #6c757d;
  color: var(--color-white);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Related Posts */
.related-posts {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.related-posts h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.related-post {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.related-post:last-child {
  border-bottom: none;
}

.related-post:hover {
  padding-left: 10px;
}

.related-post .post-image {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.related-post .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post:hover .post-image img {
  transform: scale(1.1);
}

.related-post .post-content {
  padding: 0 15px;
}

.related-post .post-content h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  line-height: 1.4;
}

.related-post .post-content h4 a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post .post-content h4 a:hover {
  color: var(--color-primary);
}

/* Comments Section */
.comments-section {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.comments-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 25px;
}

.comment-form {
  background: var(--color-gray-100);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.comment-form h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.comment-form .form-control {
  border: 2px solid var(--color-light-gray);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.comment-form .form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.comment-form .btn-primary {
  background: var(--color-primary);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.comment-form .btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment-item {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-avatar {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
}

.comment-date {
  font-size: 12px;
  color: var(--color-gray-500);
}

.comment-content p {
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.reply-btn {
  background: none;
  border: 1px solid var(--color-light-gray);
  color: var(--color-gray-700);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reply-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Author Widget */
.author-widget {
  background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-light-gray) 100%);
  border-left: 4px solid var(--color-primary);
}

.author-info {
  display: flex;
  gap: 15px;
}

.author-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-primary);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
}

.author-details p {
  color: var(--color-gray-700);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.author-social {
  display: flex;
  gap: 10px;
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Table of Contents Widget */
.toc-widget {
  background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-light-gray) 100%);
  border-left: 4px solid var(--color-secondary);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list a {
  display: block;
  color: var(--color-gray-700);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-light-gray);
  transition: all 0.3s ease;
  font-size: 14px;
}

.toc-list a:hover {
  color: var(--color-primary);
  padding-left: 10px;
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-hero-content h1 {
    font-size: 36px;
  }

  .blog-hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 28px;
  }

  .blog-filter-content {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-tabs {
    justify-content: center;
  }

  .search-box {
    width: 100%;
  }

  .search-input {
    width: 100%;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-post.featured-post {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }

  .post-meta-header {
    gap: 15px;
  }

  .blog-detail-hero-content h1 {
    font-size: 32px;
  }

  .post-content {
    padding: 25px;
  }

  .post-content h2 {
    font-size: 24px;
  }

  .post-content h3 {
    font-size: 20px;
  }

  .share-buttons {
    justify-content: center;
  }

  .related-post {
    flex-direction: column;
  }

  .related-post .post-image {
    width: 100%;
    height: 150px;
  }

  .comment-item {
    flex-direction: column;
  }

  .comment-avatar {
    align-self: flex-start;
  }

  .author-info {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .blog-hero-content h1 {
    font-size: 28px;
  }

  .blog-hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .filter-tabs {
    flex-direction: column;
    width: 100%;
  }

  .filter-tab {
    text-align: center;
  }

  .blog-detail-hero-content h1 {
    font-size: 24px;
  }

  .post-content {
    padding: 20px;
  }

  .related-post .post-content {
    padding: 0;
  }

  .post-content h2 {
    font-size: 20px;
  }

  .post-content h3 {
    font-size: 18px;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    justify-content: center;
  }
}

/* ===== TAG PAGE STYLES ===== */

/* Tag Hero Section */
.tag-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tag-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.tag-hero-content {
  position: relative;
  z-index: 2;
}

.tag-header {
  margin-bottom: 30px;
}

.tag-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.tag-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tag-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.tag-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.tag-stats .stat-item {
  text-align: center;
}

.tag-stats .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 5px;
}

.tag-stats .stat-label {
  font-size: 14px;
  opacity: 0.8;
}

/* Tag Filter Section */
.tag-filter-section {
  padding: 40px 0;
  background: var(--color-gray-100);
  border-bottom: 1px solid var(--color-light-gray);
}

.tag-filter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-options {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-options label {
  font-weight: 600;
  color: var(--color-dark);
}

.sort-select {
  padding: 8px 15px;
  border: 1px solid var(--color-gray-300);
  border-radius: 5px;
  background: var(--color-white);
  font-size: 14px;
}

.view-options {
  display: flex;
  gap: 5px;
}

.view-btn {
  padding: 8px 12px;
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  color: var(--color-gray-700);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.related-tags {
  display: flex;
  align-items: center;
  gap: 15px;
}

.related-tags-label {
  font-weight: 600;
  color: var(--color-dark);
}

.related-tags-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.related-tags-list .tag {
  padding: 5px 12px;
  background: var(--color-light-gray);
  color: var(--color-gray-700);
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-tags-list .tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Tag Content Section */
.tag-content-section {
  padding: 60px 0;
}

.tag-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Tag Info Widget */
.tag-info-widget {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.tag-info-widget .widget-title {
  color: var(--color-white);
  margin-bottom: 20px;
}

.tag-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.tag-display i {
  font-size: 20px;
}

.tag-name {
  font-size: 18px;
  font-weight: 700;
}

.tag-description p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 15px;
}

.tag-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tag-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.9;
}

.tag-meta .meta-item i {
  width: 16px;
  text-align: center;
}

/* Popular Tags Widget */
.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.popular-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--color-light-gray);
}

.popular-tags .tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.popular-tags .tag .count {
  background: var(--color-light-gray);
  color: var(--color-gray-700);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
}

.popular-tags .tag:hover .count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

/* ===== SEARCH PAGE STYLES ===== */

/* Search Hero Section */
.search-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.search-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.search-hero-content {
  position: relative;
  z-index: 2;
}

.search-header {
  margin-bottom: 40px;
}

.search-icon {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.search-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.search-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Search Form */
.search-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.search-form {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.search-input-group {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

.search-btn {
  padding: 15px 30px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-btn:hover {
  background: var(--color-primary-dark);
}

.search-filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 150px;
}

.filter-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-700);
  text-transform: uppercase;
}

.filter-select {
  padding: 8px 12px;
  border: 1px solid var(--color-gray-300);
  border-radius: 5px;
  background: var(--color-white);
  font-size: 14px;
  color: var(--color-dark);
}

/* Search Results Section */
.search-results-section {
  padding: 60px 0;
}

.search-info {
  margin-bottom: 30px;
  padding: 20px;
  background: var(--color-gray-100);
  border-radius: 10px;
  border-left: 4px solid var(--color-primary);
}

.search-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.results-count {
  font-size: 16px;
  color: var(--color-dark);
}

.search-time {
  font-size: 14px;
  color: var(--color-gray-700);
}

.search-suggestions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.suggestions-label {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 14px;
}

.suggestions-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.suggestion-tag {
  padding: 4px 12px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 15px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.suggestion-tag:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Search Results */
.search-results {
  margin-bottom: 50px;
}

.search-result-item {
  background: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-light-gray);
  transition: all 0.3s ease;
}

.search-result-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.result-type {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
}

.result-type i {
  font-size: 14px;
}

.result-content {
  display: flex;
  gap: 20px;
}

.result-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-info {
  flex: 1;
}

.result-title {
  margin-bottom: 10px;
}

.result-title a {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.result-title a:hover {
  color: var(--color-primary);
}

.result-excerpt {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
}

.result-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.result-meta span {
  font-size: 12px;
  color: var(--color-gray-700);
  padding: 4px 8px;
  background: var(--color-gray-100);
  border-radius: 4px;
}

.result-category {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
}

.result-price {
  background: var(--color-success) !important;
  color: var(--color-white) !important;
}

.result-rating {
  background: var(--color-warning) !important;
  color: var(--color-dark) !important;
}

.result-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.result-tags .tag {
  padding: 3px 8px;
  background: var(--color-light-gray);
  color: var(--color-gray-700);
  border-radius: 12px;
  font-size: 11px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.result-tags .tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Search Pagination */
.search-pagination {
  margin-top: 50px;
}

/* Search Sidebar */
.search-sidebar {
  padding-left: 30px;
}

/* Search Tips Widget */
.search-tips-widget {
  background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
  color: var(--color-white);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.search-tips-widget .widget-title {
  color: var(--color-white);
  margin-bottom: 20px;
}

.search-tips {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tip-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tip-item i {
  font-size: 16px;
  margin-top: 2px;
  opacity: 0.9;
}

.tip-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.tip-content p {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
}

/* Popular Searches Widget */
.popular-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-tag {
  padding: 6px 12px;
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--color-light-gray);
}

.search-tag:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Recent Searches Widget */
.recent-searches {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recent-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--color-gray-100);
  border-radius: 8px;
  color: var(--color-gray-700);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.recent-search:hover {
  background: var(--color-light-gray);
  color: var(--color-dark);
}

.recent-search i {
  font-size: 12px;
  color: var(--color-primary);
}

/* ===== RESPONSIVE DESIGN FOR TAG & SEARCH ===== */

@media (max-width: 768px) {

  .tag-hero-content h1,
  .search-hero-content h1 {
    font-size: 36px;
  }

  .tag-stats,
  .search-stats {
    flex-direction: column;
    gap: 20px;
  }

  .tag-filter-content {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-options {
    justify-content: space-between;
  }

  .search-form {
    padding: 20px;
  }

  .search-filters {
    flex-direction: column;
    gap: 15px;
  }

  .filter-group {
    min-width: auto;
  }

  .result-content {
    flex-direction: column;
    gap: 15px;
  }

  .result-image {
    width: 100%;
    height: 200px;
  }

  .search-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {

  .tag-hero-content h1,
  .search-hero-content h1 {
    font-size: 28px;
  }

  .tag-posts {
    grid-template-columns: 1fr;
  }

  .search-input-group {
    flex-direction: column;
  }

  .search-btn {
    justify-content: center;
  }
}

/* --- Error & Maintenance Pages --- */

/* Maintenance Hero Section */
.maintenance-hero-section {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: var(--color-white);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.maintenance-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.05"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.maintenance-content {
  position: relative;
  z-index: 2;
}

.maintenance-icon {
  font-size: 80px;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: spin 3s linear infinite;
}

.maintenance-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.maintenance-message {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.maintenance-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.info-item i {
  font-size: 24px;
  opacity: 0.8;
}

.info-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-content p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

.maintenance-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.maintenance-progress {
  max-width: 400px;
  margin: 0 auto;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.progress-percentage {
  font-weight: 600;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Maintenance Features Section */
.maintenance-features-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.maintenance-features h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.feature-item p {
  color: var(--color-gray-700);
  line-height: 1.6;
}

/* Maintenance Contact Section */
.maintenance-contact-section {
  padding: 80px 0;
}

.maintenance-contact h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
}

.maintenance-contact p {
  text-align: center;
  font-size: 18px;
  color: var(--color-gray-700);
  margin-bottom: 50px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 32px;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border-radius: 50%;
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.contact-info p {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.contact-info span {
  font-size: 14px;
  color: var(--color-gray-700);
}

/* Maintenance Footer */
.maintenance-footer {
  background: #343a40;
  color: var(--color-white);
  padding: 40px 0;
}

.maintenance-footer-content {
  text-align: center;
}

.footer-logo h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #adb5bd;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #495057;
  color: var(--color-white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer-copyright p {
  color: var(--color-gray-500);
  font-size: 14px;
  margin: 0;
}

/* ===== ERROR PAGE STYLES ===== */

/* Error Hero Section */
.error-hero-section {
  background: linear-gradient(135deg, #DC3545 0%, #c82333 100%);
  color: var(--color-white);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.error-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.error-content {
  position: relative;
  z-index: 2;
}

.error-icon {
  font-size: 80px;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: pulse 2s infinite;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.error-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.error-message {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Error Help Section */
.error-help-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.error-help h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
}

.help-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.help-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.help-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.help-icon {
  font-size: 32px;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border-radius: 50%;
  flex-shrink: 0;
}

.help-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.help-content p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin-bottom: 15px;
}

.help-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.help-link:hover {
  color: var(--color-primary-dark);
}

/* Error Popular Section */
.error-popular-section {
  padding: 80px 0;
}

.error-popular h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
}

.popular-pages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 5px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.page-item:hover {
  transform: translateY(-3px);
}

.page-icon {
  font-size: 32px;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border-radius: 50%;
  flex-shrink: 0;
}

.page-info h3 {
  margin-bottom: 5px;
}

.page-info h3 a {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-info h3 a:hover {
  color: var(--color-primary);
}

.page-info p {
  color: var(--color-gray-700);
  font-size: 14px;
  margin: 0;
}

/* Error Contact Section */
.error-contact-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.error-contact h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
}

.error-contact p {
  text-align: center;
  font-size: 18px;
  color: var(--color-gray-700);
  margin-bottom: 50px;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.contact-info-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.contact-info-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.contact-info-item p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin: 0;
}

.contact-info-item a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-item a:hover {
  color: var(--color-primary-dark);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
}

.contact-form-container {
  background: var(--color-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.contact-form-container p {
  color: var(--color-gray-700);
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-control {
  padding: 12px 15px;
  border: 1px solid var(--color-gray-300);
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  outline: none;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-form .form-check-input {
  margin-top: 5px;
}

.contact-form .form-check-label {
  font-size: 14px;
  line-height: 1.5;
}

.contact-form .form-check-label a {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-form .form-check-label a:hover {
  text-decoration: underline;
}

/* Contact Map Container */
.contact-map-container {
  background: var(--color-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.contact-methods h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.method-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--color-gray-100);
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.method-item:hover {
  background: var(--color-light-gray);
}

.method-icon {
  font-size: 24px;
  color: var(--color-primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  flex-shrink: 0;
}

.method-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.method-info p {
  font-size: 14px;
  color: var(--color-gray-700);
  margin-bottom: 5px;
}

.method-link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.method-link:hover {
  color: var(--color-primary-dark);
}

/* FAQ Section */
.contact-faq-section {
  padding: 80px 0;
  background: var(--color-gray-100);
}

.contact-faq h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background: var(--color-gray-100);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--color-light-gray);
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--color-dark);
}

.faq-question i {
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 80px 0;
  background: var(--gradient-primary);
  color: var(--color-white);
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN FOR MAINTENANCE, ERROR & CONTACT ===== */

@media (max-width: 768px) {

  .maintenance-content h1,
  .error-content h1,
  .contact-hero-content h1 {
    font-size: 36px;
  }

  .error-code {
    font-size: 80px;
  }

  .maintenance-info {
    flex-direction: column;
    gap: 30px;
  }

  .info-item {
    justify-content: center;
  }

  .maintenance-actions,
  .error-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-container,
  .contact-map-container {
    padding: 20px;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .maintenance-content h1,
  .error-content h1,
  .contact-hero-content h1 {
    font-size: 28px;
  }

  .error-code {
    font-size: 60px;
  }

  .maintenance-icon,
  .error-icon {
    font-size: 60px;
  }

  .features-grid,
  .contact-methods,
  .help-options,
  .popular-pages {
    grid-template-columns: 1fr;
  }
}

/* --- Service Pages --- */

/* Service Hero Section */
.service-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

.service-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
}

.service-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.service-hero-stats .stat-item {
  text-align: center;
}

.service-hero-stats .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-hero-stats .stat-label {
  font-size: 16px;
  opacity: 0.8;
}

/* Service Filter Section */
.service-filter-section {
  padding: 40px 0;
  background: var(--color-gray-100);
  border-bottom: 1px solid var(--color-light-gray);
}

.service-filter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.filter-tabs {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-300);
  color: var(--color-gray-700);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-tabs a {
  text-decoration: none;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.filter-options {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-options label {
  font-weight: 600;
  color: var(--color-dark);
}

.sort-select {
  padding: 8px 15px;
  border: 1px solid var(--color-gray-300);
  border-radius: 5px;
  background: var(--color-white);
  font-size: 14px;
}

.view-options {
  display: flex;
  gap: 5px;
}

.view-btn {
  padding: 8px 12px;
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  color: var(--color-gray-700);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Service Content Section */
.service-content-section {
  padding: 60px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
  position: relative;
  height: 285px;
  min-width: 220px;
  overflow: hidden;
}

.service-image img {
  min-width: 220px;
  min-height: 250px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.badge-popular {
  background: var(--color-success);
  color: var(--color-white);
}

.badge-new {
  background: var(--color-info);
  color: var(--color-white);
}

.badge-luxury {
  background: var(--color-warning);
  color: var(--color-dark);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-actions {
  display: flex;
  gap: 15px;
}

.action-btn {
  width: 45px;
  height: 45px;
  background: var(--color-white);
  border: none;
  border-radius: 50%;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  transform: scale(1.1);
}

.service-content {
  padding: 15px 25px;
}

.service-category {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.service-description {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
}

.service-features {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.feature-tag {
  padding: 4px 10px;
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.service-price {
  margin-bottom: 15px;
}

.price-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
}

.price-unit {
  font-size: 14px;
  color: var(--color-gray-700);
  margin-left: 5px;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: var(--color-warning);
}

.rating-text {
  font-size: 12px;
  color: var(--color-gray-700);
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  margin: 15px 0;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.service-btn:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Service Sidebar */
.service-sidebar {
  padding-left: 30px;
}

.sidebar-widget {
  background: var(--color-white);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
}

/* Booking Widget */
.booking-widget {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.booking-widget .widget-title {
  color: var(--color-white);
  margin-bottom: 20px;
}

.quick-booking-form .form-group {
  margin-bottom: 15px;
}

.quick-booking-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--color-white);
  font-size: 14px;
}

.quick-booking-form .form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 14px;
}

.quick-booking-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.quick-booking-form .form-control:focus {
  outline: none;
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
}

.btn-block {
  width: 100%;
}

/* Support Widget */
.support-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--color-gray-100);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.support-item:hover {
  background: var(--color-light-gray);
}

.support-icon {
  font-size: 24px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--color-primary);
}

.support-icon i {
  color: var(--color-primary);
}

.support-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.support-content p {
  font-size: 14px;
  color: var(--color-gray-700);
  margin-bottom: 5px;
}

.support-content span {
  font-size: 12px;
  color: var(--color-gray-500);
}

/* Popular Services Widget */
.popular-services {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popular-service {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--color-gray-100);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.popular-service:hover {
  background: var(--color-light-gray);
}

.service-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-info h4 {
  margin-bottom: 5px;
}

.service-info h4 a {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-info h4 a:hover {
  color: var(--color-primary);
}

.service-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-rating i {
  color: var(--color-warning);
  font-size: 12px;
}

.service-rating span {
  font-size: 12px;
  color: var(--color-gray-700);
}

.service-grid.list-view {
  grid-template-columns: 1fr;
}

.service-card.list-view {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: stretch;
}

.service-card.list-view .service-image {
  flex: 0 0 45%;
  height: 100%;
  min-height: 260px;
}

.service-card.list-view .service-content {
  flex: 1;
}

/* Why Choose Widget */
.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--color-gray-100);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.why-item:hover {
  background: var(--color-light-gray);
}

.why-item i {
  color: var(--color-primary);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.why-item span {
  font-size: 14px;
  color: var(--color-dark);
  font-weight: 500;
}

/* Tour Listing */
.tour-filter-section {
  padding: 40px 0;
  background: var(--color-gray-100);
  border-bottom: 1px solid var(--color-light-gray);
}

.tour-filter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.tour-filter-summary h2 {
  font-size: 28px;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.tour-filter-summary p {
  margin: 0;
  color: var(--color-gray-600);
}

.tour-content-section {
  padding: 60px 0;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.tour-grid.list-view {
  grid-template-columns: 1fr;
}

.tour-card {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.tour-card.list-view {
  flex-direction: row;
  gap: 25px;
}

.tour-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.tour-card.list-view .tour-image {
  flex: 0 0 45%;
  height: auto;
  min-height: 260px;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.1);
}

.tour-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover .tour-overlay {
  opacity: 1;
}

.tour-actions {
  display: flex;
  gap: 10px;
}

.tour-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.tour-content-header {
  margin-bottom: 20px;
}

.tour-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.tour-description {
  margin: 0;
  color: var(--color-gray-700);
  line-height: 1.7;
  font-size: 14px;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex: 1 1 45%;
  min-width: 220px;
}

.meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.meta-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-gray-500);
  letter-spacing: 0.5px;
}

.meta-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.tour-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 15px;
}

.tour-card .price-amount {
  font-size: 24px;
}

.tour-card-footer {
  margin: 15px 0;
}

.tour-sidebar .tour-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.tour-sidebar .tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-grid.list-view .tour-card {
  align-items: stretch;
}

.tour-grid.list-view .tour-content {
  flex: 1;
}

@media (max-width: 1024px) {
  .tour-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .tour-card.list-view {
    flex-direction: column;
  }

  .tour-card.list-view .tour-image {
    flex: unset;
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .tour-filter-summary h2 {
    font-size: 24px;
  }

  .meta-item {
    flex: 1 1 100%;
    min-width: 0;
  }
}

/* ===== SERVICE DETAIL PAGE STYLES ===== */

/* Service Detail Hero Section */
.service-detail-hero-section {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.service-detail-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200" fill="%23ffffff"><path d="M0,200 L1000,0 L1000,200 Z" opacity="0.1"/></svg>') no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.service-detail-hero-content {
  position: relative;
  z-index: 2;
}

.service-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.badge {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-popular {
  background: var(--color-success);
  color: var(--color-white);
}

.badge-new {
  background: var(--color-info);
  color: var(--color-white);
}

.service-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Service Detail Content Section */
.service-detail-content-section {
  padding: 60px 0;
}

/* Service Gallery */
.service-gallery {
  margin-bottom: 50px;
}

.gallery-main {
  margin-bottom: 20px;
  position: relative;
}

.main-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  max-height: 860px;
}

.main-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.gallery-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
}

.thumbnail {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--color-primary);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service Description */
.service-description {
  margin-bottom: 50px;
}

.service-description h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.service-description h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: var(--color-dark);
}

.service-description p {
  color: var(--color-gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-description ul {
  color: var(--color-gray-700);
  line-height: 1.8;
  padding-left: 20px;
}

.service-description li {
  margin-bottom: 8px;
}

.service-description table {
  width: 100% !important;
  border: 1px solid var(--color-gray-300);
  border-collapse: collapse;
  margin-bottom: 20px;
  background-color: var(--color-white);
}

.service-description table th,
.service-description table td {
  border: 1px solid var(--color-gray-300);
  padding: 12px 15px;
  vertical-align: middle;
  color: var(--color-dark);
}

.service-description table thead th {
  background-color: var(--color-gray-100);
  font-weight: 600;
}

.service-description table p {
  margin-bottom: 0;
}

/* Service Features */
.service-features {
  margin-bottom: 20px;
}

.service-features h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 32px;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.feature-content p {
  color: var(--color-gray-700);
  margin: 0;
}

/* Service Reviews */
.service-reviews {
  margin-bottom: 50px;
}

.service-reviews h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-dark);
}

.reviews-summary {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--color-gray-100);
  border-radius: 10px;
}

.rating-overview {
  text-align: center;
  flex-shrink: 0;
}

.rating-score {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.rating-stars {
  color: var(--color-warning);
  font-size: 20px;
  margin-bottom: 10px;
}

.rating-text {
  color: var(--color-gray-700);
  font-size: 14px;
}

.rating-breakdown {
  flex: 1;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.rating-label {
  width: 50px;
  font-size: 14px;
  color: var(--color-gray-700);
}

.rating-progress {
  flex: 1;
  height: 8px;
  background: var(--color-light-gray);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-warning);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.rating-count {
  width: 30px;
  text-align: right;
  font-size: 14px;
  color: var(--color-gray-700);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  background: var(--color-white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-details h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-dark);
}

.review-rating {
  color: var(--color-warning);
  font-size: 14px;
}

.review-date {
  color: var(--color-gray-700);
  font-size: 14px;
}

.review-content p {
  color: var(--color-gray-700);
  line-height: 1.6;
  margin: 0;
}

/* Service Detail Sidebar */
.service-detail-sidebar {
  padding-left: 30px;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.booking-form .form-group {
  margin-bottom: 20px;
}

.booking-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-dark);
  font-size: 14px;
}

.booking-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-gray-300);
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.booking-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  outline: none;
}

.booking-summary {
  background: var(--color-gray-100);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--color-gray-700);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

/* Service Info Widget */
.service-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-info-list .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--color-gray-100);
  border-radius: 8px;
}

.service-info-list .info-item i {
  color: var(--color-primary);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.service-info-list .info-item span {
  font-size: 14px;
  color: var(--color-dark);
}

/* Related Services */
.related-services {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-service {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--color-gray-100);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.related-service:hover {
  background: var(--color-light-gray);
}

/* ===== RESPONSIVE DESIGN FOR SERVICE PAGES ===== */

@media (max-width: 768px) {

  .service-hero-content h1,
  .service-detail-hero-content h1 {
    font-size: 36px;
  }

  .service-hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .service-filter-content {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-tabs {
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar,
  .service-detail-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }

  .reviews-summary {
    flex-direction: column;
    gap: 20px;
  }

  .gallery-thumbnails {
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .service-hero-content h1,
  .service-detail-hero-content h1 {
    font-size: 28px;
  }

  .service-meta {
    flex-direction: column;
    gap: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-thumbnails {
    flex-wrap: wrap;
  }

  .thumbnail {
    width: 80px;
    height: 60px;
  }
}
