@import url("./animation.css");
@import url("./font.css");
@import url("./responsive.css");

/* ========================================================================= */
/* 1. CSS Custom Properties - Modern Design System */
/* ========================================================================= */
:root {
  /* ===== Base Colors ===== */
  /* Neutral colors for basic UI elements */
  --white: #ffffff;
  --black: #000000;
  --neutral: #f5f5dc;
  --color-body: #faf8f5;
  /* ===== Brand Colors ===== */
  /* Primary brand color - used for main actions and key UI elements */
  --color-primary: #001450;
  --color-primary-light: #0034c0;

  /* Secondary brand color - used for accents and highlights */
  --color-secondary: #b78d4d;
  --color-highlight: #e2a90d;
  --color-highlight-light: #f0f8ff;
  --color-highlight-bg: #fdf6e3;
  --color-highlight-bg-alt: #fef9e7;
  --color-highlight-shadow: rgba(230, 126, 34, 0.15);

  /* ===== Text Colors ===== */
  /* Muted text color for secondary information */
  --color-text-muted: #666666;
  /* Default text color (can be overridden in dark mode) */
  --color-text: #333333;
  /* Reverse text color for dark backgrounds */
  --color-text-reverse: #ffffff;

  /* ===== UI Colors ===== */
  /* Border color for dividers and outlines */
  --color-border: #e9ecef;
  /* Shadow color for elevation effects */
  --color-shadow: rgba(0, 20, 80, 0.15);
  /* Footer background color */
  --color-footer: #001450;
  /* Gray color for neutral UI elements */
  --color-gray-300: #e0e0e0;

  /* ===== Spacing Scale ===== */
  /* Consistent spacing system based on 4px base unit */
  --spacing-xs: 0.25rem; /* 4px - Extra small spacing for tight layouts */
  --spacing-sm: 0.5rem; /* 8px - Small spacing for compact components */
  --spacing-md: 1rem; /* 16px - Medium spacing for standard layouts */
  --spacing-lg: 1.5rem; /* 24px - Large spacing for section padding */
  --spacing-xl: 2rem; /* 32px - Extra large spacing for major sections */
  --spacing-2xl: 3rem; /* 48px - Double extra large for hero sections */
  --spacing-3xl: 4rem; /* 64px - Triple extra large for page sections */
  --spacing-4xl: 6rem; /* 96px - Quadruple extra large for major separations */

  /* ===== Border Radius ===== */
  /* Standard border radius for UI elements */
  --border-radius-sm: 0.375rem; /* 6px - Small radius for buttons and inputs */
  --border-radius: 0.75rem; /* 12px - Default radius for cards */
  --border-radius-lg: 1rem; /* 16px - Large radius for prominent cards */
  --border-radius-xl: 1.5rem; /* 24px - Extra large for hero sections */
  --border-radius-full: 9999px; /* Full radius for circular elements */

  /* ===== Typography Scale ===== */
  /* Fluid typography scale for responsive text sizing */
  --font-size-xs: 0.75rem; /* 12px - Extra small text */
  --font-size-sm: 0.875rem; /* 14px - Small text */
  --font-size-base: 1rem; /* 16px - Base text size */
  --font-size-lg: 1.125rem; /* 18px - Large text */
  --font-size-xl: 1.25rem; /* 20px - Extra large text */
  --font-size-2xl: 1.5rem; /* 24px - 2x large headings */
  --font-size-3xl: 1.875rem; /* 30px - 3x large headings */
  --font-size-4xl: 2.25rem; /* 36px - 4x large headings */
  --font-size-5xl: 3rem; /* 48px - 5x large headings */

  /* ===== Font Weights ===== */
  /* Typography weight scale for emphasis */
  --font-weight-light: 300; /* Light weight for subtle text */
  --font-weight-regular: 400; /* Regular weight for body text */
  --font-weight-medium: 500; /* Medium weight for emphasis */
  --font-weight-semibold: 600; /* Semibold for headings */
  --font-weight-bold: 700; /* Bold for strong emphasis */

  /* ===== Line Heights ===== */
  /* Line height scale for readable typography */
  --line-height-tight: 1.25; /* Tight line height for headings */
  --line-height-normal: 1.5; /* Normal line height for body text */
  --line-height-relaxed: 1.7; /* Relaxed line height for comfortable reading */
  --line-height-loose: 2; /* Loose line height for spacious text */

  /* ===== Transitions ===== */
  /* Smooth animation timing for interactive elements */
  --transition-duration-fast: 0.15s; /* Fast transitions for subtle effects */
  --transition-duration: 0.3s; /* Default transition duration */
  --transition-duration-slow: 0.5s; /* Slow transitions for dramatic effects */
  --transition-easing: cubic-bezier(0.4, 0, 0.2, 1); /* Smooth easing curve */
  --transition: all var(--transition-duration) var(--transition-easing);

  /* ===== Shadows ===== */
  /* Elevation system for creating depth */
  --shadow-xs: 0 1px 2px var(--color-shadow); /* Extra small shadow for subtle depth */
  --shadow-sm: 0 1px 4px var(--color-shadow); /* Small shadow for cards */
  --shadow-light: 0 2px 10px var(--color-shadow); /* Light shadow for hoverable elements */
  --shadow-medium: 0 5px 20px var(--color-shadow); /* Medium shadow for modals */
  --shadow-heavy: 0 10px 30px var(--color-shadow); /* Heavy shadow for prominent elements */
  --shadow-xl: 0 20px 50px var(--color-shadow); /* Extra large shadow for floating elements */

  /* ===== Z-Index Scale ===== */
  /* Layering system for stacking elements */
  --z-index-dropdown: 1000; /* Dropdowns and popovers */
  --z-index-sticky: 1020; /* Sticky elements */
  --z-index-fixed: 1030; /* Fixed elements like headers */
  --z-index-modal-backdrop: 1040; /* Modal backdrop overlay */
  --z-index-modal: 1050; /* Modal dialogs */
  --z-index-popover: 1060; /* Popovers and tooltips */
  --z-index-tooltip: 1070; /* Tooltips */

  /* ===== Container Max Widths ===== */
  /* Maximum width constraints for responsive layouts */
  --container-sm: 640px; /* Small container for narrow content */
  --container-md: 768px; /* Medium container for standard content */
  --container-lg: 1024px; /* Large container for wide content */
  --container-xl: 1280px; /* Extra large container for full layouts */
  --container-2xl: 1536px; /* 2x large container for expansive layouts */

  /* ===== Breakpoints ===== */
  /* Media query breakpoints for responsive design */
  --breakpoint-sm: 640px; /* Small devices (phones) */
  --breakpoint-md: 768px; /* Medium devices (tablets) */
  --breakpoint-lg: 1024px; /* Large devices (desktops) */
  --breakpoint-xl: 1280px; /* Extra large devices (wide screens) */
  --breakpoint-2xl: 1536px; /* 2x large devices (ultra-wide screens) */
}

