/* Container for the call button in header */
.ppd-top-call-wrapper {
  position: absolute;        /* adjust if your header uses flex/grid instead */
  top: 24px;                 /* tweak for exact vertical alignment */
  right: 40px;               /* tweak for exact horizontal alignment */
  z-index: 100;
}

/* Call-to-action button */
.ppd-top-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background-color: #c82b2b;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transition: background-color 0.2s ease, transform 0.2s ease,
              box-shadow 0.2s ease;
}

.ppd-top-call-btn:hover,
.ppd-top-call-btn:focus {
  background-color: #e13838;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

.ppd-top-call-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Optional responsive tweaks */
@media (max-width: 768px) {
  .ppd-top-call-wrapper {
    top: 16px;
    right: 16px;
  }
  .ppd-top-call-btn {
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
  }
}
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

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

/* Content */
.service-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-tag {
  font-size: 13px;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 8px;
}

.service-content h4 {
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 15px;
}

/* Button always aligns bottom */
.service-btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 18px;
  background: #c00000;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   PERFECT POUR CONTACT INTRO
================================ */

.ppd-contact-image img{
  border-radius:20px;
  box-shadow:0 30px 70px rgba(0,0,0,.15);
}

.ppd-contact-content{
  padding-left:10px;
}

.ppd-eyebrow{
  display:inline-block;
  color:#c00;
  font-weight:700;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:10px;
}

.ppd-heading{
  font-size:42px;
  font-weight:800;
  line-height:1.15;
  margin-bottom:16px;
}

.ppd-description{
  color:#666;
  max-width:520px;
  margin-bottom:32px;
  line-height:1.6;
}

/* Contact cards */
.ppd-contact-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

.ppd-contact-card{
  background:#fff;
  padding:24px;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  text-align:left;
}

.ppd-contact-card h5{
  font-weight:700;
  margin:10px 0 6px;
}

.ppd-contact-card p{
  margin:0;
  font-size:15px;
  color:#555;
}

.ppd-contact-card a{
  color:#111;
  font-weight:600;
}

.ppd-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#ffe5e5;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#c00;
}

/* Mobile */
@media(max-width:768px){
  .ppd-heading{
    font-size:34px;
  }
}
.mainmenu li.highlight a{
  background:#c00;
  color:#fff !important;
  padding:8px 16px;
  border-radius:30px;
  
}
/* =====================================
   Draft Beer System Comparison Table
===================================== */

.draft-compare-table {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Header row */
.draft-compare-table thead th {
    background: linear-gradient(135deg, #7a1c1c, #a52a2a);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

/* First column (Features) */
.draft-compare-table tbody td:first-child {
    font-weight: 600;
    color: #333;
    background: #f9f9f9;
}

/* Body cells */
.draft-compare-table td {
    padding: 16px 14px;
    font-size: 15px;
    color: #444;
    border-color: #e6e6e6;
}

/* Zebra striping */
.draft-compare-table tbody tr:nth-child(even) td {
    background-color: #fcfcfc;
}

/* Highlight Long Draw column */
.draft-compare-table tbody td:nth-child(3) {
    background: #fff7f7;
    font-weight: 600;
    color: #7a1c1c;
}

/* Hover effect */
.draft-compare-table tbody tr:hover td {
    background-color: #f1f1f1;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .draft-compare-table thead {
        display: none;
    }

    .draft-compare-table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 10px;
        background: #fff;
    }

    .draft-compare-table td {
        display: flex;
        justify-content: space-between;
        text-align: left;
        padding: 10px;
        border: none;
        border-bottom: 1px solid #eee;
    }

    .draft-compare-table td:last-child {
        border-bottom: none;
    }

    .draft-compare-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #7a1c1c;
    }
}
