@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/*===== Pre CSS =====*/
body{ margin: 0; padding: 0; font-size: 14px; font-weight: normal; color: #ccc;  font-family: "Inter", sans-serif; background: #0d0d0d;  }
p, a, span, table,th, tr, td,ul, ol, li{margin: 0; padding: 0; font-family: "Inter", sans-serif;}
h1,h2, h3, h4, h5, h6, img{ margin: 0; padding: 0;  font-family: "Playfair Display", serif; }

.transition{transition: all linear 0.4s;}
/*===== Go To Top Section =====*/
#back-top { display: block; position: fixed; bottom: 15px; right: 14px; text-align: center; z-index: 99999; }
#back-top a { display: block; text-decoration: none;  }
#back-top a .fa{ width: 40px; height: 40px; padding-top: 10px; font-size: 18px; border-radius: 5px; opacity: 1; color: #fff; background: #000; border: #fff solid 1px; transition: all linear 0.3s; }
#back-top a .fa:hover{ background: #fff; color: #000; border-color: #000; transform: scale(1.05,1.05);  }

/* ========preloader========= */
.flex-center {  display: -webkit-box;  display: -ms-flexbox;  display: flex;justify-content: center;}
.preloader {  position: fixed;  top: 0;  left: 0;  overflow: hidden;  width: 100vw;  height: 100vh;  background: #fff;  z-index: 9999999999999999999999999999999;}
.loader-gif  {width: 100%;height: 100%;display: flex;justify-content: center;align-items: center;flex-direction: column;}
 .loader-gif img{width:10vw;height: auto;transform: rotate(00deg);width: 25%;filter: brightness(0) saturate(100%) invert(70%) sepia(82%) saturate(2819%) hue-rotate(3deg) brightness(108%) contrast(101%);}
.loader-gif h4{color: #00ABDF; font-size: 50px;line-height: 25px; font-weight: 400; font-family: "Inter", sans-serif; margin-left: 20px;}

/*===== Mobile Menu =====*/
/* ============================================================
   MOBILE MENU — Redesigned Sidebar
   Only affects screens ≤ 1025px (matches existing breakpoint)
   Desktop (.header) is untouched.
   ============================================================ */

.mobile_menu {
  display: none;
}

/* ── Top bar (logo + hamburger) ── */
.menu_icon_box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  padding: 0 20px;
  background: #0a0a0a;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  box-sizing: border-box;
}

.mobile_menu .logo {
  display: flex;
  align-items: center;
}

.mobile_menu .logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* ── Hamburger icon ── */
.menu_icon {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px;
  box-sizing: border-box;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.menu_icon:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}

.menu_icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.35s cubic-bezier(.77,0,.175,1),
              opacity   0.25s ease,
              width     0.3s ease;
  transform-origin: center;
}

/* Morph to × when active */
.menu_icon.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu_icon.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu_icon.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Dark overlay ── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 99990;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* ── Sidebar panel (slides in from right) ── */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85%, 340px);
  height: 100%;
  z-index: 99999;
  background: #111;
  box-shadow: -6px 0 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-sizing: border-box;
  transition: right 0.4s cubic-bezier(.77,0,.175,1);
}

.sidebar.active {
  right: 0;
}

/* ── Sidebar inner header ── */
.sidebar-inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.sidebar-inner-header .sidebar-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.sidebar-close-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.sidebar-close-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

/* ── Nav links ── */
.tab_section {
  padding: 20px 16px;
  flex: 1;
}