/* ========================================================================= */
/* 2. Global Styles & Typography */
/* ========================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Base Body Styles */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--neutral);
  overflow-x: hidden;
  transition: background-color var(--transition-duration) ease,
    color var(--transition-duration) ease;
}



/* Typography Improvements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--color-text);
}

p {
  margin-bottom: 1.2rem;
  color: var(--color-text);
}

section {
  position: relative;
  background: var(--color-body);
}

section h2 {
  color: var(--color-primary);
}

section p.lead {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* ========================================================================= */
/* 3. Utility Classes */
/* ========================================================================= */

/* Enhanced Utility Classes */

.divider {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border: none;
  margin: 30px auto;
  border-radius: 2px;
  position: relative;
}

.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
}

.bg-primary-custom {
  background: var(--color-primary) !important;
}

.box-shadow {
  box-shadow: var(--shadow-light);
}

.bg-dotted {
  background-image: radial-gradient(
      circle,
      var(--color-gray-300) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(250, 250, 250, 1), rgba(250, 250, 250, 1));
  background-size: 24px 24px;
  background-position: 0px 0px, 12px 12px;
}
.bg-success {
  background-color: var(--color-primary) !important;
}

.btn-primary {
  background-color: var(--color-primary) !important;
  border: var(--color-primary);
}
.alert-success {
  background-color: var(--neutral);
  color: var(--black);
  border: 1px solid var(--black);
}

/* Enhanced Top Bar */
.top-bar {
  background: var(--color-primary);

  height: 45px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1060;
  box-shadow: 0 2px 10px rgba(74, 105, 138, 0.3);
  transition: transform 0.4s var(--transition-easing), opacity 0.4s ease;
  opacity: 1;
  transform: translateY(0);
}

.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.top-bar .container-fluid {
  height: 100%;
}

