:root {
  /* Colors */
  --primary-color: #8b3342; /* Deep Red from Logo */
  --primary-hover: #a13d4e;
  --secondary-color: #f8f9fa;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --accent-color: #d1b48c; /* Subtle gold/tan for accents */

  /* Typography */
  --font-main: "Rubik", sans-serif;
  --font-serif: "Crimson Text", serif;

  /* Effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
}

/* Global Modernizations */
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.probootstrap-heading {
  font-family: var(--font-serif);
}

.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  border-radius: 4px !important;
  transition: var(--transition-normal) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Modern Card Styling */
.probootstrap-room {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  background: #fff;
  margin-bottom: 20px;
}

.probootstrap-block-image-text {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  background: #fff;
}

.probootstrap-room:hover,
.probootstrap-block-image-text:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Equal Height Flexbox */
.display-flex {
  display: flex !important;
  flex-wrap: wrap !important;
}

.height-100-percent {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.probootstrap-block-image-text .text {
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.probootstrap-block-image-text .text p:last-child {
  margin-top: auto !important;
}

/* Logo Fix & Refinement */
.probootstrap-logo img {
  max-width: 100%;
  height: auto;
  transition: var(--transition-fast);
}

.probootstrap-header.scrolled .probootstrap-logo img {
  transform: scale(0.9);
}

/* WhatsApp & Phone Button Refinement */
.mobil-whatsapp,
.mobil-tel {
  z-index: 1000;
  transition: var(--transition-normal);
}

.mobil-whatsapp-icon,
.mobil-tel-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  font-size: 24px !important;
  backdrop-filter: blur(4px);
}

.mobil-whatsapp-icon {
  background-color: rgba(37, 211, 102, 0.9) !important;
}

.mobil-tel-icon {
  background-color: rgba(0, 123, 255, 0.9) !important;
}

.mobil-whatsapp:hover,
.mobil-tel:hover {
  transform: scale(1.1);
}

/* Navigation Refinement */
.probootstrap-nav .probootstrap-main-nav li a {
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  color: var(--text-light);
}

.probootstrap-nav .probootstrap-main-nav li.active a {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.probootstrap-nav .probootstrap-main-nav li a:hover {
  color: var(--primary-color);
}

/* Slider Typography */
.probootstrap-slider-text h1 {
  font-size: 4rem;
  letter-spacing: 2px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.probootstrap-slider-text .probootstrap-sub-wrap {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Service Icons */
.service .icon i {
  color: var(--primary-color);
  font-size: 2.5rem;
}

/* Footer Improvements */
.probootstrap-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
}

.probootstrap-footer h3 {
  color: #fff;
  margin-bottom: var(--spacing-md);
}

.probootstrap-footer-widget .probootstrap-contact-info li i {
  color: var(--primary-color);
}

/* Custom Overrides for legacy Gulp styles */
.navbar-brand,
.probootstrap-logo {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

/* Mobile Icon positioning fix */
.mobil-tel,
.mobil-whatsapp {
  position: fixed !important;
  bottom: 25px !important;
  width: 60px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 99999 !important; /* Higher z-index */
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
}

.mobil-tel {
  left: 20px !important;
}

.mobil-whatsapp {
  right: 20px !important;
}

.mobil-whatsapp-icon,
.mobil-tel-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  font-size: 28px !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  line-height: normal !important;
}

.mobil-whatsapp-icon {
  background-color: #25d366 !important;
}

.mobil-tel-icon {
  background-color: #007bff !important;
}

.mobil-whatsapp-icon:hover,
.mobil-tel-icon:hover {
  transform: scale(1.1) !important;
  color: #fff !important;
  opacity: 0.9 !important;
}

/* Layout Utilities */
.display-flex {
  display: flex !important;
  flex-wrap: wrap !important;
}

.height-100-percent {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.probootstrap-block-image-text .text {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 30px !important;
}

.probootstrap-block-image-text .text p:last-child {
  margin-top: auto !important;
  padding-top: 15px;
}

/* Video adjustments */
/* Image Consistency */
.probootstrap-block-image-text figure img {
  width: 100% !important;
  height: 250px !important;
  object-fit: cover !important;
}

/* Contact Page Cards */
.contact-card {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  text-decoration: none !important;
}

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

.contact-card i {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-card h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: var(--text-dark);
}

.contact-card p {
  font-size: 14px;
  margin: 0;
  color: var(--text-light);
}

.contact-card.whatsapp i {
  color: #25d366;
}
.contact-card.phone i {
  color: #007bff;
}
.contact-card.location i {
  color: #ff4757;
}

/* Ensure font icons are visible */
.mobil-whatsapp-icon i,
.mobil-tel-icon i {
  display: inline-block !important;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
