/*
Theme Name:     Comit Child Theme
Description:    Divi Child theme built by comit developers
Author:         Comit Developers
Template:       Divi
Version:        0.0.1
*/
#top-menu li.current-menu-item>a,
#top-menu li.current-menu-ancestor>a {
	color:#ed1c24!important;
}
/* Rourk Tech Button - Smooth Version */
.et_pb_button,
.et_pb_button_module_wrapper .et_pb_button {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  background:
    linear-gradient(180deg, #ff2a32 0%, #ed1c24 50%, #b80f16 100%) !important;

  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 4px !important;

  /* subtle tech angle (less aggressive) */
  clip-path: polygon(
    8px 0,
    100% 0,
    100% calc(100% - 8px),
    calc(100% - 8px) 100%,
    0 100%,
    0 8px
  );

  padding: 15px 32px !important;
  font-weight: 700 !important;
  font-size: 15px !important;

  box-shadow:
    0 8px 18px rgba(237, 28, 36, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.2);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
@media (max-width: 430px) {
  .et_pb_button,
  .et_pb_button_module_wrapper .et_pb_button {
    padding: 15px!important;
  }
}
/* subtle texture (static, no animation) */
.et_pb_button:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.06) 0,
      rgba(255,255,255,0.06) 1px,
      transparent 1px,
      transparent 6px
    );
  opacity: 0.25;
  pointer-events: none;
}

/* Arrow */
.et_pb_button:after {
  content: "→" !important;
  font-size: 18px !important;
  margin-left: 10px !important;
  position: relative !important;
  top: 1px !important;
  transition: transform 0.25s ease;
}

/* Hover (clean + controlled) */
.et_pb_button:hover,
.et_pb_button_module_wrapper .et_pb_button:hover {
  background:
    linear-gradient(180deg, #ff3a40 0%, #ed1c24 50%, #a80c12 100%) !important;

  border-color: rgba(255,255,255,0.28) !important;

  transform: translateY(-2px);

  box-shadow:
    0 12px 26px rgba(237, 28, 36, 0.38),
    0 0 12px rgba(237, 28, 36, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

/* Arrow movement (subtle, not jumpy) */
.et_pb_button:hover:after {
  transform: translateX(4px);
}
@media (max-width: 430px) {
  .rourk-button-stack-mobile .et_pb_column {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px;
  }

  .rourk-button-stack-mobile .et_pb_button_module_wrapper,
  .rourk-button-stack-mobile .et_pb_button {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
  }
}

/* Rourk Eyebrow Text */
.rourk-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #ed1c24;
  margin-bottom: 10px;
  display: block;
}

/* Optional: tighter version for smaller sections */
.rourk-eyebrow--sm {
  font-size: 12px;
  letter-spacing: 1.4px;
  margin-bottom: 6px;
}

/* Optional: light-on-dark variant */
.rourk-eyebrow--light {
  color: rgba(255,255,255,0.85);
}
/* ================================
   ROURK TECH BACKGROUND
   Apply to Divi Section:
   CSS Class: rourk-tech-bg
================================ */

.rourk-tech-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 40%, rgba(237,28,36,0.18) 2px, transparent 3px),
    radial-gradient(circle at 60% 70%, rgba(237,28,36,0.15) 2px, transparent 3px),
    #050505;
  background-size: 220px 220px, 260px 260px, auto;
}

/* Ensure content sits above effects */
.rourk-tech-bg .et_pb_row,
.rourk-tech-bg .et_pb_module {
  position: relative;
  z-index: 3;
}

/* ================================
   MOVING TECH LINES
================================ */
.rourk-tech-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image:
    linear-gradient(90deg, transparent 0%, rgba(237,28,36,0.9) 50%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(237,28,36,0.65) 50%, transparent 100%),
    linear-gradient(135deg, transparent 45%, rgba(237,28,36,0.4) 46%, transparent 48%);

  background-size:
    600px 2px,
    420px 2px,
    300px 300px;

  background-position:
    -600px 30%,
    -420px 65%,
    right center;

  opacity: 0.75;

  animation: rourkTechMove 7s linear infinite;
}

/* ================================
   GLOW + DARK OVERLAY
================================ */
.rourk-tech-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    radial-gradient(circle at 80% 45%, rgba(237,28,36,0.35), transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(237,28,36,0.2), transparent 32%),
    linear-gradient(90deg, #050505 0%, rgba(5,5,5,0.6) 40%, rgba(5,5,5,0.85) 100%);
}

/* ================================
   ANIMATION
================================ */
@keyframes rourkTechMove {
  from {
    background-position:
      -600px 30%,
      -420px 65%,
      right center;
  }

  to {
    background-position:
      600px 30%,
      420px 65%,
      calc(100% - 300px) center;
  }
}

/* ================================
   ACCESSIBILITY (optional)
================================ */
@media (prefers-reduced-motion: reduce) {
  .rourk-tech-bg::before {
    animation: none;
  }
}