.scrolling-text {
  white-space: nowrap;
  line-height: 45px;
  color: white;
  font-weight: 500;
  font-size: 0.85rem;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.scrolling-text span {
  display: inline-block;
  animation: marqueeInColumn 25s linear infinite;
}

/* Enhanced Navigation Styles */
.enhanced-navbar {
  background: transparent !important;
  backdrop-filter: none;
  transition: all 0.4s var(--transition-easing);
  padding: 1.2rem 0;
  box-shadow: none;
  border-bottom: none;
  top: 45px !important;
  z-index: 1050;
}

.enhanced-navbar.scrolled {
  background: var(--neutral) !important;
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 5px 30px var(--color-shadow);
  top: 0 !important;
}

/* When top-bar is hidden, navbar should be at top from start */
.top-bar.hidden ~ .enhanced-navbar {
  top: 0 !important;
}

.navbar-brand {
  color: white !important;
  text-decoration: none;
  transition: var(--transition);
}

.enhanced-navbar.scrolled .navbar-brand {
  color: var(--color-text) !important;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.brand-icon i {
  color: white;
  font-size: 1.5rem;
}

.brand-icon img {
  max-height: 30px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.enhanced-navbar.scrolled .brand-name {
  color: var(--color-text);
  text-shadow: none;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--color-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-brand:hover .brand-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-heavy);
}

.navbar-brand:hover .brand-name {
  color: var(--color-primary);
}

.navbar-nav {
  gap: 0.5rem;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding: 10px 20px !important;
  border-radius: 5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.enhanced-navbar.scrolled .navbar-nav .nav-link:not(:hover):not(.active) {
  color: var(--color-text) !important;
  text-shadow: none;
}

.navbar-nav .nav-link i {
  font-size: 0.85rem;
  opacity: 0.8;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: white !important;
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-link.active i {
  opacity: 1;
  color: var(--color-secondary);
}

.navbar-nav .nav-link.contact-btn {
  background: var(--color-secondary);
  font-weight: 700;
}

/* Mobile Navigation Responsive */



.navbar-nav .nav-link.contact-btn:hover {
  background: var(--color-primary);
  transform: translateY(-3px) scale(1.05);
}

/* Custom Toggler */
.custom-toggler {
  border: none;
  padding: 0.5rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 35px;
  height: 35px;
}

.toggler-line {
  width: 25px;
  height: 3px;
  background: var(--neutral);
  border-radius: 2px;
  transition: var(--transition);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.enhanced-navbar.scrolled .toggler-line {
  background: var(--color-primary);
  box-shadow: none;
}

.custom-toggler:hover .toggler-line {
  background: var(--color-secondary);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* Modern Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 90px;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Modern Hero Content */
.hero-main-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content {
  width: 100%;
}

.modern-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  animation: badgeFloat 3s ease-in-out infinite;
}

.modern-badge i {
  color: var(--color-secondary);
  margin-right: 8px;
  font-size: 1.1rem;
}

.hero-title-container {
  margin: 2rem 0;
}

.modern-hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.title-line-1,
.title-line-2 {
  display: block;
  color: var(--white);
  font-weight: 500;
  font-size: 0.7em;
  opacity: 0.95;
}

.title-line-3 {
  display: block;
  font-weight: 900;
  font-size: 1.2em;
  margin-top: 0.2em;
  color: var(--color-secondary);
}

.text-gradient {
  color: var(--color-secondary);
  filter: none;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  gap: 15px;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: var(--white);
  animation: lineGlow 2s ease-in-out infinite alternate;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--color-secondary);
  animation: dotPulse 2s ease-in-out infinite;
}

.modern-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Modern Hero Actions */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.modern-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-width: 180px;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.modern-btn-primary {
  background: var(--color-primary);
  color: var(--color-text-reverse);
  box-shadow: 0 8px 25px var(--color-shadow);
  border: none;
}

.modern-btn-secondary {
  background: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  color: var(--color-text);
}

.modern-btn:hover {
  transform: translateY(-3px) scale(1.05);
  text-decoration: none;
}

.modern-btn-primary:hover {
  color: var(--color-text-reverse);
  background: var(--color-primary);
  filter: brightness(1.1);
  box-shadow: 0 12px 35px var(--color-shadow);
}

.modern-btn-secondary:hover {
  color: var(--color-text);
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  filter: brightness(1.1);
  box-shadow: 0 8px 25px hsla(var(--secondary-hue), 70%, 50%, 0.4);
}

.btn-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.6s;
}

.modern-btn:hover .btn-shine {
  left: 100%;
}

/* Enhanced Button Styles */
.btn {
  transition: var(--transition);
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-success {
  background: var(--color-primary);
  border: none;
  position: relative;
}

.btn-success:hover {
  background: var(--color-primary);
  filter: brightness(1.1);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
  backdrop-filter: blur(10px);
}

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

/* Floating Elements */
.floating-element {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

/* Hero Badge */
.hero-badge {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge .badge {
  background: var(--color-secondary) !important;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

/* Hero Stats */
.hero-stats {
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  animation: bounce 2s infinite;
}

.scroll-down:hover {
  color: var(--color-secondary);
  transform: translateY(-5px);
  filter: drop-shadow(0 0 10px hsla(var(--secondary-hue), 60%, 50%, 0.6));
}

.scroll-down i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.scroll-down span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Floating Price Card */
.floating-price-card {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 5;
  max-width: 320px;
  border: 2px solid rgba(139, 174, 102, 0.3);
  animation: floatPrice 3s ease-in-out infinite;
}

.price-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-secondary);
}

.price-card-header i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.price-card-header h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(139, 174, 102, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.price-item:hover {
  background: rgba(139, 174, 102, 0.2);
  transform: translateX(5px);
}

.price-item.highlight {
  background: linear-gradient(
    135deg,
    rgba(98, 129, 65, 0.15),
    rgba(139, 174, 102, 0.15)
  );
  border: 2px solid var(--color-secondary);
  font-weight: 600;
}

.price-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}

.price-label i {
  font-size: 1rem;
  color: var(--color-primary);
}

.price-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.contact-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-highlight);
  font-style: italic;
}

.price-card-footer {
  margin-top: 1rem;
}

.btn-price-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: var(--color-primary);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(98, 129, 65, 0.3);
}

.btn-price-contact:hover {
  background: var(--color-secondary);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 174, 102, 0.4);
}

.btn-price-contact i {
  font-size: 1rem;
}

/* Enhanced About Section */
.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.about-image:hover::before {
  opacity: 0.2;
}

.about-image img {
  transition: var(--transition);
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

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

.about-content {
  padding-left: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  color: var(--color-secondary);
  background: var(--neutral);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--color-primary);
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--color-secondary);
  transition: var(--transition);
}

