/*-----------------------------------------------------------------------------------
   Iron Craft — Brand Override & Custom Styles
   Precision Fabrication & Pergola Design
-----------------------------------------------------------------------------------*/

/* ── Brand Color Overrides ── */
:root {
  --theme-color:   #FF6B00;   /* Orange from logo */
  --theme-color-1: #1a2d5a;   /* Deep Navy Blue from logo */
  --gold-color:    #FFB300;   /* Gold from logo slats */
}

/* ── Logo sizing everywhere ── */
.ic-logo {
  max-height: 62px !important;
  width: auto !important;
  border-radius: 50%;
  object-fit: contain;
}

.header-logo img,
.offcanvas__logo img {
  max-height: 62px !important;
  width: auto !important;
  border-radius: 50%;
}

.footer-widget-1 .image img {
  max-height: 72px !important;
  width: auto !important;
  border-radius: 50%;
}

/* ── Remove unused header icons ── */
.search-toggle-open,
.header-shopping-cart {
  display: none !important;
}

/* ── WhatsApp Floating Button ── */
.ic-whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 9999;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.ic-whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}
.ic-whatsapp-float i {
  color: #fff !important;
  font-size: 2.8rem !important;
  transition: none !important;
}

/* ── Footer Quick Links (widget-3) — mirrors widget-2 styles missing in main.css ── */
.footer-widget-3 ul.service-list li {
  position: relative;
  color: rgba(255,255,255,0.80);
  margin-bottom: 14px;
  margin-left: 30px;
}
.footer-widget-3 ul.service-list li::before {
  content: "\e902";
  font-family: 'icomoon';
  position: absolute;
  left: -22px;
  color: var(--theme-color);
  transition: all 500ms ease;
}
.footer-widget-3 ul.service-list li a {
  color: rgba(255,255,255,0.80);
}
.footer-widget-3 ul.service-list li:hover,
.footer-widget-3 ul.service-list li:hover a {
  color: var(--theme-color);
}

/* ── Footer Contact Us (widget-4) text color ── */
.footer-widget-4 .ic-contact-list li {
  color: rgba(255,255,255,0.80);
}
.footer-widget-4 .ic-contact-list li a {
  color: rgba(255,255,255,0.80);
}
.footer-widget-4 .ic-contact-list li a:hover {
  color: var(--theme-color);
}

/* ── Footer contact list icons ── */
.ic-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.ic-contact-list li i {
  color: var(--theme-color);
  margin-top: 3px;
  min-width: 16px;
}
.ic-contact-list li .fab.fa-whatsapp {
  color: #25D366 !important;
}

/* ── Service card hover lift ── */
.service-slider-area {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-slider-area:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 45, 90, 0.12);
}

/* ── Breadcrumb page-title background fix ── */
.breadcrumb__area.theme-bg-1 {
  background-color: var(--theme-color-1);
}

/* ── CTA section ── */
.ic-cta-section {
  background: linear-gradient(135deg, var(--theme-color-1) 0%, #0d1e40 100%);
  padding: 80px 0;
  text-align: center;
}
.ic-cta-section h2 {
  color: #fff;
  font-size: 3.8rem;
  margin-bottom: 16px;
}
.ic-cta-section p {
  color: rgba(255,255,255,0.80);
  font-size: 1.7rem;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Stats / counter bar ── */
.ic-stats-bar {
  background: var(--theme-color-1);
  padding: 50px 0;
}
.ic-stats-bar .icon-box-counter-area {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 10px 20px;
}
.ic-stats-bar .icon-box-counter-area:last-child {
  border-right: none;
}
.ic-stats-bar .icon-box-counter-area h3,
.ic-stats-bar .icon-box-counter-area .text-1 {
  color: #fff;
}
.ic-stats-bar .icon-box-counter-area .icon-box i {
  color: var(--theme-color);
  font-size: 3.6rem;
}

/* ── Service detail sidebar ── */
.ic-service-sidebar .service-list li a {
  padding: 12px 20px;
  display: block;
  background: #f5f7fa;
  margin-bottom: 8px;
  border-radius: 4px;
  color: var(--theme-color-1);
  font-weight: 500;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}
.ic-service-sidebar .service-list li a:hover,
.ic-service-sidebar .service-list li a.active {
  background: var(--theme-color);
  color: #fff;
  border-left-color: var(--gold-color);
}
.ic-service-sidebar .contact-box-sidebar {
  background: var(--theme-color-1);
  padding: 30px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
}
.ic-service-sidebar .contact-box-sidebar h4 {
  color: #fff;
  margin-bottom: 10px;
}
.ic-service-sidebar .contact-box-sidebar p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

/* ── Gallery filter buttons ── */
.ic-filter-btn {
  border: 2px solid var(--theme-color);
  background: transparent;
  color: var(--theme-color-1);
  padding: 8px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  margin: 4px;
}
.ic-filter-btn:hover,
.ic-filter-btn.active {
  background: var(--theme-color);
  color: #fff;
}

/* ── Project gallery card ── */
.ic-project-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 24px;
}
.ic-project-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ic-project-item:hover img {
  transform: scale(1.06);
}
.ic-project-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,45,90,0.88));
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.ic-project-item:hover .ic-project-overlay {
  transform: translateY(0);
}
.ic-project-overlay h5 {
  color: #fff;
  margin: 0 0 4px;
}
.ic-project-overlay span {
  color: var(--theme-color);
  font-size: 1.3rem;
  font-weight: 600;
}

/* ── Why choose us cards ── */
.ic-choose-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 4px 24px rgba(26,45,90,0.07);
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}
.ic-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(26,45,90,0.13);
}
.ic-choose-card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--theme-color), var(--gold-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ic-choose-card .icon i {
  color: #fff;
  font-size: 2.8rem;
}
.ic-choose-card h5 {
  margin-bottom: 10px;
  color: var(--theme-color-1);
}

/* ── Choose-area icon box on light/white background (service pages) ── */
/* main.css sets these to #fff for dark-background sections — override for white pages */
.section-space .choose-area-icon-box h5 {
  color: var(--theme-color-1);
}
.section-space .choose-area-icon-box p {
  color: #555;
}

/* ── Work Process icon hover fix ── */
/* Disable the ::before orange fill that buries the icon */
.work-process-box .icon-box::before {
  display: none !important;
}
/* Simple smooth hover: orange background, white icon */
.work-process-box .icon-box {
  transition: background-color 0.35s ease;
}
.work-process-box:hover .icon-box {
  background-color: var(--theme-color) !important;
}
.work-process-box:hover .icon-box i {
  color: #fff !important;
  position: relative;
}

/* ── Process step cards ── */
.work-process-box .icon-box i {
  color: var(--theme-color);
}

/* ── Section label color ── */
.section-sub-title {
  color: var(--theme-color) !important;
}

/* ── Responsive adjustments ── */
@media (max-width: 767px) {
  .ic-cta-section h2 { font-size: 2.6rem; }
  .ic-stats-bar .icon-box-counter-area { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 10px; }
  .ic-project-overlay { transform: translateY(0); }
}
