/* ================================================
   LAMBANO - Modern Design Enhancements
   Keeping the red/burgundy theme (#bf4e4d)
   ================================================ */

/* ===== TYPOGRAPHY IMPROVEMENTS ===== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  line-height: 1.7;
  color: #4a4a4a;
}

/* ===== MODERN BUTTON STYLES ===== */
.theme-btn {
  position: relative;
  overflow: hidden;
  border-radius: 8px !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(191, 78, 77, 0.2);
}

.theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(191, 78, 77, 0.35);
}

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

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

/* ===== MODERN CARD DESIGNS ===== */
.feature-block-one .inner-box,
.service-block-one .inner-box {
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-block-one .inner-box:hover,
.service-block-one .inner-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(191, 78, 77, 0.2);
}

/* ===== ICON BOXES - MODERN STYLE ===== */
.feature-block-one .inner-box .icon-box,
.service-block-one .inner-box .icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(191, 78, 77, 0.1) 0%, rgba(191, 78, 77, 0.05) 100%);
  border-radius: 16px;
  margin: 0 auto 25px;
  transition: all 0.4s;
  position: relative;
}

.feature-block-one .inner-box .icon-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--theme-color), transparent);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.feature-block-one .inner-box:hover .icon-box::before {
  opacity: 1;
}

.feature-block-one .inner-box:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(191, 78, 77, 0.15) 0%, rgba(191, 78, 77, 0.08) 100%);
}

/* ===== IMAGE IMPROVEMENTS ===== */
.service-block-one .image-box img,
.feature-block-one .image-box img,
.about-section .image-box img {
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-block-one:hover .image-box img,
.feature-block-one:hover .image-box img {
  transform: scale(1.05);
}

/* ===== SECTION TITLES - MODERN ===== */
.sec-title .sub-title {
  position: relative;
  padding-left: 60px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
}

.sec-title .sub-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 2px;
  background: linear-gradient(90deg, var(--theme-color), transparent);
}

.sec-title h2 {
  position: relative;
  padding-bottom: 20px;
}

.sec-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--theme-color);
  border-radius: 2px;
}

.sec-title.centred h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ===== MODERN SHADOWS & DEPTH ===== */
.auto-container {
  position: relative;
}

.pattern-layer {
  opacity: 0.03;
  filter: blur(1px);
}

/* ===== HEADER IMPROVEMENTS ===== */
.header-lower {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.sticky-header {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* ===== NAVIGATION - MODERN ===== */
.main-menu .navigation > li > a {
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  position: relative;
}

.main-menu .navigation > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--theme-color);
  transition: transform 0.3s;
}

.main-menu .navigation > li:hover > a::after,
.main-menu .navigation > li.current > a::after {
  transform: translateX(-50%) scaleX(1);
}

/* ===== DROPDOWN MENUS - MODERN ===== */
.main-menu .navigation > li > ul {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: none;
  padding: 10px 0;
  overflow: hidden;
}

.main-menu .navigation > li > ul > li {
  transition: all 0.3s;
}

.main-menu .navigation > li > ul > li:hover {
  background: rgba(191, 78, 77, 0.05);
  padding-left: 35px;
}

/* ===== BANNER/HERO - MODERN ===== */
.banner-section .slide-item:before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(191, 78, 77, 0.3) 100%);
}

.banner-section .content-box h2 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* ===== ABOUT SECTION - MODERN LAYOUT ===== */
.about-section .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.about-section .image-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(191, 78, 77, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.about-section .image-box:hover::after {
  opacity: 1;
}

/* ===== STATS/COUNTERS - MODERN ===== */
.funfact-block-one .inner-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
  padding: 35px 25px;
}

.funfact-block-one .inner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(191, 78, 77, 0.2);
}

.funfact-block-one .count-outer {
  background: linear-gradient(135deg, var(--theme-color), #d45d5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SERVICE CARDS - MODERN GRID ===== */
.service-section .row {
  gap: 30px;
}

/* ===== CTA SECTION - MODERN ===== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(191, 78, 77, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
  z-index: 1;
}

.cta-section .auto-container {
  position: relative;
  z-index: 2;
}

/* ===== FORM INPUTS - MODERN ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  transition: all 0.3s;
  font-size: 15px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 4px rgba(191, 78, 77, 0.1);
  outline: none;
}

/* ===== SCROLLBAR - MODERN ===== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a04342;
}

/* ===== MODERN ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

/* ===== LINK BOXES - MODERN ===== */
.link-box a {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.link-box a::after {
  content: '→';
  margin-left: 5px;
  transition: margin-left 0.3s;
}

.link-box a:hover::after {
  margin-left: 10px;
}

/* ===== BREADCRUMB - MODERN ===== */
.page-title {
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(191, 78, 77, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
  z-index: 1;
}

.page-title .auto-container {
  position: relative;
  z-index: 2;
}

/* ===== GLASSMORPHISM EFFECTS ===== */
.support-box,
.counter-box {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

/* ===== MODERN TRANSITIONS ===== */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

a, button, .theme-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== IMAGE OVERLAYS - MODERN ===== */
.image-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
  pointer-events: none;
}

.image-box:hover::before {
  opacity: 1;
}

/* ===== SECTION SPACING - MODERN ===== */
section {
  position: relative;
  overflow: hidden;
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 767px) {
  .theme-btn {
    border-radius: 6px !important;
  }
  
  .feature-block-one .inner-box,
  .service-block-one .inner-box {
    border-radius: 10px;
  }
  
  .sec-title .sub-title {
    padding-left: 45px;
    font-size: 12px;
  }
  
  .sec-title .sub-title::before {
    width: 35px;
  }
}