/* Default tile interest */
.rourk-service-tiles .et_pb_blurb {
  position: relative;
  padding: 32px 28px;
  border: 1px solid rgba(237, 28, 36, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.035), transparent 38%),
    linear-gradient(#ffffff, #ffffff);
  overflow: hidden;
  transition: all 0.28s ease;
}

/* subtle tech corner */
.rourk-service-tiles .et_pb_blurb::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
  border-top: 2px solid rgba(237, 28, 36, 0.32);
  border-right: 2px solid rgba(237, 28, 36, 0.32);
  border-radius: 0 10px 0 0;
  transition: all 0.28s ease;
}

/* faint line texture */
.rourk-service-tiles .et_pb_blurb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(237, 28, 36, 0.035) 0,
    rgba(237, 28, 36, 0.035) 1px,
    transparent 1px,
    transparent 8px
  );
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

/* keep content above effects */
.rourk-service-tiles .et_pb_blurb_content {
  position: relative;
  z-index: 2;
}

/* icon */
.rourk-service-tiles .et_pb_main_blurb_image img {
  filter: drop-shadow(0 8px 16px rgba(237, 28, 36, 0.12));
  transition: all 0.28s ease;
}

/* hover state */
.rourk-service-tiles .et_pb_blurb:hover {
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.08), transparent 42%),
    #ffffff;
  border-color: rgba(237, 28, 36, 0.45);
  box-shadow: 0 18px 38px rgba(237, 28, 36, 0.11);
  transform: translateY(-4px);
}

.rourk-service-tiles .et_pb_blurb:hover::before {
  width: 78px;
  height: 78px;
  border-color: rgba(237, 28, 36, 0.75);
}

.rourk-service-tiles .et_pb_blurb:hover::after {
  opacity: 0.65;
}

.rourk-service-tiles .et_pb_blurb:hover .et_pb_main_blurb_image img {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 12px 22px rgba(237, 28, 36, 0.22));
}

/* CTA icon with circular tech frame */
.rourk-cta-icon {
  width: 160px;
  height: 160px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 2px solid rgba(237, 28, 36, 0.6);

  /* subtle glow */
  box-shadow:
    0 0 18px rgba(237, 28, 36, 0.35),
    inset 0 0 18px rgba(237, 28, 36, 0.15);
}

/* icon inside */
.rourk-cta-icon img {
  max-width: 90px;
  height: auto;
  display: block;

  filter: drop-shadow(0 0 10px rgba(237, 28, 36, 0.6));
}

/* Rourk CTA Panel Row */
.rourk-cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(237, 28, 36, 0.75);
  border-radius: 4px;
  padding: 34px 46px !important;

  clip-path: polygon(
    22px 0,
    100% 0,
    100% calc(100% - 22px),
    calc(100% - 22px) 100%,
    0 100%,
    0 22px
  );

  box-shadow:
    0 0 18px rgba(237, 28, 36, 0.38),
    0 0 34px rgba(237, 28, 36, 0.22),
    inset 0 0 22px rgba(237, 28, 36, 0.12);
}

/* subtle top highlight */
.rourk-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: inherit;
}

/* small red glow accents */
.rourk-cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(237,28,36,0.45) 0 2px, transparent 4px),
    radial-gradient(circle at 55% 92%, rgba(237,28,36,0.45) 0 2px, transparent 4px),
    radial-gradient(circle at 88% 20%, rgba(237,28,36,0.45) 0 2px, transparent 4px);
  opacity: 0.9;
}

/* keep modules above effects */
.rourk-cta-panel .et_pb_column,
.rourk-cta-panel .et_pb_module {
  position: relative;
  z-index: 2;
}

/* mobile */
@media (max-width: 767px) {
  .rourk-cta-panel {
    padding: 30px 24px !important;
    clip-path: polygon(
      16px 0,
      100% 0,
      100% calc(100% - 16px),
      calc(100% - 16px) 100%,
      0 100%,
      0 16px
    );
  }
}

/* ================================
   ROURK TRUST ICON SYSTEM
   Apply to ROW: rourk-trust-row
================================ */

/* icon container */
.rourk-trust-row .et_pb_main_blurb_image {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 100%;
    border: 2px solid rgb(255 255 255 / 52%);
    transition: all 0.25s ease;
}

/* icon itself */
.rourk-trust-row .et_pb_main_blurb_image img,
.rourk-trust-row .et-pb-icon {
  max-width: 30px;
  height: auto;

  filter: drop-shadow(0 0 6px rgba(237, 28, 36, 0.6));
  transition: all 0.25s ease;
}

/* hover (optional but recommended) */
.rourk-trust-row .et_pb_blurb:hover .et_pb_main_blurb_image {
  border-color: rgba(237, 28, 36, 0.85);

  box-shadow:
    0 0 18px rgba(237, 28, 36, 0.4),
    inset 0 0 14px rgba(237, 28, 36, 0.2);

  transform: translateY(-2px);
}

