/**
 * Cleaned Main Styles for TCP Company Ghana
 * Based on UpConstruction Template (deduped + organized)
 */

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  /* Fonts */
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* Global Colors */
  --background-color: #ffffff;
  --default-color: #364d59;
  --heading-color: #52565e;
  --accent-color: #feb900;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Nav Colors */
  --nav-color: rgba(255, 255, 255, 0.55);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #feb900;

  /* Smooth scroll */
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Light/Dark helpers
--------------------------------------------------------------*/
.light-background {
  --background-color: #f4f7f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  padding-top: 0 !important;
  margin: 0;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin: 0 0 15px 0;
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/* Section title helper */
.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.header-sticky-spacer {
  display: none !important;
  height: 0 !important;
}

.sticky-top {
  top: 0 !important;
}

/* Header (homepage style) */
.header {
  background: #0a1a44 !important;
  color: #ffffff;
  padding: 6px 0 !important;
  height: 62px !important;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  z-index: 997;
  box-shadow: none !important;
}

/* Logo + site title */
#header .logo {
  display: flex !important;
  align-items: center !important;
}

#header .tcp-logo {
  height: 38px;
  width: auto;
  display: block;
}

#header .tcp-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* FIX THE GIANT LOGO ISSUE */
header .logo img {
  width: 40px !important;
  height: auto !important;
  object-fit: contain !important;
}

#header h1,
#header .sitename {
  margin: 0 !important;
  padding: 0 !important;
}

/* Small screens header title */
@media (max-width: 991.98px) {
  #header .tcp-title {
    font-size: 14px;
  }
}

/* Header logo image (specific) */
#header .logo img {
  height: 34px !important;
  width: auto !important;
}

/* Site title span (gold) */
#header .logo span {
  color: #ffd24c !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}

/* Extra responsive header tweaks */
@media (max-width: 1024px) {
  #header img {
    height: 42px !important;
  }
  #header .ms-2 {
    font-size: 14px !important;
  }
}

/* Bootstrap navbar collapse visibility (mobile) */
.navbar-collapse {
  background-color: #fff !important;
  z-index: 9999 !important;
}

.navbar-nav .nav-link {
  color: #000 !important;
}

