/* Custom Styles for Multi-Reno BV */

:root {
  --primary-color: #1e2229; /* Dark Anthracite */
  --secondary-color: #2c313c; /* Medium Anthracite */
  --accent-color: #ffc107; /* Construction Yellow */
  --accent-hover: #e0a800; /* Darker Yellow */
  --text-dark: #212529;
  --text-light: #f8f9fa;
  --muted-light: #495057;
  --card-bg-light: #ffffff;
  --border-radius: 8px;
  --transition-speed: 0.3s;
}

/* Body and global styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: #f4f6f9;
  overflow-x: hidden;
}

/* Navbar customizations */
.navbar {
  background-color: var(--primary-color) !important;
  border-bottom: 3px solid var(--accent-color);
  transition: all var(--transition-speed);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: 1px;
}

.navbar-brand span {
  color: var(--accent-color);
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin: 0 5px;
  transition: color var(--transition-speed);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(30, 34, 41, 0.80), rgba(30, 34, 41, 0.90)), url('../images/hero_banner_00004_.webp') no-repeat center center;
  background-size: cover;
  padding: 120px 0 100px 0;
  color: var(--text-light);
  border-bottom: 5px solid var(--accent-color);
}

.hero-badge {
  background-color: rgba(255, 193, 7, 0.2);
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.hero-title {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.2;
}

.hero-title span {
  color: var(--accent-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #d1d5db;
  margin-bottom: 30px;
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--primary-color) !important;
  font-weight: 700;
  border: 2px solid var(--accent-color);
  padding: 12px 30px;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed);
}

.btn-accent:hover {
  background-color: transparent;
  color: var(--accent-color) !important;
}

.btn-outline-light-custom {
  background-color: transparent;
  color: var(--text-light) !important;
  font-weight: 600;
  border: 2px solid var(--text-light);
  padding: 12px 30px;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed);
}

.btn-outline-light-custom:hover {
  background-color: var(--text-light);
  color: var(--primary-color) !important;
}

/* Stats Section */
.stats-section {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 40px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border-radius: var(--border-radius);
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0;
}

.stat-label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Section Common Styling */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  color: var(--muted-light);
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Card Styles */
.service-card {
  background-color: var(--card-bg-light);
  border: none;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-speed);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img-container {
  height: 200px;
  background-color: var(--secondary-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-img-placeholder {
  color: rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 20px;
  transition: all var(--transition-speed);
}

.service-card:hover .service-img-placeholder {
  transform: scale(1.1);
  color: var(--accent-color);
}

.service-icon-floating {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-weight: bold;
  z-index: 5;
}

.service-body {
  padding: 30px 25px 25px 25px;
  flex-grow: 1;
}

.service-card-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.service-card-text {
  color: var(--muted-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About Section Quick Highlights */
.about-section {
  background-color: #ffffff;
}

.about-feature {
  display: flex;
  margin-bottom: 25px;
}

.about-feature-icon {
  background-color: var(--primary-color);
  color: var(--accent-color);
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.about-feature-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Contact Info Section */
.contact-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-top: 5px solid var(--accent-color);
}

.contact-section .section-title {
  color: var(--text-light);
}

.contact-card {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 30px;
  height: 100%;
  border-left: 4px solid var(--accent-color);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.contact-text h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text-light);
}

.contact-text p, .contact-text a {
  color: #adb5bd;
  margin-bottom: 0;
  text-decoration: none;
}

.contact-text a:hover {
  color: var(--accent-color);
}

/* Footer Section */
footer {
  background-color: #12151a;
  color: #6c757d;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color var(--transition-speed);
}

footer a:hover {
  color: var(--accent-color);
}

/* Form Styles */
.form-control {
  border-radius: var(--border-radius);
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  color: var(--text-light);
  box-shadow: none;
}

textarea.form-control {
  min-height: 120px;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #adb5bd;
}

/* Utility classes */
.text-accent {
  color: var(--accent-color) !important;
}

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

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

.bg-anthracite-medium {
  background-color: var(--secondary-color) !important;
}

/* SVG icons styling for responsive flexbility */
.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

/* Better text-muted readability in dark sections */
.bg-anthracite-dark .text-muted,
.bg-anthracite-medium .text-muted,
.contact-section .text-muted,
.hero-section .text-muted {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Custom styles for map iframe container */
.map-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  display: block;
}