.rourk-trust-row .et_pb_blurb:hover .et_pb_main_blurb_image img,
.rourk-trust-row .et_pb_blurb:hover .et-pb-icon {
  transform: scale(1.08);
}
/* ================================
   ROURK CHECKLIST STYLE
================================ */

.rourk-checklist ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.rourk-checklist li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
  color: #333;
}

/* red circle */
.rourk-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ed1c24;
  box-shadow:
    0 4px 10px rgba(237, 28, 36, 0.25);
}

/* checkmark */
.rourk-checklist li::after {
  content: "✔";
  position: absolute;
  left: 5px;
  top: 2px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 700;
}
/* Rourk Testimonials - clean trust cards */
.rourk-testimonial-row .et_pb_column {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(237, 28, 36, 0.12);
  border-radius: 14px;
  padding: 46px 18px 16px !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.055);
}

/* Quote mark */
.rourk-testimonial-row .et_pb_column::before {
  content: "“";
  position: absolute;
  top: 22px;
  left: 34px;
  color: #ed1c24;
  font-size: 58px;
  line-height: 1;
  font-weight: 700;
  opacity: 0.18;
}

/* subtle red accent line */
.rourk-testimonial-row .et_pb_column::after {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 70px;
  height: 3px;
  background: #ed1c24;
  border-radius: 999px;
  opacity: 0.65;
}

/* testimonial text */
.rourk-testimonial-row p {
  color: #3f4650;
  margin-bottom: 26px;
}

/* name */
.rourk-testimonial-row strong,
.rourk-testimonial-row b {
  display: block;
  color: #151515;
  font-weight: 700;
  margin-top: 20px;
}

/* mobile */
@media (max-width: 767px) {
  .rourk-testimonial-row .et_pb_column {
    padding: 42px 28px 32px !important;
    margin-bottom: 28px;
  }
}

/* ================================
   ROURK DIFFERENCE LIST - IMPACT VERSION
================================ */

.rourk-difference-list {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.rourk-difference-list .et_pb_column {
  padding: 0 !important;
}

.rourk-difference-item {
  margin: 0 !important;
}

.rourk-difference-item .et_pb_text_inner {
  display: grid;
  grid-template-columns: 118px 1fr 1.2fr;
  align-items: center;
  gap: 30px;
  min-height: 86px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rourk-difference-item:last-child .et_pb_text_inner {
  border-bottom: none;
}

/* Larger angled number tab */
.rourk-diff-num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background:
    linear-gradient(135deg, #020202 0%, #111111 100%);
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0 100%);
  box-shadow:
    inset -12px 0 22px rgba(237, 28, 36, 0.24);
}

.rourk-diff-num::after {
  content: "";
  position: absolute;
  bottom: 18px;
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: #ed1c24;
  box-shadow: 0 0 10px rgba(237, 28, 36, 0.45);
}

/* Title */
.rourk-diff-title {
  color: #0f1115;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
}

/* Copy */
.rourk-diff-copy {
  position: relative;
  color: #3f4650;
  font-size: 17px;
  line-height: 1.4;
  padding-left: 30px;
}

.rourk-diff-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(0, 0, 0, 0.22);
}

/* Tablet */
@media (max-width: 980px) {
  .rourk-difference-list {
    max-width: 760px;
  }

  .rourk-difference-item .et_pb_text_inner {
    grid-template-columns: 96px 1fr;
    gap: 22px;
    padding-right: 24px;
    min-height: 92px;
  }

  .rourk-diff-copy {
    grid-column: 2;
    padding-left: 0;
    font-size: 16px;
  }

  .rourk-diff-copy::before {
    display: none;
  }

  .rourk-diff-title {
    font-size: 23px;
  }

  .rourk-diff-num {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .rourk-difference-item .et_pb_text_inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 22px 24px;
  }

  .rourk-diff-num {
    width: 86px;
    height: 66px;
    align-self: auto;
    margin-left: -22px;
    font-size: 24px;
  }

  .rourk-diff-num::after {
    bottom: 13px;
    width: 30px;
  }

  .rourk-diff-title {
    font-size: 22px;
  }

  .rourk-diff-copy {
    grid-column: auto;
    font-size: 16px;
  }
}
.phone a {
    background: linear-gradient(180deg, #ff2d35 0%, #ed1c24 100%);
    color: #fff !important;
    padding: 12px 20px !important;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(237, 28, 36, 0.25);
    transition: all 0.3s ease;
}

.phone a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(237, 28, 36, 0.35);
}
@media only screen and (max-width: 1337px) {
    #logo {
        max-height: 65%!important;
    }
}
@media only screen and (max-width: 1174px) {
    #logo {
        max-height: 50%!important;
    }
	#main-header .container {
		width:95%!important;
	}
}