/* Force mobile menu links to be dark and visible */
.navbar-collapse .nav-link,
.navbar-nav li a {
  color: #333333 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 0 10px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  /* Underline bar on hover/active */
  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffd24c;
  }

  /* Dropdown */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #0a1a44;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 400;
    color: #ffffff;
  }

  .navmenu .dropdown ul a:hover {
    color: #ffd24c;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  /* Nested dropdown */
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  /* NAV LINKS (gap) */
  .navmenu > ul {
    gap: 26px !important;
  }

  .navmenu a {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .navmenu .active {
    color: #ffd24c !important;
  }

  .navmenu > ul > li > a:before {
    background: #ffd24c !important;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff !important;
    font-size: 28px !important;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.3s ease-in-out;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: transparent !important;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Hero + Categories
--------------------------------------------------------------*/
.hero-section {
  padding: 0 !important;
}

/* Hero carousel */
#heroCarousel .carousel-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.carousel-caption h2 {
  font-size: 1.5rem !important;
  margin-bottom: 10px !important;
}

/* Remove big spacing above and below categories */
.categories-section {
  padding: 0 !important;
  margin: 0 !important;
}

.categories-title {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  text-align: center;
}

/* Categories grid */
.categories {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 10px !important;
}

/* Category card */
.category {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  height: 180px;
}

.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.category:hover img {
  transform: scale(1.05);
}

.category h3 {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease;
  background: none;
  border-radius: 0;
}

.category:hover h3 {
  color: #ffd700;
}

@media (max-width: 1200px) {
  .categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Pull showroom section up */
.about-us {
  margin-top: 0 !important;
  padding-top: 20px !important;
}

.showroom-title {
  margin-top: 0;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 700;
  font-size: 1.5rem;
}

/* About-us image sizing */
.about-us .col-md-6 img {
  width: 100% !important;
  height: 400px !important;
  object-fit: cover !important;
  border-radius: 14px !important;
  display: block !important;
}

/* Reduce left-right spacing */
.about-us .col-md-6 {
  padding: 0 10px !important;
}

@media (max-width: 768px) {
  .about-us .col-md-6 img {
    height: 280px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .about-us .col-md-6 {
    padding: 0 12px !important;
  }
}

.featured-products {
  padding-bottom: 70px !important;
}

/* Gradient background helper */
.tcp-gradient-bg {
  background: linear-gradient(180deg, #0a1a44, #f5f8fa);
  background-size: cover;
}

/* Divider */
.tcp-divider {
  height: 1px;
  background: #e0e0e0;
  width: 88%;
  margin: 25px auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/*--------------------------------------------------------------
# Blog posts / cards
--------------------------------------------------------------*/
#blog-posts {
  margin-top: 40px;
}

.post-content {
  min-height: 250px;
}

.readmore {
  background: #0a1a44;
  color: #fff !important;
  padding: 7px 15px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.readmore:hover {
  background: #feb900;
  color: #0a1a44 !important;
}

/* Universal hover effect for cards */
.product-card,
.post-img,
.service-item,
.thumb,
.blog-posts article,
.services .service-item {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.product-card img,
.post-img img,
.service-item img,
.thumb img {
  transition: transform 0.45s ease;
}

.product-card:hover,
.post-img:hover,
.service-item:hover,
.thumb:hover,
.blog-posts article:hover,
.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.product-card:hover img,
.post-img:hover img,
.service-item:hover img,
.thumb:hover img {
  transform: scale(1.08);
}

/*--------------------------------------------------------------
# About Page (Hero + Media + Story + Mission/Vision + Journey)
--------------------------------------------------------------*/
.about-page {
  padding-top: 80px;
}

/* About hero */
.about-page .about-hero {
  padding: 50px 0 40px;
  background: #f7f9fc;
  color: #15035c;
}

.about-page .about-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-page .about-subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.about-page .hero-flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

/* side images */
.about-page .side-img {
  width: 260px;
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* center video */
.about-page .hero-video {
  width: 360px;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

/* Generic about video blocks */
.about-hero-video .hero-video,
.about-video {
  width: 65vw;
  max-width: 900px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

.about-hero-video .hero-video {
  margin: 40px auto 20px;
}

.about-video {
  margin: 0 auto 20px auto;
}

/* Mobile layout for about hero */
@media (max-width: 991px) {
  .about-page .hero-flexbox {
    flex-direction: column;
  }

  .about-page .side-img,
  .about-page .hero-video {
    width: 100%;
    max-width: 420px;
    height: auto;
  }
}

@media (max-width: 900px) {
  .hero-video,
  .side-media {
    width: 90%;
    height: auto;
  }

  .about-media-row {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .about-page .hero-video {
    height: 240px !important;
  }
  .about-page .side-img {
    display: none !important;
  }
}

/* Centered About Page Title */
.about-header-title {
  text-align: center;
  padding: 40px 0 10px;
}

.about-header-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 auto;
  color: #111;
  letter-spacing: 1px;
}

/* Force center alignment for About section blocks */
.about,
.about section,
.about .container,
.about .row,
.about * {
  text-align: center !important;
}

#about,
#about * {
  text-align: center !important;
}

#about .row {
  justify-content: center !important;
}

#about .about-text {
  margin: 0 auto !important;
  display: block;
  max-width: 800px;
}

#about .about-img {
  display: flex;
  justify-content: center;
}

/* TCP story section */
.about-page .tcp-story {
  padding: 60px 0 40px;
  background: #ffffff;
}

.about-page .story-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about-page .est {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 25px;
}

.about-page .story-subtitle {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-page .story-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
  text-align: left;
}

.about-page .story-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px;
}

.about-page .story-list li {
  text-align: left;
  padding-left: 0;
  margin-bottom: 14px;
}

/* Mission & Vision */
.about-page .mission-vision {
  background: #f5f7fb;
  padding: 60px 0;
}

.about-page .section-label {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 25px;
}

.about-page .mv-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.about-page .mv-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-page .mv-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

#mission-vision .p-4 {
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}

/* Journey */
.about-page .journey {
  padding: 60px 0 80px;
  background: #ffffff;
}

.about-page .journey-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about-page .section-subtitle {
  text-align: center;
  font-size: 15px;
  color: #777;
  margin-bottom: 35px;
}

.about-page .journey-row {
  margin-top: 15px;
}

.about-page .journey-card {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about-page .journey-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0a1a44;
}

.about-page .journey-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Timeline Section
--------------------------------------------------------------*/
.timeline-section {
  padding: 70px 0;
  background: #f8fafc;
  text-align: center;
}

.timeline-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0f172a;
}

.timeline-subtitle {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 50px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: #cbd5e1;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  padding: 20px 30px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1s; }

.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }

.timeline-item .content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #1e40af;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.timeline-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #1e40af;
}

.timeline-item p {
  margin: 0;
  color: #334155;
  line-height: 1.6;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .timeline-item,
  .timeline-item.right,
  .timeline-item.left {
    width: 100%;
    left: 0;
  }

  .timeline::after {
    left: 20px;
  }

  .timeline-item .content {
    margin-left: 40px;
  }
}

/* Extra story padding helper */
.tcp-story {
  padding-top: 50px;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .tcp-story {
    padding-left: 12px;
    padding-right: 12px;
  }
  .story-title {
    font-size: 1.8rem;
  }
}

/*--------------------------------------------------------------
# Why choose us icon hover
--------------------------------------------------------------*/
.icon-style {
  font-size: 50px;
  color: #0077b6;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.why-choose-us .col:hover .icon-style {
  animation: bounce 0.6s;
  color: #023e8a;
}

/*--------------------------------------------------------------
# Page Title (Inner Banners)
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* No-text banner variant */
.page-title.no-text-banner {
  min-height: 400px;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.page-title.no-text-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent !important;
  z-index: 1;
}

.page-title.no-text-banner .container {
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# WhatsApp Floating Button
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 22px;
  right: 22px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  line-height: 60px;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  color: #ffffff;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.contact .info-item:hover {
  transform: translateY(-5px);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
  margin: 0 auto 10px auto;
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form,
.php-email-form {
  background: #fff;
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}

/* Form inputs */
.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Responsive benefit grid */
@media (max-width: 991px) {
  .wm-benefit-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .wm-benefit-inner {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Footer (Dark TCP Footer)
--------------------------------------------------------------*/
.footer {
  background: #0a1a44 !important;
  color: #ffffff !important;
  padding: 10px 0 !important;
  background-size: cover;
  background-position: center;
  position: relative;
}

.footer:before {
  content: none !important;
  background: transparent !important;
}

.footer .container {
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo span,
.footer h4,
.footer h3 {
  color: #ffffff !important;
}

.footer .footer-links ul a {
  color: #d7d7d7 !important;
}

.footer .footer-links ul a:hover {
  color: #feb900 !important;
}

.footer .footer-contact p {
  color: #e9e9e9 !important;
}

.footer .social-links a {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.footer .social-links a i {
  color: #ffffff !important;
}

.footer .social-links a:hover {
  background: #feb900 !important;
  color: #0a1a44 !important;
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #f1f1f1 !important;
  padding-top: 25px;
  padding-bottom: 25px;
}

.footer .copyright p {
  margin-bottom: 0;
}

/* Footer text color fix */
.footer p {
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer p:last-of-type {
  color: #ffffff !important;
  opacity: 0.8 !important;
  font-size: 13px;
  margin-top: 15px;
}

/*--------------------------------------------------------------
# PHP Email Form Messages (Contact page)
--------------------------------------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