.sidebar ul.accordion {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Staggered entrance animation */
.sidebar.active ul.accordion li {
  animation: sidebarItemIn 0.4s ease both;
}
.sidebar.active ul.accordion li:nth-child(1) { animation-delay: 0.08s; }
.sidebar.active ul.accordion li:nth-child(2) { animation-delay: 0.14s; }
.sidebar.active ul.accordion li:nth-child(3) { animation-delay: 0.20s; }
.sidebar.active ul.accordion li:nth-child(4) { animation-delay: 0.26s; }
.sidebar.active ul.accordion li:nth-child(5) { animation-delay: 0.32s; }
.sidebar.active ul.accordion li:nth-child(6) { animation-delay: 0.38s; }

@keyframes sidebarItemIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.sidebar ul li {
  list-style: none;
}

.sidebar ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 13px 16px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.sidebar ul li a::after {
  content: '›';
  margin-left: auto;
  font-size: 18px;
  opacity: 0.35;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sidebar ul li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateX(3px);
}

.sidebar ul li a:hover::after {
  transform: translateX(3px);
  opacity: 0.7;
}

.sidebar ul li.active a {
  color: #fff;
  background: rgba(150,19,19,0.35);
  border-color: rgba(150,19,19,0.6);
}

.sidebar ul li.active a::after {
  opacity: 0.8;
}

/* BOOK NOW — last item CTA */
.sidebar ul li:last-child a {
  margin-top: 10px;
  background: #961313;
  border-color: #961313;
  color: #fff;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 20px rgba(150,19,19,0.4);
}

.sidebar ul li:last-child a::after {
  display: none;
}

.sidebar ul li:last-child a:hover {
  background: #b81818;
  border-color: #b81818;
  transform: translateY(-1px);
  box-shadow: 0 6px 26px rgba(150,19,19,0.55);
}

/* ── Sidebar footer ── */
.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.sidebar-footer p {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  margin: 0;
  letter-spacing: 0.04em;
}

/* Legacy / unused */
.mobile_slideLogo { display: none; }
 
/*-- Modern Social Media Icon Display --*/
.social_media_block{ display: block; position: fixed; bottom: 15px; left: 15px; z-index: 999; }
.share_icon .fa-solid{ position: absolute; left: 0; bottom: 0; z-index: 2; cursor: pointer; width: 52px; height: 52px; border-radius: 50%; background: #000; color: #fff; font-size: 24px; text-align: center; padding: 14px 0 0 0; transition: all linear 0.3s; }
.share_icon .fa-solid:hover{ transform: rotate(360deg); color: #fff; backdrop-filter: blur(4px);background: rgba(255, 255, 255, 0.9); }
.social_icon{ position: relative; overflow-y: hidden; border-bottom-left-radius: 52px; border-bottom-right-radius: 52px; transition: all linear 0.3s; }
.social_icon.active{ padding-top: 52px; }
.social_icon ul{ position: relative; display: block; text-align: center; transform: translateY(100%); transition: all linear 0.3s; }
.social_icon.active ul{ transform: translateY(-52px); }
.social_icon ul li{ list-style: none; }
.social_icon ul li .fa-brands{ width: 50px; height: 50px; border-radius: 50%; border: none; background: #0e59a9; color: #fff; font-size: 24px; text-align: center; padding: 13px 0px 0 0; transition: all linear 0.3s; }
.social_icon ul li .fa-brands:hover{ transform: rotate(360deg); }
.social_icon ul li:nth-child(1) .fa-brands{ background: #3d5a96; color: #fff; }
.social_icon ul li:nth-child(2) .fa-brands{ background: #2aa3ef; color: #fff; }
.social_icon ul li:nth-child(3) .fa-brands{ background-image: linear-gradient(#8221b3, #c22268, #db8a40); color: #fff; }

/*===== Common Section =====*/
.section-title{ margin-bottom: 50px; text-align: left; }

.section-title h4{ color:#0173E5; font-family: "Inter", sans-serif;font-weight: 600;letter-spacing: 0.05em;font-size: 15px;text-transform: uppercase;margin-bottom:18px; }
.section-title h2{font-family: "Playfair Display", serif; font-size: 60px; margin: 10px 0; }
.section-title h2 span{color: rgba(241, 105, 59, 1);}
.section-title span{color: #A01020; text-transform: uppercase;}
.section-title p{ font-size: 17px;line-height: 28px; color: #575757;}

/*========common button==========*/
.home-page-link {margin-top: 40px;}
.home-page-link a{display: inline-block; transition: all linear 0.3s;color: #fff;background: linear-gradient(135deg, #9f041b, #e32400); padding: 12px 31px; text-decoration: none; border-radius: 5px; font-size: 17px; border: 2px solid #8f1919;}


/* Wrapper */
.wrapper{ margin: 0; padding: 0; overflow: hidden; }
.transition{ transition: all linear 0.3s; }

/*===== Header Section =====*/
.header{padding: 5px 0; position: fixed; top: 0; width: 100%; z-index: 9999; left: 0;background: transparent;transition: background 0.3s ease, box-shadow 0.3s ease;}
.header.sticky { background: rgba(0,0,0,0.95); box-shadow: 0 2px 20px rgba(0,0,0,0.5);}
.header-page{ background: rgba(0,0,0,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.5);}

/* .header-middle{ padding: 60px 0; } */
.logo  img{width:100%;max-width:140px;}
.logo a {font-size: 24px;line-height: 32px;font-weight: 700;text-decoration: none;color: #fff; transition: all linear 0.3s}
.logo a span{color: #fff; transition: all linear 0.3s}
.header.sticky .logo a,.header-page .logo a{color: #fff;}
.header.sticky a span,.header-page a span{color: #c0392b;}
.header-middle .row{align-items: center;}

.navbar .navbar-nav{display: flex; flex-direction: row; align-items: center; gap: 40px;}
.navbar .navbar-nav > li{ display: inline-block; list-style: none; float: none; padding: 0; }
.navbar .navbar-nav > li > a{ position: relative; display: inline-block; padding: 0; margin: 0px 13px; border: none;  background: transparent;font-family: "Inter", sans-serif;color: #fff; font-size: 14px;line-height: normal; text-align: center; text-decoration: none; text-transform: uppercase;transition: all linear 0.3s; }
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:focus,
.navbar .navbar-nav > .active > a,
.navbar .navbar-nav > .active > a:hover,
.navbar .navbar-nav > .active > a:focus,
.navbar .navbar-nav > .open > a:hover,
.navbar .navbar-nav > .open > a:focus,
.navbar .navbar-nav > .open > a{ color: #c0392b; background: transparent; }

.header.sticky .navbar .navbar-nav > li > a,.header-page .navbar .navbar-nav > li > a{color: #fff;}

.navbar .navbar-nav > li a:hover::before,
.navbar .navbar-nav > li > a:focus::before,
.navbar .navbar-nav > .active > a::before,
.navbar .navbar-nav > .open > a:hover::before,
.navbar .navbar-nav > .open > a:focus::before{width: 100%;}

.navbar .navbar-nav > li:last-child > a,.header.sticky .navbar .navbar-nav > li:last-child > a{background: linear-gradient(135deg, #9f041b, #e32400); color: #fff;padding: 14px 32px;font-size: 14px;border-radius: 2px;margin-right: 0;}
/*.navbar .navbar-nav > li:nth-child(7) > a{margin-left: 40px;}*/

/* Dropdown Menu */
.navbar .navbar-nav > li .serv_dropdown_menu{ display: none; position: absolute; z-index: 999999; border-top: transparent solid 27px; background: transparent; top: 20px; margin-left: 0; width: 270px; overflow-x: hidden; transition: all linear 0.3s; }
.navbar .navbar-nav > li .serv_dropdown_menu li{ display: block; width: 100%; list-style: none; text-align: left; margin: 0; }
.navbar .navbar-nav > li .serv_dropdown_menu li a{ display: block; padding: 10px 15px; text-align: left; font-size: 16px; font-weight: 400; text-decoration: none; backdrop-filter: blur(4px);background: rgba(255, 255, 255, 0.9); color: #fff; border-top: rgba(255, 255, 255, 0.2) solid 1px; border-radius: 0; transition: all linear 0.3s; }
.navbar .navbar-nav > li .serv_dropdown_menu li a:hover{ padding-left: 20px; color: #fff; background: #000; }
.navbar .navbar-nav > li .serv_dropdown_menu li a .fa{ float: none; margin-right: 5px; font-size: 14px; }
.navbar .navbar-nav > li  a .fa-angle-down{margin-left: 10px;}


/* My Own Custom Dropdown Animation */
.navbar .navbar-nav > li:hover .serv_dropdown_menu{ display: block; animation: slide-up .5s ease-out; }
.navbar .navbar-nav > li:hover .serv_dropdown_menu_second_level{ display: block; animation: slide-right .5s ease-out; }
@keyframes slide-up {
      0% { opacity: 0; transform: translateY(15%); }   
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes slide-right {
      0% { opacity: 0; transform: translateX(15%); }   
    100% { opacity: 1; transform: translateX(0); }
}


/*===== Banners Section =====*/
.banner{ position: relative;padding: 130px 0px;background: url('../imgs/home/banner.jpg')no-repeat top;background-size: cover;padding-top: 200px;}
.banner-content-box{color: #fff;text-align: center;}
.banner-badge span{font-size: 13px;line-height: 26px; text-transform: uppercase; color: #c7170b;}
.banner-content-box h1{ font-size: 90px;line-height: 90px;margin:15px 0 25px; }
.banner-content-box h1 span{display: block;color:#c7170b; font-family: "Playfair Display", serif;}
.banner-content-box p{color: #adadadf2; font-size: 16px;line-height: 32px;}
.banner .home-page-link{margin: 50px 0;}
.banner .home-page-link a:last-child{background: transparent;color: #fff;margin-left: 16px;border: 2px solid #ff1616;}
.banner .home-page-link a:first-child:hover{background-color: #DE653F;}
.banner .home-page-link a:last-child:hover{background-color: #9F041B; color: #ffffff; border: 2px solid #9F041B;}
.banner-below { width: 100%; padding: 0 15px; margin-top: 5px;}
.banner-bottom{background: #0A0A0A;}
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 30px;
    flex: 1;
    min-width: 180px;
}

.stat-number {
    font-size: 52px;
    color: #9F041B;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 12px;
    color: #757575;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: inherit;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background-color: #9f041b;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-bar {
        flex-wrap: wrap;
        gap: 0;
    }

    .stat-item {
        flex: 1 1 45%;
        padding: 20px 15px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 1 1 100%;
        padding: 15px 10px;
    }
}

.category-slider {
    width: 100%;
    background-color: #a01020;
    overflow: hidden;
    padding: 20px 0;
    white-space: nowrap;
}

.category-track {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    animation: marquee 20s linear infinite;
}

.category-track span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
}

.category-track .dot {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    letter-spacing: 0;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/*===== Services Section =====*/

.services{
      background: #040404;
  color: #ffffff;
  padding: 60px 20px;
}

.acts-section {
  max-width: 1400px;
  margin: 0 auto;
}
 
.acts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
 
/* ── Card ── */
.act-card {
  background: #111111;
  border: 1px solid #1e1e1e;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
 
.act-card:hover {
  border-color: #c0392b;
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(192, 57, 43, 0.25), 0 0 0 1px #c0392b;
}
 
/* ── Image wrapper ── */
.act-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
 
.act-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
  filter: brightness(0.85) saturate(0.9);
}
 
.act-card:hover .act-image img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}
 
/* Red overlay on hover */
.act-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(192, 57, 43, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
 
.act-card:hover .act-image::after {
  opacity: 1;
}
 
/* Emoji icon over image */
.act-emoji {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 32px;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  transition: transform 0.3s ease;
}
 
.act-card:hover .act-emoji {
  transform: scale(1.2) rotate(-5deg);
}
 
/* ── Card body ── */
.act-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #111111;
  transition: background 0.4s ease;
}
 
.act-card:hover .act-body {
  background: #161616;
}
 
.act-title {
  font-family: 'Inter';
  font-size: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
  transition: color 0.3s ease;
}
 
.act-card:hover .act-title {
  color: #ffffff;
}
 
/* Red underline accent */
.act-divider {
  width: 36px;
  height: 2px;
  background: #c0392b;
  margin-bottom: 16px;
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
 
.act-card:hover .act-divider {
  width: 70px;
}
 
.act-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 14.5px;
  font-weight: 300;
  color: #6f6f6f;
  line-height: 1.75;
  flex: 1;
  transition: color 0.3s ease;
}
 
.act-card:hover .act-desc {
  color: #cccccc;
}
 
/* ── Book link ── */
.act-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c0392b;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}
 
.act-link:hover {
  color: #e74c3c;
}
 
.act-card:hover .act-link {
  gap: 14px;
}
 
.act-link-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
 
.act-card:hover .act-link-arrow {
  transform: translateX(4px);
}
 
/* ── Staggered entrance animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.act-card {
  opacity: 0;
  animation: fadeUp 0.65s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
 
.act-card:nth-child(1) { animation-delay: 0.05s; }
.act-card:nth-child(2) { animation-delay: 0.15s; }
.act-card:nth-child(3) { animation-delay: 0.25s; }
.act-card:nth-child(4) { animation-delay: 0.35s; }
.act-card:nth-child(5) { animation-delay: 0.45s; }
.act-card:nth-child(6) { animation-delay: 0.55s; }
 
/* ── Responsive ── */
@media (max-width: 1024px) {
  .acts-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .act-title { font-size: 20px; }
}
 
@media (max-width: 640px) {
  body { padding: 30px 12px; }
  .acts-grid { grid-template-columns: 1fr; gap: 14px; }
  .act-image { height: 200px; }
  .act-body { padding: 20px 20px 24px; }
  .act-title { font-size: 18px; }
  .act-desc { font-size: 13.5px; }
  .act-emoji { font-size: 26px; bottom: 12px; left: 14px; }
  .act-card:hover { transform: none; }
}
 
@media (max-width: 380px) {
  .act-image { height: 180px; }
  .act-title { font-size: 16px; }
}

/*===== Experience Section =====*/


.experiences .experiences-content .home-page-link a{
      border: none;
      padding: 15px 30px;
      font-size: 16px;
}

.experiences {
  background-image: url("../imgs/home/experience.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 100px 0; /* optional spacing */
  color: white;     /* if text needs contrast */
}

.experiences .banner-content-box h1{
  font-size: 80px;
}

/*===== Welcome Section =====*/

.welcome {
      background-color: #0a0a0a;
      padding: 100px 0 20px;
      overflow: hidden;
    }

    .welcome .section-title p{
    font-size: 16px;
  }

    /* ── Left column – image stack ─────────────────────────── */
    .welcome-left {
      position: relative;
    }

    /* Red badge (15+ YEARS) */
    .badge-years {
      position: absolute;
      top: 0;
      left: -10px;
      z-index: 2;
      background: #8b1a14;
      color: #ffffff;
      padding: 22px 28px 20px;
      width: 180px;
      font-family: "Playfair Display", serif;
      line-height: 1.15;
    }
    .badge-years .number {
      display: block;
      font-size: 2.4rem;
      letter-spacing: 1px;
    }
    .badge-years .label {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* Photo frame */
    .welcome-img-wrap {
      position: relative;
      margin-top: 48px;
      margin-left: 30px;
      border: 2px solid #222222;
    }
    .welcome-img-wrap img {
      width: 100%;
      height: 440px;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: brightness(0.92);
    }

    /* Thin red accent line on the left edge */
    .welcome-img-wrap::before {
      content: '';
      position: absolute;
      left: -8px;
      top: 20px;
      bottom: 20px;
      width: 3px;
      background: #c0392b;
    }

    /* ── Right column – text ───────────────────────────────── */
    .section-title {
      padding-left: 16px;
    }

    .section-title .overline {
      display: block;
      font-size: 0.75rem;
      color: #c0392b;
    }

    .welcome .section-title h2 {
      line-height: 1.05;
      color: #ffffff;
      text-transform: uppercase;
      margin: 0 0 20px;
          font-size: 75px;
    }
    .section-title h2 .accent {
      color: #A01020;
      font-family: "Playfair Display", serif;
    }


    /* ── Feature list grid ─────────────────────────────────── */
    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 24px;
      margin: 28px 0 36px;
    }
    .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Lato', sans-serif;
      font-size: 0.88rem;
      font-weight: 400;
      color: #cccccc;
    }
    .feature-item::before {
      content: '';
      flex-shrink: 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #c0392b;
    }

    /* ── CTA button ────────────────────────────────────────── */
    .btn-cta {
      display: inline-block;
      background: #c0392b;
      color: #ffffff;
      font-family: 'Lato', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 16px 40px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.25s ease, transform 0.2s ease;
    }
    .btn-cta:hover {
      background: #96221a;
      color: #ffffff;
      transform: translateY(-2px);
    }

    /* ── Responsive tweaks ─────────────────────────────────── */
    @media (max-width: 768px) {
      .welcome { padding: 60px 0 70px; }
      .welcome-img-wrap { margin-left: 16px; }
      .welcome-img-wrap img { height: 300px; }
      .section-title { padding-left: 0; margin-top: 48px; }
      .features-grid { grid-template-columns: 1fr; }
    }


/*===== Free Estimate Sections =====*/
.home-free-estimate{position: relative; padding: 80px 0px;background: #EAEDF14D; z-index: 1;}
.free-estimate-card{z-index: 1;position: relative;background: #FFFFFF;padding:32px ;margin: 0 auto;border-radius: 8px;box-shadow: 0px 4px 20px -2px #0000001A;} 
.free-estimate-card h2{color: #1A1A1A;font-weight: 700;font-size: 23px;line-height: 36px;letter-spacing: -0.75px;margin-bottom: 30px;}
.free-estimate-card p{color: #666666;margin: 30px 0 24px;text-align: center;  font-weight: 400;font-size: 16px;line-height: 24px;}
.free-estimate-card  label{color: #1A1A1A;font-weight: 500;font-size: 14px;line-height: 20px;margin-bottom: 10px;}
.free-estimate-card .form-control  {  margin-bottom: 30px; background:#FAFAFA;border: 1px solid #E6E6E6; border-radius: 6px;height: 48px;padding:11px 13px;font-family: "Inter", sans-serif;color: #666666; font-weight: 400;font-size: 14px; }
.free-estimate-card .form-control:focus { color:#666666; background-color:#FAFAFA; box-shadow: unset;}
.free-estimate-card .btn-custom{background: #0073E6; color: #ffffff; width: 100%;border-radius: 6px; padding: 11px;font-size: 14px;line-height: 20px;font-weight: 400;font-family: "Inter", sans-serif;margin-top: 30px;}
.free-estimate-card .btn-custom:hover{background: #000000;color: #ffffff;}
.free-estimate-card textarea{min-height: 98px;}
.free-estimate-card a{text-decoration: none;text-align: center;color: #0073E6;font-size: 16px;}
.contact{padding: 25px;border-radius: 12px;background: #FFFFFF;border: 1px solid #DADFE7;box-shadow: 0px 1px 2px 0px #0000000D;}
.contact ul li{margin-bottom: 30px;list-style: none;}
.single-contact{display: flex;gap: 20px;}
.single-contact-icon{height: 48px;width: 48px;border-radius: 12px;background: #0073E61A;display: flex;justify-content: center;align-items: center;}
.single-contact-content h4{color: #1D2530;font-weight: 700;font-size: 15.6px;line-height: 24px;margin-bottom:8px; }
.single-contact-content p{color: #627084;font-weight: 400;font-size: 15.6px;line-height: 24px; }

/*===== Project Gallery Section =====*/
.project{ padding: 50px 0px; background: #0A0A0A; }
.project .section-title h2{ color:#fff }
.project-card {position: relative;margin-bottom: 30px;background: rgba(255, 255, 255, 1);border: 1px solid rgba(218, 223, 231, 1);box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);transition: all linear 0.3s;}
.project-card-image{position: relative;height: 256px;overflow: hidden;}
.project-card-image img{width: 100%;height: 100%; object-fit: cover;transition:  all linear 0.3s;}
.project-card-image span{position: absolute;top: 20px;left: 20px;background: rgba(0, 115, 230, 1);border-radius: 25px;font-size: 16px;padding: 3px 10px; color: #fff;}
.project-card-content{background: #fff;padding: 25px;}
.project-card-content h4{font-family: Inter;color: rgba(29, 37, 48, 1);font-weight: 700;font-size: 19.4px;line-height: 28px;margin-bottom: 10px;}
.project-card-content p{color: rgba(98, 112, 132, 1);font-family: Inter;font-weight: 400;font-size: 14.9px;line-height: 24px;}
.project-card:hover .project-card-image img{transform: scale(1.1);}
.project-card:hover{box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;}

.gallery-page-content ul{ display: flex; flex-wrap: wrap; }
.gallery-page-content ul li{ list-style: none; }
.project-content-item{ position: relative; overflow: hidden; margin-bottom: 30px; }
.project-content-item img{ width: 100%; height: 270px;object-fit: cover; }
.project-content-item a{ position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: flex; justify-content: center; align-items: center;  color: #fff; background: transparent; text-decoration: none; font-size: 30px; font-weight: 700; cursor: pointer; transition: all linear 0.3s; }
.project-content-item a .fa{ position: relative; opacity: 0;  color: #fff;  }
.project-content-item a.overlayer-box{ background: rgba(0,0,0,0.5); }
.project-content-item a:hover{ background: rgba(0,0,0,0.5); }
.project-content-item a:hover .fa{ opacity: 1; }
.project-content-item a.overlayer-box:hover{ background: rgba(0,0,0,0.7); }
.project-content-item a.overlayer-box span{ display: inline-block; padding: 12px 48px; border-radius: 25px; text-decoration: none; background: #D21F1A;border: 1px solid #fff; color: #fff; font-size: 16px;font-weight: 600; font-family: "Nunito", sans-serif; transition: all linear 0.3s; }
.project-content-item a.overlayer-box span:hover{ background: #000; }

.fancybox__container {
    z-index: 99999;
}

/*===== Our Blogs Section =====*/

.blog-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Image */
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */
.blog-content {
    padding: 20px;
    padding-bottom: 35px;
}

.blog-content h3 {
    color: #007bff;
    margin-bottom: 10px;
}
.blog-content p{
    margin-bottom:20px;
}


.read-more-btn {border: none; background: #000; color: #fff; padding: 10px 18px; border-radius: 30px; cursor: pointer; font-size: 0.9rem;text-decoration:none;}
.read-more-btn:hover {    background: #007bff; color: #fff;}

.single-blog-wrapper{padding:80px 0;}
.single-blog-wrapper article p{font-size: 17px;}
.single-blog-wrapper figure{text-align:center;margin-bottom:20px;}
.single-blog-wrapper figure img{width:100%; max-height:500px;object-fit:cover;border-radius:10px; }
.single-blog-wrapper article{box-shadow:none;background:none;}
.single-blog-wrapper article h2{margin:25px 0 11px; font-weight: bold;}
.single-blog-wrapper article .faq-item h3{margin:25px 0 11px;color: #474747; font-size: 20px; font-weight: bold;}
.single-blog-wrapper article .faq-item p{font-size: 18px;}


/*========== Testimonials Page ============*/

.testimonials {
    background-color: #0d0d0d;
    padding: 90px 0 50px;
    overflow: hidden;
}

/* ── Section Title ────────────────────────────── */
.testimonials .section-title {
    margin-bottom: 60px;
}

.testimonials .section-title .overline {
    letter-spacing: 3px;
    color: #c0392b;
    margin-bottom: 16px;
}

.testimonials .section-title h2 {
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 20px;
    letter-spacing: 2px;
}

.testimonials .section-title .title-rule {
    width: 60px;
    height: 3px;
    background: #c0392b;
    margin: 0 auto 20px;
}

.testimonials .section-title p {
    display: none;
}

/* ── Owl Carousel Overrides ───────────────────── */
.testimonials-owl {
    padding-bottom: 50px;
}

/* Dots */
.testimonials-owl .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonials-owl .owl-dot span {
    width: 10px;
    height: 10px;
    background: #444444;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonials-owl .owl-dot.active span,
.testimonials-owl .owl-dot:hover span {
    background: #c0392b;
    transform: scale(1.3);
}

/* Nav arrows */
.testimonials-owl .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-60%);
    pointer-events: none;
}

.testimonials-owl .owl-nav button {
    pointer-events: all;
    position: absolute;
    width: 44px;
    height: 44px;
    background: #1a1a1a !important;
    border: 1px solid #c0392b !important;
    color: #c0392b !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    transition: background 0.25s ease, color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-owl .owl-nav button:hover {
    background: #c0392b !important;
    color: #ffffff !important;
}

.testimonials-owl .owl-nav button.owl-prev {
    left: -22px;
}

.testimonials-owl .owl-nav button.owl-next {
    right: -22px;
}

.testimonials-owl .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonials-owl .owl-item {
    display: flex;
}

/* ── Card ─────────────────────────────────────── */
.testimonials-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 36px 32px 32px;
    width: 100%;
    box-sizing: border-box;
}

/* Quote icon */
.testimonials-card .quote-icon {
    display: block;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: #c0392b;
    margin-bottom: 18px;
    letter-spacing: -4px;
}

/* Stars */
.testimonials-card .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonials-card .stars i {
    color: #c0392b;
    font-size: 1.05rem;
    font-style: normal;
}

/* Quote text */
.testimonials-card p {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 28px;
}

/* Divider */
.testimonials-card .card-divider {
    width: 100%;
    height: 1px;
    background: #2e2e2e;
    margin-bottom: 22px;
}

/* Name */
.testimonials-card h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 6px;
}

/* Role */
.testimonials-card .owner {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: #c0392b;
    letter-spacing: 0.5px;
}

/* ── Read More Link ───────────────────────────── */
.home-page-link {
    margin-top: 50px;
}

.home-page-link a {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #c0392b;
    padding: 14px 36px;
    display: inline-block;
    transition: background 0.25s ease, color 0.25s ease;
}

.home-page-link a:hover {
    background: #c0392b;
    color: #ffffff;
}

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0 70px;
    }
    .testimonials-owl .owl-nav button.owl-prev {
        left: 0;
    }
    .testimonials-owl .owl-nav button.owl-next {
        right: 0;
    }
}



/*===== Footer Section (legacy) =====*/
.footer{ padding: 60px 0px 0; background: #0a0a0a; border-top: 1px solid #1e1e1e; }
.footer-content .logo a {font-size: 24px;line-height: 32px;font-weight: 700;text-decoration: none;color: #fff;}
.footer-content .logo a span{color: #c0392b;}
.footer-content p{color: #888;font-size: 15px;line-height: 24px;margin: 15px 0;}
.footer-content p.ownername{color: #666;font-size: 14px;margin-bottom: 20px;}
.footer-content img{width: 200px;height: auto;}
.footer-content h4{font-family: "Inter", sans-serif;font-weight: 600;font-size: 14px;line-height: 26px;text-transform: uppercase;letter-spacing: 2px;padding-bottom: 16px;color: #fff;}
.footer-content ul li{ position: relative; list-style: none; color: #888; font-family: "Inter", sans-serif;font-weight: 400;font-size: 14px;line-height: 24px; margin: 10px 0}
.footer-content ul li a{text-decoration: none;color: #888;font-size: 14px;line-height: 24px;transition: color 0.2s;}
.footer-content ul li a:hover{color: #c0392b;}
.footer .copyright a{text-decoration: none;color: #c0392b;}

/*===== Copyright =====*/
.copyright{ padding: 15px 0;  border-top: #1e1e1e solid 1px; margin-top: 25px;}
.copyright p{ display: inline-block;color:#555;font-family: "Inter", sans-serif;font-weight: 400;font-size: 13px;line-height: 20px; }
.copyright p a{ color: #c0392b; text-decoration: none; }

/*===== Slider Plugins =====*/
#banner-slider .owl-buttons{ display: none; }
#banner-slider .owl-dots { position: absolute; left: 50%; top: 90%; transform: translate(-50%,0); z-index: 9; display: none;}
#banner-slider .owl-dots .owl-dot span{ width: 15px; height: 15px; border-radius: 50%; background: #fff; border: none; opacity: 1; }
#banner-slider .owl-dots .active span{ backdrop-filter: blur(4px);background: rgba(255, 255, 255, 0.9); }

#testimonials-slider .owl-dots{ display: none;}
#testimonials-slider .owl-nav{ display: none; }
#testimonials-slider .owl-nav .owl-prev{ position: absolute; top: 50%; left: 0px; transform: translateY(-50%); font-family: 'FontAwesome'; text-align: center; width: 34px; height: 34px; border: none; background: #0000FF; color: #fff; font-size: 16px; border-radius: 0%; opacity: 1; display: flex; justify-content: center; align-items: center; z-index: 999; transition: all linear 0.3s; }
#testimonials-slider .owl-nav .owl-next{ position: absolute; top: 50%; right: 0px; transform: translateY(-50%); font-family: 'FontAwesome'; text-align: center; width: 34px; height: 34px; border: none; background: #0000FF; color: #fff; font-size: 16px; border-radius: 0%; opacity: 1; display: flex; justify-content: center; align-items: center; z-index: 999; transition: all linear 0.3s; }
#testimonials-slider .owl-nav .owl-prev:hover,
#testimonials-slider .owl-nav .owl-next:hover{ background: #000; color: #fff; }
#testimonials-slider .owl-nav .owl-prev span{ margin-right: 5px; margin-bottom: 5px; }
#testimonials-slider .owl-nav .owl-next span{ margin-left: 5px; margin-bottom: 5px; }


/*===== Pages Breadcrumb =====*/
.content-banner{ padding: 20px 0; background: #0d0d0d;}
.breadcrumb{ padding: 10px 15px; margin: 0; margin-bottom: 0; color: #888; background: transparent; border-radius: 0; font-family: "Inter", sans-serif;font-weight: 600; text-transform: uppercase; font-weight: 400; font-size: 14px; letter-spacing: 1px;}
.breadcrumb a{ color: #c0392b; font-weight: 700; text-decoration: none;font-family: "Inter", sans-serif; }
.breadcrumb .fa-solid{  display: inline-block; margin: 0 10px; font-size: 12px; font-weight: 700; margin-top: 4px; color: #555; }

/*===== Content Pages =====*/
.content{ width: 100%; background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 50%, #0d0d0d 100%); padding: 70px 0; padding-top: 160px; position: relative; overflow: hidden;}
.content::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"><circle cx="20" cy="20" r="40" fill="none" stroke="%23c0392b" stroke-width="0.2" opacity="0.15"/><circle cx="80" cy="80" r="60" fill="none" stroke="%23c0392b" stroke-width="0.15" opacity="0.1"/></svg>') center/cover; pointer-events: none;}
.content::after{ content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, #c0392b, transparent);}
.sectiontitleunderline{ display: block; width: 60px; height: 3px; margin: 0 0 30px; background: #c0392b; }
.content .section-title.page-top {margin-bottom: 0; position: relative; z-index: 1;}
.content .section-title h1{  font-size: 56px; color: #fff; font-weight: 700; font-family: "Playfair Display", serif; margin-bottom: 16px; line-height: 1.1; text-transform: uppercase; letter-spacing: 1px;}
.content .section-title h1 span{color: #c0392b;}
.content .section-title p{color: #aaa; font-size: 17px; line-height: 28px; max-width: 600px;}
.content .section-title h2 span{color: #c0392b;}
.content .section-title h2{  font-size: 48px; line-height: 1.2; color: #fff; font-weight: 700; font-family: "Playfair Display", serif; margin-bottom: 16px;}


/*===== Our-Story =====*/
.our-story{background: #fff;padding: 80px 0;}
.our-story .section-title{margin-bottom: 0;}

/*===== Why Choose Us Section =====*/
.why-choose-us{padding: 80px 0px;background: #F8F9FA;}
.why-choose-us-card{display: flex;flex-direction: column;gap: 15px;justify-content: center;align-items: center;}
.why-choose-us-card-icon{display: flex;justify-content: center;align-items: center;background: #0073E61A;height: 64px;width: 64px;border-radius: 50%;}
.why-choose-us-card h4{color: #1A1A1A;font-size: 20px;line-height: 28px;}
.why-choose-us-card p{color: #666666;font-size: 16px;line-height: 24px;}

.our-credentials{background: #fff;padding: 70px 0;}
.our-creaentials-bbb{text-align: center;}
.our-creaentials-bbb img{max-width: 320px;width: 100%; height: auto;margin-bottom: 30px;}
.our-creaentials-bbb h4{font-family: "Inter", sans-serif;font-size: 20px;line-height: 30px;margin-bottom: 10px;color: #000;}
.our-creaentials-bbb p{color: #0073E6;font-size: 17px;font-weight: 600;}
.our-creaentials-content li{list-style: none;margin-bottom: 15px;}


.page-services .services-card .services-card-icon{height:80px;width:80px;border-radius: 16px;}
.services-card{border-top:4px solid #fff;}
.services-cardone{border-color:#3b82f6;}
.services-cardtwo{border-color:#f97316;}
.services-cardthree{border-color:#14b8a6;}
.services-cardfour{border-color:#a855f7;}
.services-card-icon.blue { background: #3b82f6; }
.services-card-icon.orange { background: #f97316; }
.services-card-icon.teal { background: #14b8a6; }
.services-card-icon.purple { background: #a855f7; }

.page-services .services-card h4{font-size: 24px;}
.page-services .services-card p{font-size: 18px;line-height: 28px;}
.page-services .services-card ul{padding-left: 25px;margin-top: 20px;list-style:none;}
.page-services .services-card ul li{font-size: 16px;margin: 5px 0;}



.comingsoon{padding:90px 0;text-align:center;}


/*==== process ====*/

.booking-process {
    background-color: #0a0a0a;
    padding: 60px 0 100px;
    overflow: hidden;
}

/* ── Section Title ────────────────────────────── */
.booking-process .section-title {
    margin-bottom: 70px;
}

.booking-process .section-title .overline {
    letter-spacing: 3px;
    color: #c0392b;
    margin-bottom: 16px;
}

.booking-process .section-title h2 {
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 20px;
    letter-spacing: 2px;
}

.booking-process .section-title .title-rule {
    width: 60px;
    height: 3px;
    background: #c0392b;
    margin: 0 auto;
}

/* ── Step Card ────────────────────────────────── */
.booking-step {
    text-align: center;
    padding: 0 20px;
}

/* Big ghost number */
.booking-step .step-number {
    display: block;
    font-size: 60px;
    color: #6b1010;
    line-height: 1;
    margin-bottom: 18px;
    opacity: 0.45;
}

/* Vertical tick line */
.booking-step .step-divider {
    width: 1px;
    height: 50px;
    background: #c0392b;
    margin: 0 auto 28px;
}

/* Step title */
.booking-step h4 {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 16px;
}

/* Step description */
.booking-step p {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    color: #aaaaaa;
    margin: 0;
}

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
    .booking-process {
        padding: 60px 0 70px;
    }

    .booking-step {
        margin-bottom: 50px;
    }

    .booking-step .step-number {
        font-size: 4rem;
    }
}

/* ═══════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════ */

.contact-section {
    background-color: #0a0a0a;
    padding: 90px 0 100px;
    overflow: hidden;
}

/* ── Left side ────────────────────────────────── */
.contact-left {
    padding-right: 40px;
}

.contact-left .overline {
    display: block;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c0392b;
    margin-bottom: 16px;
}

.contact-left h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 60px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0 0 18px;
}

.contact-left h2 .accent {
    color: #c0392b;
    font-family: "Playfair Display", serif;
}

.contact-left .title-rule {
    width: 48px;
    height: 3px;
    background: #c0392b;
    margin-bottom: 28px;
}

.contact-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 36px;
}

/* Contact info list */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-list .ci-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-list .ci-label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c0392b;
    margin-bottom: 4px;
}

.contact-info-list a,
.contact-info-list span {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-list a:hover {
    color: #c0392b;
}

/* ── Form ─────────────────────────────────────── */
.contact-form label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #555555;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #c0392b;
}

.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23aaa' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.contact-form select option {
    background: #1a1a1a;
    color: #ffffff;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

/* Submit button */
.btn-submit {
    width: 100%;
    background: #c0392b;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease;
    margin-top: 6px;
}

.btn-submit:hover {
    background: #96221a;
}

/* Form note */
.form-note {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: #666666;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Success / error messages */
.form-success-msg {
    background: #1a3a1a;
    border: 1px solid #2a6a2a;
    color: #6abf6a;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.form-error-msg {
    background: #3a1a1a;
    border: 1px solid #6a2a2a;
    color: #bf6a6a;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    padding: 14px 18px;
    margin-bottom: 24px;
}

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
    .contact-section { padding: 60px 0 70px; }
    .contact-left { padding-right: 0; margin-bottom: 48px; }
}


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */

.site-footer {
    background-color: #0d0d0d;
    border-top: 1px solid #1e1e1e;
    padding-top: 70px;
}

/* ── Footer top ───────────────────────────────── */
.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid #1e1e1e;
}

/* Brand col */
.footer-brand .footer-logo img {
    max-width: 160px;
    margin-bottom: 18px;
    display: block;
}

.footer-brand p {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: #888888;
    margin-bottom: 20px;
    max-width: 260px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    transition: border-color 0.25s ease, background 0.25s ease;
    margin-right: 8px;
}

.footer-social a:hover {
    background: #c0392b;
    border-color: #c0392b;
}

/* Links cols */
.footer-links h5,
.footer-services h5 {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0.5px;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: #c0392b;
}

/* ── Footer bottom ────────────────────────────── */
.footer-bottom {
    padding: 20px 0;
}

.footer-bottom p {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: #555555;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
    .site-footer { padding-top: 50px; }
    .footer-brand,
    .footer-links,
    .footer-services { margin-bottom: 36px; }
    .footer-bottom .col-md-6:last-child { text-align: left !important; margin-top: 8px; }
}



/*===== Page Bottom =====*/
.page-bottom{padding: 90px 0; background: linear-gradient(135deg, #0a0a0a, #1a0505, #0a0a0a); position: relative; overflow: hidden; border-top: 1px solid #2a2a2a;}
.page-bottom::before{ content: ''; position: absolute; top: -50%; left: -10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(192,57,43,0.08) 0%, transparent 70%); border-radius: 50%;}
.page-bottom-content h2{font-size: 48px; font-weight: 700; margin-bottom: 20px; color: #fff; font-family: "Playfair Display", serif; text-transform: uppercase; letter-spacing: 1px;}
.page-bottom-content p{font-size: 18px; font-weight: 400; color: #aaa; line-height: 1.7;}
.page-bottom-link{margin-top: 45px;}
.page-bottom-link a{display: inline-block; transition: all 0.3s ease; color: #fff; background: linear-gradient(135deg, #9f041b, #e32400); padding: 14px 36px; text-decoration: none; border: 2px solid transparent; border-radius: 3px; font-family: "Inter", sans-serif; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 2px;}
.page-bottom-link a:last-child{background: transparent; color: #fff; margin-left: 16px; border: 1px solid #555;}
.page-bottom-link a:first-child:hover{background: #c0392b; transform: translateY(-2px);}
.page-bottom-link a:last-child:hover{border-color: #c0392b; color: #c0392b;}

/*===== Gallery Page =====*/
.gallery-page-content{padding: 80px 0;}
.gallery-page-content .project-card img{height: 330px;}
.project-card .project-card-content p{position: unset;}
.project-card .project-card-content{padding: 20px;}
.gallery-page-content .project-card h4{opacity: 0;transition: all linear 0.3s;font-weight: 500;color: #fff;margin-bottom: 14px;}
.project-card:hover h4{opacity: 1;}

.reviews-page-bb-content h4{font-size: 30px;line-height: 40px;margin-bottom: 15px;}
.reviews-page-bb-content p{font-size: 20px;line-height: 30px;}
.testimonials-page .testimonials-card p{font-size: 20px;line-height: 30px;}


/*===== Conatct page =====*/
.contact-form-container{padding: 80px 0;}
.contact-page-contact-info{margin-top: 50px;}
.contact-page-contact-info ul li{ display:flex;gap:25px;color:#666;font-weight:400;font-size:18px;margin-bottom:3px; }
.contact-icon{display: flex;justify-content: center;align-items: center;background: #0073E61A;height: 48px;width: 48px;border-radius: 8px;}
.contact-page-contact-info ul li{margin-bottom: 25px;padding: 25px;border-radius: 4px;box-shadow: 0 8px 30px -4px rgba(0, 0, 0, .2);border-left:4px solid #0073E6;background: rgba(250, 250, 250, 1);}
.contact-page-contact-info ul li span{ display: block; font-size: 18px;font-weight: 700; margin-bottom: 5px; }
.contact-page-contact-info ul li span.desc{font-size: 14px; font-weight: 400;color: #666;margin-top: 5px;margin-bottom: 0;}
.emergency-services{padding: 24px;margin-top: 32px;background: #f2f2f2;border-radius: 8px;max-width: 470px;}
.emergency-services h4{font-size: 18px;margin-bottom: 15px;color: #1A1A1A;}
.emergency-services p{font-size: 16px;color: #666666;}
.serving-mesa{background: #f2f2f2;padding: 70px 0;}
.serving-mesa-card{display: flex;flex-direction: column;justify-content: center;align-items: center;box-shadow: 0 4px 20px -2px rgba(0, 0, 0, .1);min-height: 284px;background: #fff;max-width: 986px;margin: auto;}
.serving-mesa-card h4{margin-bottom: 15px;font-size: 22px;font-weight: 700;color: #1A1A1A;}
.serving-mesa-card p{fallback: 18px;color: #666;}

.contact-page-contact-info ul li a{text-decoration: none;color:#0073E6; }

/*===== Content WCU =====*/
.content-wcu{padding: 80px 0;}
.content-wcu-content{max-width: 896px;margin: auto;}
.content-wcu-content h2{font-size: 48px;font-weight: 700;color: #1a1a1a;margin-bottom: 20px;text-align: center;}
.content-wcu-content p ,.content-wcu-content ul li{font-size: 20px;line-height: 35px;color: #666;margin-bottom: 15px;}
.content-wcu-content ul{padding-left: 55px;}

/*===== 404 || Page Not Found =====*/
.content-banner .page-not-found-title{ color: #fff; }
.page_not_found{ display: block; text-align: center; padding: 50px; }
.page_not_found h2{ font-size: 120px; color: #34495e; }
.page_not_found p{ font-size: 18px; color: #34495e; text-align: center; }
.page_not_found a{ display: inline-block; padding: 10px 25px; background: #c0392b; color: #fff; border-radius: 3px; text-decoration: none; }
.page_not_found a:hover{ background: #e74c3c; }

/*===== Latest Testimonials and Form Page =====*/
.content .reviewsblock{ padding: 15px 0; backdrop-filter: blur(4px);background: rgba(255, 255, 255, 0.9); width: 100%; text-align: center; }
.content .reviewsblock h4{ margin-bottom: 0; text-transform: uppercase; color: #fff; font-size: 24px; font-weight: 700; }
.reviewsform{ padding: 15px; background: #eee; min-height: 150px; width: 100%; }
.reviewsformstyle{ height: 44px; border-radius: 0; border: #666 solid 1px; color: #666; margin-bottom: 15px; }
.reviewsform input::placeholder{ color: #666; }
.reviewsform textarea::placeholder{ color: #666; }
.btn-reviewsformstyle{ display: block; text-transform: uppercase; width: 100%; color: #fff; backdrop-filter: blur(4px);background: rgba(255, 255, 255, 0.9); border: none; padding: 10px 16px; font-size: 18px; border-radius: 0; transition: all linear 0.3s; }
.btn-reviewsformstyle:hover{ background: #2ecc71; }

/* Bootstrap(v5.2.3) Accordion */
.testimonials-page{ display: block; margin-top: 15px; }
.testimonials-page .accordion-button:focus,
.testimonials-page .accordion-button:active,
.testimonials-page .accordion-button{ padding-bottom: 13px; background: #000; color: #fff; box-shadow: none; }
.testimonials-page .accordion-button.collapsed{ background: #fff; color: #000; }
.testimonials-page .accordion-button:not(.collapsed)::after{ content: '\f107'; font-family: 'fontawesome'; font-size: 18px; color: #fff; text-decoration: none; background-image: initial; }
.testimonials-page .accordion-button.collapsed::after{ content: '\f107'; font-family: 'fontawesome'; color: #000; text-decoration: none; background-image: initial; }


/*===== Latest Contact Form =====*/
.contact-form-section .form-group{ position: relative; overflow: hidden; margin: 0; margin-bottom: 30px; }
.contact-form-section .form-group .fa{ position: absolute; top: 0; z-index: 8; height: 100%; width: 50px; backdrop-filter: blur(4px);background: rgba(255, 255, 255, 0.9); text-align: center; padding-top: 15px; color: #fff; font-size: 18px; }
.contact-form-section .form-group .sms{ height: 100%; }
.contact-form-section .contact-form-control{ padding-left: 65px; height: 50px; border-color: #666; border-radius: 0; }
.contact-form-section .contact-form-control::placeholder{ color: #666; }
.contact-form-section textarea.contact-form-control{ height: 200px; }
.contact-form-section .btn-contact-form-control{ width: 150px; color: #fff; background-color: #000; border: none; border-radius: 0; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; transition: all linear 0.3s; }
.contact-form-section .btn-contact-form-control:hover{ background: #2ecc71; }
.contact-page-location-map .googlemap{ height: 400px; overflow: hidden; border: #eee solid 1px; }

/*===== Latest Free Estimate Form =====*/
.free-estimate-form .form-title{ padding: 10px 15px; backdrop-filter: blur(4px);background: rgba(255, 255, 255, 0.9); color: #fff; }
.free-estimate-form .form-group{ position: relative; overflow: hidden; margin: 0; margin-bottom: 30px; }
.free-estimate-form .form-group .fa{ position: absolute; top: 22px; z-index: 999; height: 100%; width: 50px; backdrop-filter: blur(4px);background: rgba(255, 255, 255, 0.9); text-align: center; padding-top: 15px; color: #fff; font-size: 18px; }
.free-estimate-form .form-group .sms{ height: 100%; }
.free-estimate-form .free-estimate-form-control{ padding-left: 65px; height: 50px; border-color: #666; border-radius: 0; }
.free-estimate-form .free-estimate-form-control::placeholder{ color: #666; }
.free-estimate-form textarea.free-estimate-form-control{ height: 200px; }
.free-estimate-form .btn-free-estimate-form-control{ width: 150px; color: #fff; background-color: #000; border: none; border-radius: 0; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; transition: all linear 0.3s; }
.free-estimate-form .btn-free-estimate-form-control:hover{ background: #2ecc71; }


/* ====programs-page====== */
.programs-page-card{text-align: center;margin-bottom: 2rem;}
.programs-page-image{width: 100%;max-height: 300px;overflow: hidden;margin-bottom: 1.5rem;}
.programs-page-image img{object-fit: cover;width: 100%;height: 100%;}
.programs-page-card h4{ color: #1551B3; font-size: 20px; font-weight: 600;line-height: 35px;  font-family: "Inter", sans-serif; text-transform: uppercase; }
.programs-page-card p{  font-family: "Inter", sans-serif;color: #636363;font-size: 24px;font-weight: 400;line-height: 35px;margin-bottom: 30px; }
.programs-page-link{text-align: center;}


/*========== Responsive ==========*/


@media (max-width: 1399px){
      .banner-content-box h1 { font-size: 59px;}
      .services-card{min-height: 284px;}

}

@media (max-width: 1025px){
      body{padding-top: 0;}
             /*===== Go To Top =====*/
      #back-top{ right: 15px; bottom: 25px; }
      #back-top a { width: 40px; height: 40px;  }
      #back-top a .fa{ font-size: 16px; margin-top: 10px; }

      /*=====Social Media =====*/
      .share_icon .fa{ width: 45px; height: 45px; font-size: 18px; }
      .social_icon ul li .fa{  width: 43px; height: 43px; font-size: 18px; }
      .social_icon.active ul li:nth-child(1) .fa{ bottom: 188px; }
      .social_icon.active ul li:nth-child(2) .fa{ bottom: 145px; }
      .social_icon.active ul li:nth-child(3) .fa{ bottom: 102px; }
      .social_icon.active ul li:nth-child(4) .fa{ bottom: 59px; }

      /*===== Enable Header Menu Default in Small Device =====*/
      .mobile_menu{ display: block; }
      .mobile_menu.active{ display: block; }
      .serv_dropdown_menu{ padding-left: 30px; }

      /*========== Body Section ===============*/
      .header{display:none ;}
      .logo a,.logo a span{color: #000;}
      .welcome-points ul li{width: 100%;}
      
}
@media (max-width: 992px){

      /*===== ALL Slider Section =====*/ 
      #banner-slider .owl-pagination{ top: 80%; }

      /*===== Pages Section =====*/
      .content-banner{ padding: 20px 0; }
      .content h2{ font-size: 20px; }
      .sectiontitleunderline{ margin: 0 0 15px; }
      .breadcrumb .fa{ margin: 5px; }
      .content p{ font-size: 14px; line-height: 26px; margin-bottom: 10px; }
      .single-blog-wrapper article p {font-size: 14px;}
      
      .online-ordering-content{text-align:center;}
      .offer-card{justify-content:flex-start;}
      .blog-wrapper{grid-template-columns: repeat(2, 1fr);}
      .single-blog-wrapper article .faq-item p {font-size: 14px;}


}

@media (max-width: 767px){

      .header-top ul li { font-size: 13px;}

      .banner .row{flex-direction: column-reverse;}
      .banner-content-box h1 {  font-size: 40px; line-height: 45px;}
      .banner-content-box p {font-size: 19px; line-height: 41px;}
      .experiences .banner-content-box h1{ font-size:30px; }
      .banner .home-page-link a:last-child,.page-bottom-link a:last-child{margin-left: 0;margin-top: 25px;}

      .section-title br{display: none;}
      /*.section-title h2,.welcome .section-title, .welcome .section-title h2{margin: 20px 0;}*/
      .section-title h2 { font-size: 29px !important;}

      .why-choose-us-card,.core-values-card{margin-bottom: 1.5rem;}

      .testimonials-content{padding: 25px;}
      .mission-statement .section-title{padding: 30px 20px;}

      .footer{padding-bottom: 0;}
      .footer-content h4{margin-top: 1.5rem;}

      .banner br{display: none}
      section br{display: none;}    

      .banner-card{width: 44%;}
      .banner-card-last{width: 100%;}


      .services{padding:30px 0 40px;}
      .project{padding:0 }

      .copyright p {font-size: 16px;}

      .contact ul li br{display: block;}

      .content{padding: 100px 0 50px;}
      .serving-mesa{padding-top: 0;}
      .serving-mesa-card{text-align: center;}
      .our-creaentials-bbb{margin-bottom: 20px;}
      .single-blog-wrapper article .faq-item p {font-size: 14px;}
      
}

@media (max-width: 576px) {
    .blog-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   INNER PAGES – DARK THEME OVERRIDES & ADDITIONS
═══════════════════════════════════════════════ */

/* ── About Page ─────────────────────────────── */
.about-welcome {
    background: #0d0d0d;
    padding: 90px 0 70px;
    overflow: hidden;
    border-bottom: 1px solid #1e1e1e;
}
.about-welcome .section-title h2 {
    color: #fff;
    font-size: 52px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
}
.about-welcome .section-title h2 span { color: #c0392b; }
.about-welcome .section-title p { color: #aaa; font-size: 16px; line-height: 1.8; }
.about-welcome .welcome-points ul { padding: 0; margin: 30px 0 0; }
.about-welcome .welcome-points ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #1e1e1e;
}
.about-welcome .welcome-points ul li svg { stroke: #c0392b; flex-shrink: 0; }
.about-right {
    background: #111;
    border: 1px solid #222;
    padding: 36px;
    height: 100%;
}
.about-right-block { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid #222; }
.about-right-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.about-right-block h4 {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c0392b;
    margin-bottom: 12px;
}
.about-right-block p { color: #aaa; font-size: 15px; line-height: 1.75; }
.about-right-block h3 { color: #fff; font-size: 28px; }
.about-right-block p.location-label { color: #666; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }

/* ── Why-Choose-Us section dark ─────────────── */
.why-choose-us { background: #090909; padding: 90px 0; border-top: 1px solid #1e1e1e; border-bottom: 1px solid #1e1e1e; }
.why-choose-us .section-title h2 { color: #fff; text-transform: uppercase; }
.why-choose-us .section-title h4 { color: #c0392b; }
.why-choose-us-card { background: #111; border: 1px solid #1e1e1e; padding: 36px 28px; transition: border-color 0.3s, transform 0.3s; text-align: center; border-radius: 2px; height: 100%; }
.why-choose-us-card:hover { border-color: #c0392b; transform: translateY(-6px); }
.why-choose-us-card-icon { background: rgba(192,57,43,0.12) !important; border: 1px solid rgba(192,57,43,0.3); }
.why-choose-us-card-icon svg { stroke: #c0392b; }
.why-choose-us-card h4 { color: #fff !important; margin-top: 16px; font-family: "Inter", sans-serif; font-size: 16px; font-weight: 600; }
.why-choose-us-card p { color: #888 !important; font-size: 14px; line-height: 1.7; }

/* ── Services Page ───────────────────────────── */
.page-services-dark { background: #0d0d0d; padding: 90px 0; border-bottom: 1px solid #1e1e1e; }
.page-services-dark .section-title h2 { color: #fff; text-transform: uppercase; }
.page-services-dark .section-title h4 { color: #c0392b; }
.page-services-dark .section-title p { color: #888; }
.service-dark-card {
    background: #111;
    border: 1px solid #1e1e1e;
    padding: 40px 32px;
    margin-bottom: 28px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-dark-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #c0392b;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}
.service-dark-card:hover::before { transform: scaleY(1); }
.service-dark-card:hover { border-color: #c0392b; transform: translateX(6px); box-shadow: -4px 0 30px rgba(192,57,43,0.15); }
.service-dark-card-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    border: 1px solid #2a2a2a;
}
.service-dark-card-icon.red   { background: rgba(192,57,43,0.15); }
.service-dark-card-icon.gold  { background: rgba(212,175,55,0.12); }
.service-dark-card-icon.blue  { background: rgba(59,130,246,0.12); }
.service-dark-card-icon.teal  { background: rgba(20,184,166,0.12); }
.service-dark-card-icon.amber { background: rgba(245,158,11,0.12); }
.service-dark-card-icon.purple{ background: rgba(168,85,247,0.12); }
.service-dark-card-icon svg { width: 28px; height: 28px; }
.service-dark-card-icon.red svg   { stroke: #c0392b; }
.service-dark-card-icon.gold svg  { stroke: #d4af37; }
.service-dark-card-icon.blue svg  { stroke: #3b82f6; }
.service-dark-card-icon.teal svg  { stroke: #14b8a6; }
.service-dark-card-icon.amber svg { stroke: #f59e0b; }
.service-dark-card-icon.purple svg{ stroke: #a855f7; }
.service-dark-card h4 { color: #fff; font-size: 22px; margin-bottom: 14px; font-family: "Playfair Display", serif; }
.service-dark-card p { color: #888; font-size: 15px; line-height: 1.75; margin-bottom: 20px; }
.service-dark-card ul { padding: 0; list-style: none; margin: 0; }
.service-dark-card ul li {
    color: #aaa; font-size: 14px; padding: 6px 0;
    border-bottom: 1px solid #1a1a1a;
    display: flex; align-items: center; gap: 10px;
}
.service-dark-card ul li svg { stroke: #c0392b; flex-shrink: 0; width: 16px; height: 16px; }

/* ── Gallery Page ────────────────────────────── */
.gallery-page-dark { background: #0d0d0d; padding: 90px 0; }
.gallery-page-dark .project-content-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid #1e1e1e;
    transition: border-color 0.3s;
}
.gallery-page-dark .project-content-item:hover { border-color: #c0392b; }
.gallery-page-dark .project-content-item img {
    width: 100%; height: 280px; object-fit: cover;
    display: block; transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.85);
}
.gallery-page-dark .project-content-item:hover img {
    transform: scale(1.06);
    filter: brightness(1);
}
.gallery-page-dark .project-content-item a {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0);
    transition: background 0.3s;
    text-decoration: none;
}
.gallery-page-dark .project-content-item:hover a { background: rgba(192,57,43,0.25); }
.gallery-page-dark .project-content-item a .fa { color: #fff; font-size: 24px; opacity: 0; transform: scale(0.6); transition: all 0.3s; }
.gallery-page-dark .project-content-item:hover a .fa { opacity: 1; transform: scale(1); }

/* ── Contact Page ────────────────────────────── */
.contact-page-dark { background: #0d0d0d; padding: 90px 0; }
.contact-page-dark .section-title h2 { color: #fff; text-transform: uppercase; }
.contact-page-dark .section-title p { color: #888; }
.contact-info-dark ul { padding: 0; list-style: none; margin: 36px 0 0; }
.contact-info-dark ul li {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px; margin-bottom: 16px;
    background: #111; border: 1px solid #1e1e1e;
    border-left: 3px solid #c0392b;
    transition: border-color 0.3s;
}
.contact-info-dark ul li:hover { border-left-color: #e74c3c; }
.contact-info-dark .contact-icon {
    width: 44px; height: 44px;
    background: rgba(192,57,43,0.12);
    border: 1px solid rgba(192,57,43,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-dark .contact-content span { display: block; color: #fff; font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-dark .contact-content a,
.contact-info-dark .contact-content p { color: #888; font-size: 15px; text-decoration: none; transition: color 0.2s; }
.contact-info-dark .contact-content a:hover { color: #c0392b; }
.contact-info-dark .contact-content span.desc { color: #555; font-size: 13px; text-transform: none; font-weight: 400; letter-spacing: 0; margin-top: 2px; }

/* Contact form dark */
.contact-form-dark { background: #111; border: 1px solid #1e1e1e; padding: 44px 40px; }
.contact-form-dark label { display: block; color: #aaa; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; font-family: "Inter", sans-serif; }
.contact-form-dark input,
.contact-form-dark select,
.contact-form-dark textarea {
    width: 100%; background: #0d0d0d; border: 1px solid #2a2a2a;
    color: #fff; padding: 14px 18px; font-size: 14px;
    font-family: "Inter", sans-serif; outline: none;
    transition: border-color 0.3s; margin-bottom: 20px; box-sizing: border-box;
    border-radius: 0; -webkit-appearance: none; appearance: none;
}
.contact-form-dark select { color: #aaa; }
.contact-form-dark select option { background: #0d0d0d; color: #fff; }
.contact-form-dark input:focus,
.contact-form-dark select:focus,
.contact-form-dark textarea:focus { border-color: #c0392b; }
.contact-form-dark input::placeholder,
.contact-form-dark textarea::placeholder { color: #444; }
.contact-form-dark .btn-submit {
    background: linear-gradient(135deg, #9f041b, #e32400);
    color: #fff; border: none; padding: 16px 40px;
    font-size: 12px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; cursor: pointer;
    font-family: "Inter", sans-serif; transition: opacity 0.3s, transform 0.3s;
    border-radius: 0;
}
.contact-form-dark .btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }
.contact-form-dark .form-note { color: #555; font-size: 12px; margin-top: 12px; }
.contact-form-dark .row { margin: 0 -10px; }
.contact-form-dark .row > [class*="col"] { padding: 0 10px; }

/* ── Free Estimate / Book Page ───────────────── */
.booking-page-dark { background: #0d0d0d; padding: 90px 0; }
.booking-form-dark { background: #111; border: 1px solid #1e1e1e; padding: 50px 44px; }
.booking-form-dark .form-legend {
    font-family: "Inter", sans-serif;
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: #c0392b; margin-bottom: 28px; padding-bottom: 16px;
    border-bottom: 1px solid #1e1e1e;
}
.booking-form-dark label { display: block; color: #aaa; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.booking-form-dark input,
.booking-form-dark select,
.booking-form-dark textarea {
    width: 100%; background: #0d0d0d; border: 1px solid #2a2a2a;
    color: #fff; padding: 14px 18px; font-size: 14px;
    font-family: "Inter", sans-serif; outline: none;
    transition: border-color 0.3s; margin-bottom: 24px;
    box-sizing: border-box; border-radius: 0; -webkit-appearance: none;
}
.booking-form-dark input:focus,
.booking-form-dark select:focus,
.booking-form-dark textarea:focus { border-color: #c0392b; }
.booking-form-dark input::placeholder,
.booking-form-dark textarea::placeholder { color: #444; }
.booking-form-dark .btn-submit {
    background: linear-gradient(135deg, #9f041b, #e32400);
    color: #fff; border: none; padding: 16px 48px;
    font-size: 12px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; cursor: pointer;
    font-family: "Inter", sans-serif; transition: all 0.3s;
}
.booking-form-dark .btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }
.booking-info-dark { padding-left: 32px; }
.booking-info-dark h3 { color: #fff; font-size: 32px; margin-bottom: 16px; text-transform: uppercase; }
.booking-info-dark p { color: #888; font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
.booking-highlights { list-style: none; padding: 0; margin: 0 0 36px; }
.booking-highlights li {
    display: flex; align-items: center; gap: 14px;
    color: #ccc; font-size: 14px; padding: 12px 0;
    border-bottom: 1px solid #1e1e1e;
}
.booking-highlights li::before {
    content: ''; width: 6px; height: 6px;
    background: #c0392b; border-radius: 50%; flex-shrink: 0;
}
.booking-contact-box { background: #111; border: 1px solid #1e1e1e; padding: 28px; border-left: 3px solid #c0392b; }
.booking-contact-box h5 { color: #fff; font-family: "Inter", sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.booking-contact-box a { color: #c0392b; text-decoration: none; font-size: 20px; font-weight: 700; display: block; }
.booking-contact-box span { color: #555; font-size: 12px; }

/* ── Gallery page old structure dark fix ─────── */
.gallery-page-content { background: #0d0d0d; padding: 80px 0; }
.gallery-page-content ul { padding: 0; list-style: none; }
.gallery-page-content .project-content-item { position: relative; overflow: hidden; margin-bottom: 24px; border: 1px solid #1e1e1e; transition: border-color 0.3s; }
.gallery-page-content .project-content-item:hover { border-color: #c0392b; }
.gallery-page-content .project-content-item img { width: 100%; height: 270px; object-fit: cover; display: block; transition: transform 0.5s, filter 0.3s; filter: brightness(0.85); }
.gallery-page-content .project-content-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gallery-page-content .project-content-item a { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0); transition: background 0.3s; text-decoration: none; }
.gallery-page-content .project-content-item:hover a { background: rgba(192,57,43,0.3); }
.gallery-page-content .project-content-item a .fa { color: #fff; font-size: 24px; opacity: 0; transform: scale(0.6); transition: all 0.3s; }
.gallery-page-content .project-content-item:hover a .fa { opacity: 1; transform: scale(1); }

/* ── Existing services page card dark override ── */
.services.page-services { background: #0d0d0d; }
.services.page-services .section-title h2 { color: #fff; }
.services.page-services .section-title h4 { color: #c0392b; }
.services.page-services .section-title p { color: #888; }
.services-card { background: #111 !important; border: 1px solid #1e1e1e !important; border-top: 4px solid #c0392b !important; padding: 36px 28px; }
.services-card h4 { color: #fff !important; }
.services-card p { color: #888 !important; }
.services-card ul li { color: #aaa !important; }

/* ── About page welcome section dark override ─── */
section.welcome#about-us { background: #0d0d0d !important; }
section.welcome#about-us .section-title h2 { color: #fff !important; font-size: 48px !important; }
section.welcome#about-us .section-title p { color: #aaa !important; }
section.welcome#about-us .welcome-points ul li { color: #ccc; border-bottom: 1px solid #1e1e1e; padding: 10px 0; }
section.welcome#about-us .welcome-right { background: #111; border: 1px solid #1e1e1e; padding: 36px; }
section.welcome#about-us .welcome-right-top,
section.welcome#about-us .welcome-right-middle { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #1e1e1e; }
section.welcome#about-us .welcome-right-top h4,
section.welcome#about-us .welcome-right-middle h4 { color: #c0392b !important; font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; }
section.welcome#about-us .welcome-right-top p,
section.welcome#about-us .welcome-right-middle p { color: #aaa !important; font-size: 15px; line-height: 1.75; }
section.welcome#about-us .welcome-right-bottom p { color: #555; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
section.welcome#about-us .welcome-right-bottom h3 { color: #fff; font-size: 22px; }

/* ── Section-title inside dark sections ─────── */
.our-story { background: #0a0a0a; padding: 80px 0; }
.our-story .section-title h2 { color: #fff; }
.our-story .section-title p { color: #888; }

/* ── Contact form section (includes/contact.php) fix ─ */
.contact-form-container { background: #0d0d0d; }
.contact-form-container .section-title h2 { color: #fff; }
.contact-form-container .section-title p { color: #888; }
.contact-page-contact-info ul li { background: #111 !important; border-left: 4px solid #c0392b !important; box-shadow: none !important; }
.contact-page-contact-info ul li span { color: #fff !important; }
.contact-page-contact-info ul li span.desc { color: #666 !important; font-size: 13px !important; font-weight: 400 !important; }
.contact-page-contact-info ul li a { color: #c0392b !important; }
.contact-icon { background: rgba(192,57,43,0.12) !important; border: 1px solid rgba(192,57,43,0.3); }
.emergency-services { background: #111 !important; border: 1px solid #1e1e1e; }
.emergency-services h4 { color: #fff !important; }
.emergency-services p { color: #888 !important; }

/* Contact form inputs dark */
.contact-section input,
.contact-section select,
.contact-section textarea,
.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea {
    background: #111 !important; border: 1px solid #2a2a2a !important;
    color: #fff !important; border-radius: 0;
}
.contact-section input:focus,
.contact-section textarea:focus,
.contact-form-container input:focus,
.contact-form-container textarea:focus { border-color: #c0392b !important; outline: none !important; }
.contact-section label,
.contact-form-container label { color: #aaa; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }

/* ── Free estimate old form dark ─────────────── */
.free-estimate-form { background: transparent; }
.free-estimate-form .form-title { background: #111; color: #c0392b; border: 1px solid #1e1e1e; padding: 16px 20px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.free-estimate-form-control { background: #111 !important; border: 1px solid #2a2a2a !important; color: #fff !important; border-radius: 0 !important; height: 50px; }
.free-estimate-form-control::placeholder { color: #444 !important; }
.free-estimate-form-control:focus { border-color: #c0392b !important; box-shadow: none !important; }
.free-estimate-form textarea.free-estimate-form-control { height: 160px; }
.btn-free-estimate-form-control { background: linear-gradient(135deg, #9f041b, #e32400) !important; border: none !important; color: #fff !important; padding: 14px 40px; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: opacity 0.3s; border-radius: 0 !important; }
.btn-free-estimate-form-control:hover { opacity: 0.9; }
.free-estimate-form .form-group .fa { background: rgba(192,57,43,0.15) !important; color: #c0392b; }
.free-estimate-form label { color: #aaa; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; display: block; }

/* ── Page 404 dark ─────────────────────────── */
.page_not_found { background: #0d0d0d; padding: 120px 50px; }
.page_not_found h2 { color: #1e1e1e; }
.page_not_found p { color: #666; }
.page_not_found a { background: #c0392b; color: #fff; }
.page_not_found a:hover { background: #e74c3c; }

/* ═══════════════════════════════════════════════
   RESPONSIVE ADDITIONS
═══════════════════════════════════════════════ */
@media (max-width: 1025px) {
    .content .section-title h1 { font-size: 42px; }
    .page-bottom-content h2 { font-size: 36px; }
    .booking-info-dark { padding-left: 0; margin-top: 40px; }
    .contact-form-dark { padding: 32px 24px; }
}

@media (max-width: 768px) {
    .content { padding-top: 120px; padding-bottom: 50px; }
    .content .section-title h1 { font-size: 32px; }
    .content .section-title h2 { font-size: 28px; }
    .about-welcome { padding: 60px 0; }
    .about-welcome .section-title h2 { font-size: 34px; }
    .about-right { padding: 24px; margin-top: 30px; }
    .page-services-dark { padding: 60px 0; }
    .service-dark-card { padding: 28px 22px; }
    .service-dark-card:hover { transform: none; }
    .gallery-page-content { padding: 50px 0; }
    .gallery-page-content .project-content-item img { height: 220px; }
    .contact-page-dark { padding: 60px 0; }
    .contact-form-dark { padding: 28px 20px; }
    .booking-form-dark { padding: 28px 20px; }
    .booking-info-dark { padding-left: 0; margin-top: 36px; }
    .page-bottom-content h2 { font-size: 30px; }
    .page-bottom-link a { display: block; text-align: center; margin-bottom: 12px; }
    .page-bottom-link a:last-child { margin-left: 0; }
    section.welcome#about-us .welcome-right { padding: 24px; margin-top: 24px; }
    .why-choose-us-card { margin-bottom: 20px; }
    .acts-grid { grid-template-columns: 1fr !important; }
    .contact-form-dark .row > .col-md-6 { width: 100%; }
}

@media (max-width: 480px) {
    .content .section-title h1 { font-size: 26px; }
    .service-dark-card { padding: 22px 18px; }
    .gallery-page-content .project-content-item img,
    .gallery-page-dark .project-content-item img { height: 190px; }
    .booking-form-dark, .contact-form-dark { padding: 22px 16px; }
}
