/* ===== OBL House Lifting Services - Custom Styles ===== */

:root {
  --obl-orange: #e8590c;
  --obl-orange-dark: #c94f0e;
  --obl-navy: #1b2838;
  --obl-navy-dark: #10181f;
  --obl-gray: #f5f6f8;
}

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: #2b2b2b;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

.section-pad {
  padding: 60px 0;
}

.bg-obl-navy {
  background-color: var(--obl-navy);
}

.bg-obl-gray {
  background-color: var(--obl-gray);
}

.text-obl-orange {
  color: var(--obl-orange) !important;
}

.btn-obl {
  background-color: var(--obl-orange);
  border-color: var(--obl-orange);
  color: #fff;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 4px;
  transition: all .2s ease-in-out;
}

.btn-obl:hover {
  background-color: var(--obl-orange-dark);
  border-color: var(--obl-orange-dark);
  color: #fff;
}

.btn-outline-obl {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 4px;
}

.btn-outline-obl:hover {
  background-color: #fff;
  color: var(--obl-navy);
}

/* Top bar */
.top-bar {
  background-color: var(--obl-navy-dark);
  color: #d9dee3;
  font-size: .85rem;
  padding: 6px 0;
}

.top-bar a {
  color: #d9dee3;
}

.top-bar a:hover {
  color: var(--obl-orange);
}

/* Navbar */
.navbar-brand img {
  height: 55px;
}

.navbar-obl {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-obl .nav-link {
  color: var(--obl-navy);
  font-weight: 600;
  font-size: .92rem;
  text-transform: uppercase;
  padding: 10px 14px !important;
}

.navbar-obl .nav-link:hover,
.navbar-obl .nav-link.active {
  color: var(--obl-orange);
}

.navbar-obl .dropdown-menu {
  border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.navbar-obl .dropdown-item {
  font-size: .88rem;
  padding: 8px 18px;
}

.navbar-obl .dropdown-item:hover {
  background-color: var(--obl-orange);
  color: #fff;
}

.nav-call-btn {
  background-color: var(--obl-orange);
  color: #fff !important;
  border-radius: 4px;
  padding: 10px 20px !important;
  font-weight: 700;
}

.nav-call-btn:hover {
  background-color: var(--obl-orange-dark);
  color: #fff !important;
}

/* Hero / Carousel */
.hero-carousel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  z-index: 5;
}

.hero-caption h1 {
  font-size: 2.6rem;
  text-shadow: 1px 2px 6px rgba(0,0,0,.6);
}

.hero-caption p.lead {
  max-width: 780px;
  margin: 0 auto 25px;
  text-shadow: 1px 1px 4px rgba(0,0,0,.6);
}

@media (max-width: 768px) {
  .hero-carousel img { height: 380px; }
  .hero-caption h1 { font-size: 1.6rem; }
}

/* Page header (interior pages) */
.page-header {
  background: linear-gradient(rgba(16,24,31,.75), rgba(16,24,31,.75)), url('../img/site-photo-3.jpg') center/cover no-repeat;
  padding: 70px 0;
  color: #fff;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.breadcrumb-obl a {
  color: #d9dee3;
}

.breadcrumb-obl a:hover {
  color: var(--obl-orange);
}

/* Service / feature cards */
.service-card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  transition: transform .2s ease-in-out;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card .icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(232,89,12,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--obl-orange);
  margin-bottom: 18px;
}

/* Stats strip */
.stats-strip {
  background-color: var(--obl-orange);
  color: #fff;
  padding: 35px 0;
}

.stats-strip h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0;
}

.stats-strip span {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.video-box {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  margin-bottom: 30px;
}

.video-box video {
  width: 100%;
  display: block;
  background: #000;
}

/* Footer */
footer.site-footer {
  background-color: var(--obl-navy-dark);
  color: #b9c2cb;
  padding-top: 50px;
}

footer.site-footer h5 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

footer.site-footer a {
  color: #b9c2cb;
}

footer.site-footer a:hover {
  color: var(--obl-orange);
}

footer.site-footer .social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.08);
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 1rem;
}

footer.site-footer .social-icons a:hover {
  background-color: var(--obl-orange);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 30px;
  padding: 18px 0;
  font-size: .85rem;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  z-index: 999;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
}

/* Contact page */
.contact-info-card {
  background-color: var(--obl-navy);
  color: #fff;
  border-radius: 8px;
  padding: 40px 30px;
}

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

.contact-info-card .info-item i {
  font-size: 1.4rem;
  color: var(--obl-orange);
  margin-right: 16px;
  margin-top: 3px;
}

.contact-form-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  padding: 40px 30px;
}

.form-control:focus {
  border-color: var(--obl-orange);
  box-shadow: 0 0 0 .2rem rgba(232,89,12,.18);
}

#formAlert {
  display: none;
}

.map-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 1060;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.9);
  align-items: center;
  justify-content: center;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
}