.feature-item:hover::before {
  left: 0;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-primary);
}

.feature-item i {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  transition: var(--transition);
}

.feature-item:hover i {
  color: var(--color-secondary);
  transform: scale(1.1);
}

.feature-item h5 {
  margin: 1rem 0;
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.2rem;
}

.feature-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Enhanced Process Section */
.process-card {
  background: var(--neutral);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 93, 80, 0.1);
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.process-card:hover::before {
  opacity: 0.05;
  background: var(--color-primary);
}

.process-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  border-color: var(--color-primary);
}

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

.process-icon {
  width: 100px;
  height: 100px;
  background: var(--neutral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--color-primary);
  position: relative;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.process-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--neutral);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
  transition: var(--transition);
}

.process-card:hover .process-icon {
  transform: scale(1.1) rotate(5deg);
}

.process-card:hover .process-icon::before {
  transform: scale(1.2);
  opacity: 0.1;
}

.process-card h4 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.3rem;
}

.process-card p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Process Steps Counter */
.process-card {
  counter-increment: process-counter;
}

.process-card::after {
  content: counter(process-counter, decimal-leading-zero);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-secondary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-light);
  border: 2px solid white;
}

.process-section {
  counter-reset: process-counter;
}

/* Enhanced Blog Section */
.blog-card {
  background: var(--neutral);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
  position: relative;
  border: 1px solid rgba(47, 93, 80, 0.1);
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-secondary);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  border-color: var(--color-primary);
}

.blog-card:hover::before {
  opacity: 0.03;
}

.blog-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-heavy);
  border-color: var(--color-primary);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: brightness(0.9);
}

.blog-card:hover .blog-image img {
  transform: scale(1.15);
  filter: brightness(1);
}

.blog-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.blog-meta .date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-meta .category {
  background: var(--color-secondary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-light);
}

.blog-content h4 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.2rem;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-content a {
  color: var(--color-primary);
  text-decoration: none;
}

.blog-content a:hover {
  text-decoration: underline;
}

.blog-content h4:hover {
  color: var(--color-primary);
  cursor: pointer;
}

.blog-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-content .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Blog Card Hover Effects */
.blog-card .blog-content .btn {
  transform: translateY(10px);
  opacity: 0.7;
  transition: var(--transition);
}

.blog-card:hover .blog-content .btn {
  transform: translateY(0);
  opacity: 1;
}

/* Contact Section */
.contact-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.contact-item i {
  width: 30px;
  text-align: center;
}

.contact-form .form-control {
  background: var(--color-secondary);
  color: var(--white);
  border-radius: 8px;
  padding: 12px 15px;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
  border-color: var(--color-primary);
  color: var(--white);
}

.social-links a {
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

/* Animation Utilities */
.animate-target {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Gallery Section */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.filter-btn {
  background: var(--neutral);
  border: 2px solid var(--color-primary);
  color: var(--color-text);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  cursor: pointer;
  will-change: transform;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.gallery-grid {
  margin-top: 2rem;
}

.gallery-item {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  contain: layout style paint;
  opacity: 1;
  transform: scale(1) translateY(0);
}

.gallery-item.hide {
  opacity: 0 !important;
  transform: scale(0.9) translateY(20px) !important;
  pointer-events: none;
}

/* Hidden items that are not yet loaded */
.gallery-item.hidden-item {
  opacity: 0 !important;
  transform: scale(0.9) translateY(30px) !important;
  pointer-events: none;
}

.gallery-card {
  background: var(--neutral);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  height: 100%;
  transform: translateZ(0);
  /* Enable hardware acceleration */
  backface-visibility: hidden;
  /* Prevent flickering */
}

.gallery-card:hover {
  transform: translateY(-5px) translateZ(0);
  box-shadow: var(--shadow-heavy);
}

/* Performance optimization for hover states */

.gallery-image {
  position: relative;
  overflow: hidden;
  height: 300px;
  background: #f8f9fa;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  transform: translateZ(0);
}

/* Skeleton Loading */
.image-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e0e0e0;
  animation: skeleton-loading 1.5s infinite;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

/* Hide skeleton when image is loaded */
.gallery-image .lazy-load.loaded ~ .image-skeleton,
.gallery-image .image-skeleton.hidden {
  opacity: 0;
  animation: none;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.05) translateZ(0);
}

.gallery-content {
  text-align: center;
  color: white;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-content {
  transform: translateY(0);
}

.gallery-content h5, .gallery-content p {
  color: white;
}

.gallery-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
  filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.6));
}

.gallery-content h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Mobile Optimizations for Gallery */

/* Gallery Modal (for future lightbox) */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
}

.gallery-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
}

/* Enhanced Hover Effects */
.hover-lift {
  transition: var(--transition);
}

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

/* Process Cards Responsive */



/* Contact Section Responsive */



/* Testimonials Swiper Responsive */



/* Custom Google Maps Embed Responsive */
.embed-map-fixed {
  position: relative;
  text-align: right;
  width: 100%;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.embed-map-container {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.embed-map-frame {
  width: 100% !important;
  height: 100% !important;
  border-radius: 15px;
  border: none;
}

/* Responsive adjustments for map */

/* Blog Cards Styling */
.blog-card {
  background: var(--neutral);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-secondary);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-light);
}

.blog-date .day {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}

.blog-date .month {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.blog-category,
.blog-author {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-category i,
.blog-author i {
  color: var(--color-primary);
}

.blog-title {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.blog-title a {
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

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

.blog-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Blog Modal Styling */
.modal-content {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
}

.modal-header {
  background: var(--color-secondary);
  color: white;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.modal-body {
  max-height: 70vh;
  line-height: 1.7;
}

.modal-body h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.modal-body h4 {
  color: var(--color-secondary);
  margin: 1.5rem 0 1rem;
  font-weight: 600;
}

.modal-body p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.modal-body .highlight {
  background: rgba(47, 93, 80, 0.1);
  padding: 1rem;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.modal-body .stats-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.modal-body .stats-item {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(47, 93, 80, 0.1);
}

.modal-body .stats-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

/* Responsive Blog Cards */

/* General Mobile Performance Optimizations */

.hover-glow {
  position: relative;
  transition: var(--transition);
}

.hover-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: var(--color-secondary);
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  filter: blur(10px);
}

.hover-glow:hover::before {
  opacity: 0.3;
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: var(--shadow-medium);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

/* Floating Social Buttons */
.floating-social {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: var(--z-index-fixed);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Toggle button (hidden on desktop) */
.social-toggle-btn {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-full);
  background: var(--color-primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-heavy);
  transition: var(--transition);
  z-index: 2;
  order: 2; /* Place toggle button after social links */
}

.social-toggle-btn i {
  font-size: 1.4rem;
  transition: transform var(--transition-duration) var(--transition-easing);
}

.social-toggle-btn:hover {
  transform: scale(1.1);
  background: var(--color-primary-light);
}

.social-toggle-btn:active {
  transform: scale(0.95);
}

/* Social links wrapper */
.social-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  order: 1; /* Place social links before toggle button */
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.6s;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-heavy);
}

.social-btn.facebook {
  background: var(--color-primary);
}

.social-btn.facebook:hover {
  background: var(--color-primary);
  filter: brightness(1.1);
}

.social-btn.youtube {
  background: #c8392b;
}

.social-btn.youtube:hover {
  background: #b33426;
  filter: brightness(1.1);
}

.social-btn.tiktok {
  background: var(--color-secondary);
}

.social-btn.tiktok:hover {
  background: var(--color-secondary);
  filter: brightness(1.1);
}

.social-btn i {
  font-size: 1.2rem;
  z-index: 1;
}

/* Page Loading Overlay */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: white;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.loader-text {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ========================================================================= */
/* Modern Footer - Kalungi Style */
/* ========================================================================= */
.footer {
  background: var(--color-footer);
  color: var(--white);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

/* Footer Brand */
.footer .footer-brand {
  margin-bottom: 1.5rem;
}

.footer .brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer .brand-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer .brand-text .brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.footer .brand-text .brand-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* Footer Contact */
.footer .footer-contact {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer .footer-contact,
.footer .footer-contact p,
.footer .footer-contact a {
  color: rgba(var(--color-text-reverse), 0.85);
}

.footer .footer-contact a {
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-all;
}

.footer .footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Footer Social Icons */
.footer .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.footer .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition) !important;
}

.footer .social-icon:hover {
  transform: scale(1.1) !important;
  text-decoration: none !important;
}

/* Footer Titles */
.footer .footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer .footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

/* Footer Links */
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links li {
  margin-bottom: 0.75rem;
}

.footer .footer-links a {
  color: rgba(var(--color-text-reverse), 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer .footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}

.footer .footer-links a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer .footer-links a:hover::before {
  width: 100%;
}

/* Footer Bottom */
.footer .footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-bottom p {
  color: rgba(var(--color-text-reverse), 0.85);
  font-size: 0.875rem;
  margin: 0;
}

.footer .footer-link {
  color: rgba(var(--color-text-reverse), 0.85);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer .footer-link:hover {
  color: var(--white);
}

.footer .back-to-top {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer .back-to-top:hover {
  background: var(--white);
  color: #4a7ba7;
  transform: translateY(-2px);
}

/* Responsive Design */

/* Enhanced Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
  box-shadow: 0 2px 10px rgba(1, 55, 125, 0.3);
}

/* Selection Color */
::selection {
  background: var(--color-secondary);
  color: var(--black-color);
}

::-moz-selection {
  background: var(--color-secondary);
  color: var(--black-color);
}

/* Focus States */
.btn:focus,
.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25);
}

/* Accessibility Improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Print Styles */

/* Reduced Motion Support */

/* Lightbox Modal Styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
}

.lightbox-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightboxSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active .lightbox-content {
  animation: lightboxSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#lightboxImage {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 0 0 10px 10px;
  width: 100%;
  text-align: center;
  margin-top: -4px;
}

.lightbox-caption h5 {
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.lightbox-caption p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10001;
}

/* Mobile Lightbox Styles */

/* Google Map Section Styles */
.map-container {
  position: relative;
  background: var(--neutral);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 10px;
}

.map-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.location-info {
  height: 100%;
}

.info-card {
  background: var(--neutral);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(47, 93, 80, 0.1);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(47, 93, 80, 0.1);
}

.info-header i {
  font-size: 2rem;
  color: var(--color-primary);
}

.info-header h4 {
  color: var(--color-text);
  font-weight: 700;
  margin: 0;
}

.info-content {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(249, 250, 251, 0.5);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(47, 93, 80, 0.05);
  transform: translateX(5px);
}

.info-item i {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.info-item div {
  flex: 1;
}

.info-item strong {
  color: var(--color-text);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.info-item p {
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.info-item a {
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.info-item a:hover {
  text-decoration: underline;
}

.info-actions {
  text-align: center;
}

.info-actions .btn {
  width: 100%;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.info-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 93, 80, 0.3);
}

/* Unified Contact & Location Section Styles */
.contact-info-unified {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.contact-item-unified {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.contact-item-unified:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--color-secondary);
  transform: translateX(5px);
}

.contact-item-unified i {
  font-size: 1.2rem;
  margin-top: 0.2rem;
  min-width: 20px;
  color: var(--color-secondary);
}

.contact-item-unified div {
  flex: 1;
}

.contact-item-unified strong {
  color: white;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-item-unified p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

.contact-item-unified a {
  color: var(--color-secondary) !important;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-item-unified a:hover {
  color: white !important;
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-actions .btn {
  flex: 1;
  min-width: 140px;
  border-radius: 25px;
  padding: 12px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  color: white;
  background: var(--color-secondary);
  transform: translateY(-2px);
}

.map-container-unified {
  background: var(--color-primary);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 585px;
}

.map-header h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-reverse);
}

.map-header p {
  color: var(--color-text-reverse, 0.85);
}

.map-wrapper-unified {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form-unified {
  background: var(--color-primary);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 585px;
}

.contact-form-unified .btn-form {
  background-color: var(--color-secondary);
}

.form-header h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text-reverse);
}

.form-header p {
  color: var(--color-text-reverse, 0.85);
}

.form-group-unified {
  position: relative;
  display: flex;
  align-items: center;
}

.form-group-unified i {
  position: absolute;
  left: 15px;
  color: var(--color-secondary);
  z-index: 2;
  font-size: 1rem;
}

.form-group-unified .form-control {
  padding-left: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: var(--color-text);
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-group-unified .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group-unified .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25);
  color: white;
}

.form-group-unified textarea.form-control {
  padding-top: 15px;
  height: 115px;
  resize: vertical;
}

/* Mobile Responsive Styles */





/* ===== TESTIMONIAL SECTION ===== */
#testimonials {
  position: relative;
  overflow: hidden;
}

#testimonials::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23B08D57" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%232F5D50" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%237A6C5D" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonial-track {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}

.testimonial-item {
  display: none;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(47, 93, 80, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--luxury-gradient);
}

.testimonial-content {
  text-align: center;
  margin-bottom: 2rem;
}

.quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--luxury-gradient);
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
}

.quote-icon i {
  font-size: 1.5rem;
  color: white;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  animation: starTwinkle 2s ease-in-out infinite alternate;
}

.testimonial-rating i:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-rating i:nth-child(3) {
  animation-delay: 0.4s;
}

.testimonial-rating i:nth-child(4) {
  animation-delay: 0.6s;
}

.testimonial-rating i:nth-child(5) {
  animation-delay: 0.8s;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.author-avatar {
  position: relative;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
}

.author-avatar::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid rgba(176, 141, 87, 0.3);
  border-radius: 50%;
  animation: authorGlow 3s ease-in-out infinite;
}

.author-info {
  text-align: left;
}

.author-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.author-location {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-location::before {
  content: "📍";
  font-size: 0.9rem;
}

/* Navigation Controls */
.testimonial-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  box-shadow: var(--shadow-medium);
}

.testimonial-btn:hover {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-heavy);
}

.testimonial-btn:active {
  transform: scale(0.95);
}

.prev-btn {
  transform: translateX(-25px);
}

.next-btn {
  transform: translateX(25px);
}

/* Pagination Dots */
.testimonial-pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(47, 93, 80, 0.3);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.pagination-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.pagination-dot:hover {
  background: var(--color-secondary);
  transform: scale(1.1);
}

.pagination-dot::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: var(--transition);
}

.pagination-dot.active::after {
  border-color: rgba(47, 93, 80, 0.2);
}

/* Stats Section */
.stats-item {
  padding: 2rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(47, 93, 80, 0.1);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.stats-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--luxury-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.stats-item:hover::before {
  transform: scaleX(1);
}

.stats-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.stats-icon {
  width: 70px;
  height: 70px;
  background: var(--luxury-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-medium);
}

.stats-icon i {
  font-size: 1.8rem;
  color: white;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  background: var(--luxury-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-label {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin: 0;
}

/* Responsive Design */



/* Theme Toggle and Dark/Light Mode Utilities */
.theme-aware-text {
  color: var(--text-primary);
}

.theme-aware-bg {
  background-color: var(--neutral);
  color: var(--text-primary);
}

.theme-aware-border {
  border-color: var(--border-color);
}

/* High Contrast Button Styles */
.btn-high-contrast {
  font-weight: 600;
  border-width: 2px;
  border-style: solid;
}

.btn-primary-contrast {
  background: var(--color-primary);
  color: var(--color-text-reverse);
  border-color: var(--color-primary);
}

.btn-primary-contrast:hover,
.btn-primary-contrast:focus {
  background: var(--color-primary);
  color: var(--color-text-reverse);
  border-color: var(--color-primary);
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-secondary-contrast {
  background: var(--color-secondary);
  color: var(--color-text);
  border-color: var(--color-secondary);
}

.btn-secondary-contrast:hover,
.btn-secondary-contrast:focus {
  background: var(--color-secondary);
  color: var(--color-text);
  border-color: var(--color-secondary);
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* Card and Surface Styles */
.card-theme {
  background: var(--neutral);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

/* Input and Form Styles */
.form-control-theme {
  background: var(--neutral);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.form-control-theme:focus {
  background: var(--neutral);
  color: var(--text-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(1, 55, 125, 0.25);
}

/* ========================================================================= */
/* NEW SECTIONS STYLES - Enhancement Update */
/* ========================================================================= */

/* Trust Badges Section */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--neutral);
  border-radius: 10px;
  transition: var(--transition);
  border: 2px solid var(--black);
}

.trust-badge:hover {
  transform: scale(1.1);
}

.trust-badge .badge-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-badge .badge-content h6 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.trust-badge .badge-content p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}



.product-card {
  background: var(--neutral);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid var(--color-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--color-primary);
}

.product-card.featured {
  border-color: var(--color-primary);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
}

.product-header {
  background: var(--color-primary);
  padding: 2rem 1.5rem;
  text-align: center;
  color: white;
}

.product-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 2rem;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-specs {
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(---neutral);
  border-radius: 8px;
  transition: var(--transition);
}

.spec-item:hover {
  background: var(--color-primary);
  color: white;
  transform: translateX(5px);
}

.spec-item i {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.spec-item:hover i {
  color: white;
}

.spec-item span {
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-support {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--color-highlight-light);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

.product-support h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

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

.product-support ul li {
  padding: 0.5rem 0;
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.product-support ul li i {
  color: var(--color-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.product-cta {
  margin-top: auto;
}

.product-cta .btn {
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
}

.product-cta .btn:hover {
  transform: scale(1.02);
}

/* Support Policy Card */
.support-policy-card {
  background: var(--neutral);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--color-border);
}

.support-policy-card h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.policy-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--neutral);
  border-radius: 10px;
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--black);
}

.policy-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-light);
  background: var(--color-primary);
  color: white;
}

.policy-item:hover p,
.policy-item:hover h5 {
  color: white;
}

.policy-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 50%;
  color: white;
  font-size: 1.8rem;
}

.policy-item:hover .policy-icon {
  background: white;
  color: var(--color-primary);
}

.policy-item h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.policy-item p {
  font-size: 0.9rem;
  margin: 0;
}

.testimonial-card {
  background: var(--neutral);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid var(--color-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--color-primary);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
}

.customer-info {
  flex: 1;
}

.customer-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}

.customer-location {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.rating {
  color: #ffd700;
  font-size: 0.9rem;
}

.testimonial-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  font-size: 2rem;
  color: var(--color-primary);
  opacity: 0.2;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 1rem;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: auto;
}

.time-badge {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  padding: 0.25rem 0.5rem;
  background: var(--neutral);
  border-radius: 15px;
}

/* Success Stats */
.success-stats {
  background: var(--neutral);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--color-border);
}

.success-stats h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.stat-item {
  padding: 1.5rem;
  background: var(--neutral);
  border-radius: 10px;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-light);
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  text-align: center;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
}

.stat-number .counter {
  display: inline-block !important;
  line-height: 1.2;
  min-width: 1ch;
  opacity: 1 !important;
  visibility: visible !important;
  color: inherit;
}

.stat-number .counter-suffix {
  display: inline-block !important;
  line-height: 1.2;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  opacity: 1 !important;
  visibility: visible !important;
}

.stat-item:hover .stat-number {
  color: white;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.stat-item:hover .stat-label {
  color: white;
}



.cta-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: var(--transition);
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(40, 167, 69, 0.6);
  color: white;
}

.cta-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 1.2rem;
  flex-shrink: 0;
  animation: pulse-icon 2s infinite;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-label {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.cta-hotline {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.cta-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 100%;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
  animation: pulse-effect 2s infinite;
  pointer-events: none;
}

/* Enhancement: Commitment & Legal Items in About Section */
.commitment-box {
  background: var(--neutral);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--color-primary);
}

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

.commitment-list li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.commitment-list li i {
  font-size: 1.1rem;
  margin-top: 2px;
}

.legal-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--neutral);
  border-radius: 10px;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--color-primary);
}

.legal-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}

.legal-item i {
  font-size: 2rem;
  display: block;
  color: var(--color-text);
}

.legal-item h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.legal-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}
