
/* BASE */
:root {
    --primary-red: #BB2D3B;
    --dark-red: #96242F;
    --light-red: #f65959;
    --text-dark: #1a1a1a;
    --text-mid: #444;
    --text-light: #666;
    --white: #fff;
    --gray-bg: #f5f6f9;
    --border-gray: #ddd;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-lg: 20px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;overflow-x:clip;line-height:1.55;color:#333;font-size:14px}
img{max-width:100%;height:auto;display:block}
section{padding:44px 0}

/* TYPOGRAPHY */
.section-title{font-size:1.45rem !important;font-weight:700;color:#1a1a1a;margin-bottom:6px;line-height:1.25}
.section-title .highlight{color:#d11f25}
.section-header{text-align:center;margin-bottom:28px}
.section-header p{font-size:0.88rem;color:#555;margin:6px auto 0;line-height:1.6;text-align:left !important;}


/* HERO */
.hero-section {
    min-height: 300px;
    background: linear-gradient(rgba(0,0,0,0.06), rgba(0,0,0,0.06)), url('../bg.webp') no-repeat center/cover;
    color: var(--text-dark);
    padding: 60px 20px 80px;
    position: relative;
}
.logo { width: auto; height: 32px; max-width: 200px; }
.hero-title { font-size: clamp(1rem, 4vw, 2rem)!important; font-weight: 800; margin: 25px 0 18px; color: var(--primary-red); line-height: 1.2; }
.hero-subtitle { font-size: clamp(1rem, 1vw, 1rem)!important; margin-bottom: 14px; font-weight: 500; color: var(--text-dark); }

/* Brand Slider */
.brand-slider-container { width: 100%; overflow: hidden; padding: 16px 0; background: rgba(255,255,255,0.9); border-radius: 10px; margin: 18px 0; }
.brand-slider-track { display: flex; width: max-content; animation: continuousScroll 30s linear infinite; }
.brand-slide { flex: 0 0 auto; width: 120px; padding: 0 14px; display: flex; align-items: center; justify-content: center; }
.brand-slide img { width: 100%; height: 38px; object-fit: contain; }
@keyframes continuousScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Info Container */
.info-container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 14px; padding: 12px 14px; border: 2px solid var(--text-dark); border-radius: 10px; background: var(--white); }
.info-text { font-weight: 700; font-size: clamp(12px, 1.8vw, 15px); }
.info-separator { color: #ccc; font-weight: 300; }

/* HERO FORM */
/* HERO FORM */
.hero-form-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.form-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #d11f25;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Form layout */
.form-group { margin-bottom: 12px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

/* Labels */
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #d11f25;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.form-group label span {
  font-weight: 400;
  color: #aaa;
  text-transform: none;
  font-size: 10px;
}

/* Inputs */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #e0e0e0;
  border-radius: 0;
  background: transparent;
  padding: 7px 2px;
  font-size: 13px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus {
  border-bottom-color: #d11f25;
  box-shadow: none;
}
.form-group input::placeholder {
  color: #bbb;
  font-size: 12px;
}

/* Phone wrapper */
.phone-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid #e0e0e0;
  transition: border-color 0.2s;
}
.phone-wrap:focus-within { border-bottom-color: #d11f25; }
.phone-wrap input {
  border: none !important;
  flex: 1;
  padding: 7px 2px;
  font-size: 13px;
  outline: none;
  background: transparent;
}

/* File input */
.form-group input[type="file"] {
  width: 100%;
  font-size: 11px;
  color: #555;
  padding: 5px 0;
  cursor: pointer;
}

/* Submit button */
.form-submit {
  background: #d11f25;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  width: 100%;
  margin-top: 4px;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.form-submit:hover { background: #a60d17; }

/* Note */
.form-note {
  font-size: 11px;
  color: #888;
  margin-top: 8px;
  text-align: center;
}
/* ===================================
   SECTION 2: STATS
   =================================== */
.stats-section { padding: 40px 20px; background: #f9fafb; }
.stats-label { text-transform: uppercase; font-weight: 700; font-size: 13px; color: var(--primary-red); letter-spacing: 2px; margin-bottom: 8px; }
.section-title { text-align: center; margin-bottom: 30px; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--text-dark); line-height: 1.2; }
.highlight { color: var(--primary-red); }
.card-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin: 16px auto 0; max-width: 1100px; }
.cards {padding: 20px 16px; border: 2px solid var(--border-gray); border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--white); text-align: center; transition: var(--transition); }
@media(hover:hover){.cards:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary-red); }}
.count { font-size: clamp(34px, 5vw, 44px); font-weight: 800; color: var(--primary-red); line-height: 1; display: flex; align-items: center; justify-content: center; gap: 2px; }
.symbol { font-size: clamp(28px, 4vw, 36px); }
.label  { margin-top: 12px; font-size: clamp(14px, 2vw, 16px); color: #555; font-weight: 600; }

/* LOGO STRIP */
.alumni-section{padding:28px 0;background:#fafafa}
.alumni-section .section-title{font-size:1.25rem;text-align:center;margin-bottom:14px}
.slider-row{overflow:hidden;margin-bottom:8px}
.slide-track{display:flex;gap:22px;width:max-content}
.slider-left .slide-track{animation:slideLeft 22s linear infinite}
.slider-right .slide-track{animation:slideRight 22s linear infinite}
@keyframes slideLeft{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
@keyframes slideRight{0%{transform:translateX(-50%)}100%{transform:translateX(0)}}
.slide-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0 10px;
}

.slide-item img {
  height: 34px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: opacity .2s;
}
.slide-item img:hover{opacity:1;filter:none}

/* ABOUT */
/* ABOUT */
.about-section{background:#fff;content-visibility:auto;contain-intrinsic-size:0 500px}
.about-wrapper{display:flex;gap:28px;align-items:flex-start}
.about-image-column{flex:0 0 37%}
.about-image-column img{width:100%;border-radius:8px;max-height:300px}
.about-content-column{flex:1}
.about-paragraph{font-size:0.86rem;color:#444;margin-bottom:10px;line-height:1.6}
.usp-card{border-left:3px solid #d11f25;background:#f9f9f9;border-radius:5px;padding:9px 11px}
.usp-card h4{font-size:0.82rem;font-weight:700;color:#d11f25;margin-bottom:2px}
.usp-card p{font-size:0.78rem;color:#555;margin:0;line-height:1.5}
.about-cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.btn-primary-red{background:#d11f25;color:#fff;padding:7px 18px;border-radius:50px;font-size:0.83rem;font-weight:600;text-decoration:none;transition:background .2s}
.btn-primary-red:hover{background:#a60d17;color:#fff}
.btn-outline-red{border:2px solid #d11f25;color:#d11f25;padding:7px 18px;border-radius:50px;font-size:0.83rem;font-weight:600;text-decoration:none;transition:all .2s}
.btn-outline-red:hover{background:#d11f25;color:#fff}

/* COMPARISON */
.comparison-section{padding:44px 0;background:#f5f5f5}
.comparison-section .table-wrap{width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;border-radius:10px;display:block}
.comparison-section table{font-size:0.82rem;min-width:500px;width:100%;table-layout:fixed}
.comparison-section tbody td { text-align: left !important; padding-left: 20px; }
.comparison-section thead th{font-size:0.84rem;padding:10px 14px;background:#d11f25;color:#fff}
@media(max-width:575px){
    .comparison-section .table-wrap{border-radius:8px;overflow-x:hidden}
    .cmp-table thead{display:none}
    .cmp-table tbody tr{display:block;margin-bottom:16px;border-radius:10px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.08)}
    .cmp-table tbody td{display:block;width:100%;padding:10px 14px;font-size:0.78rem;border-bottom:1px solid #f0f0f0;text-align:left !important;box-sizing:border-box}
  .cmp-table tbody td:first-child{background:#1a1a1a;color:#fff !important;font-weight:700;font-size:0.84rem;padding:10px 14px;border-bottom:none}
.cmp-table tbody td:nth-child(2) .badge-green{color:#166534 !important;font-size:0.78rem !important;font-weight:600}
.cmp-table tbody td:last-child .badge-yellow{color:#854d0e !important;font-size:0.78rem !important;font-weight:600}
    .cmp-table tbody td:nth-child(2){background:#f0fff4;border-bottom:1px solid #e5e5e5}
    .cmp-table tbody td:nth-child(2)::before{content:"✅ Propshop";display:block;font-size:0.68rem;font-weight:700;color:#166534;text-transform:uppercase;margin-bottom:4px;letter-spacing:0.04em}
    .cmp-table tbody td:last-child{background:#fffbeb;border-bottom:none}
    .cmp-table tbody td:last-child::before{content:"⚠️ Typical Vendors";display:block;font-size:0.68rem;font-weight:700;color:#854d0e;text-transform:uppercase;margin-bottom:4px;letter-spacing:0.04em}
.badge-green{font-size:11px;padding:0;background:none;display:inline;border-radius:0;color:#166534 !important;font-weight:600}
.badge-yellow{font-size:11px;padding:0;background:none;display:inline;border-radius:0;color:#854d0e !important;font-weight:600}
}

/* PORTFOLIO */
.portfolio-section{background:#1a1a1a;padding:44px 0}
.portfolio-badge{display:inline-block;background:#d11f25;color:#fff;font-size:0.72rem;font-weight:700;padding:3px 12px;border-radius:50px;margin-bottom:6px}
.portfolio-content{position:relative;overflow:hidden;border-radius:7px;cursor:pointer;contain:layout style}
.portfolio-content img{width:100%;height:290px !important;transition:transform .3s}
.portfolio-content:hover img{transform:scale(1.04)}
.portfolio-overlay{position:absolute;inset:0;background:rgba(209,31,37,.82);display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s}
.portfolio-content:hover .portfolio-overlay{opacity:1}
.portfolio-overlay-inner{text-align:center;color:#fff;padding:10px}
.portfolio-overlay-inner h3{font-size:0.9rem;font-weight:700;margin-bottom:3px}
.portfolio-overlay-inner p{font-size:0.76rem;margin:0}
.zoom-icon{width:26px;height:26px;margin-bottom:5px}
.see-project-link{display:inline-block;margin-top:4px;font-size:0.76rem;color:#fff;text-decoration:underline}

/* SERVICE / WHY CHOOSE CARDS */
/* SERVICE / WHY CHOOSE CARDS */
.services-section-clean{padding:44px 0;content-visibility:auto;contain-intrinsic-size:0 600px}
.services-grid-3d{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.service-card-3d{background:#fff;border-radius:7px;padding:18px 16px;box-shadow:0 2px 8px rgba(0,0,0,0.07);border-top:3px solid #d11f25}
.service-card-3d h3{font-size:0.9rem;font-weight:700;color:#1a1a1a;margin-bottom:7px;line-height:1.3}
.service-card-3d p{font-size:0.8rem;color:#555;line-height:1.55;margin-bottom:5px}
.service-card-3d .process-circle{width:32px;height:32px;background:#d11f25;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:0.78rem;font-weight:700;margin-bottom:9px;flex-shrink:0}

/* VENUES ACCORDION */
.venue-section{background:#fff}
.faq-container{max-width:860px;margin:0 auto}
.faq-item{border:1px solid #e5e5e5;border-radius:7px;margin-bottom:8px;overflow:hidden}
.faq-question{width:100%;background:#fafafa;border:none;padding:12px 16px;display:flex;justify-content:space-between;align-items:center;cursor:pointer;text-align:left;gap:10px;transition:background .2s}
.faq-question:hover{background:#f0f0f0}
.faq-question h3{font-size:0.9rem;font-weight:600;color:#1a1a1a;margin:0}
.faq-toggle{font-size:1.05rem;font-weight:700;color:#d11f25;flex-shrink:0;transition:transform .25s;width:20px;text-align:center}
.faq-item.active .faq-toggle{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-item.active .faq-answer{max-height:1400px}
.faq-answer-content{padding:14px 16px;font-size:0.82rem;color:#444;line-height:1.6;border-top:1px solid #e5e5e5}
.faq-answer-content p{margin-bottom:6px;font-size:0.82rem}
.faq-answer-content ul{padding-left:16px;margin-bottom:6px}
.faq-answer-content li{font-size:0.8rem;margin-bottom:2px}
.faq-answer-content strong{color:#1a1a1a}
.faq-answer-content img{border-radius:6px;max-height:200px;width:100%}

/* CTA BANNER */
.contact-banner{background:#d11f25;padding:32px 0}
.contact-banner-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.contact-banner-text h2{font-size:1.1rem;font-weight:700;color:#fff;margin:0;line-height:1.3}
.contact-banner-actions{display:flex;gap:10px;flex-wrap:wrap}
.cta-btn-white{background:#fff;color:#d11f25;padding:8px 20px;border-radius:50px;font-size:0.82rem;font-weight:700;text-decoration:none;transition:all .2s;white-space:nowrap}
.cta-btn-white:hover{background:#f0f0f0}
.cta-btn-outline{border:2px solid #fff;color:#fff;padding:8px 20px;border-radius:50px;font-size:0.82rem;font-weight:700;text-decoration:none;display:flex;align-items:center;gap:6px;white-space:nowrap;transition:all .2s}
.cta-btn-outline:hover{background:rgba(255,255,255,.15)}

/* PROCESS */
.process-section-horizontal{background:#f5f5f5}
.process-timeline-wrapper{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.process-step-horizontal{background:#fff;border-radius:7px;padding:16px 14px;box-shadow:0 2px 7px rgba(0,0,0,.06);text-align:center}
.process-circle{width:34px;height:34px;background:#d11f25;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:0.78rem;font-weight:700;margin:0 0 9px 0;}

.process-step-horizontal h3{font-size:0.86rem;font-weight:700;color:#1a1a1a;margin-bottom:7px;text-align:left !important;}

.process-step-horizontal p{font-size:0.78rem;color:#555;line-height:1.55;margin:0;text-align:left !important;}

/* INDUSTRIES */
.industry-card{background:#fff;border-radius:7px;padding:14px;box-shadow:0 2px 8px rgba(0,0,0,.06);border-top:3px solid #d11f25;height:100%;content-visibility:auto;contain-intrinsic-size:0 200px}
.industry-card .icon{font-size:1.5rem;margin-bottom:7px}
.industry-card h3{font-size:0.85rem;font-weight:700;color:#1a1a1a;margin-bottom:5px}
.industry-card p{font-size:0.78rem;color:#555;line-height:1.55;margin:0}

/* CRITERIA */
.criteria-card{display:flex;gap:11px;background:#f9f9f9;border-radius:7px;border-left:4px solid #d11f25;padding:13px 14px;height:100%}
.criteria-num{font-size:1.3rem;font-weight:800;color:#d11f25;line-height:1;min-width:34px;flex-shrink:0}
.criteria-card h3{font-size:0.85rem;font-weight:700;margin-bottom:3px;color:#1a1a1a}
.criteria-card p{font-size:0.78rem;color:#555;margin:0;line-height:1.5}

/* TRADE SHOWS SLIDER */
.show-page-section{padding:44px 0}
.show-slider-outer{position:relative;padding:0 22px}
.show-slider-track{display:flex;gap:12px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;-ms-overflow-style:none;padding:4px 2px 10px;cursor:grab}
.show-slider-track::-webkit-scrollbar{display:none}
.show-slider-track.is-dragging{cursor:grabbing}
.show-logo-card{display:flex;flex-direction:column;justify-content:space-between;padding:14px 12px;background:#fff;border-radius:9px;box-shadow:0 2px 9px rgba(0,0,0,.08);min-width:210px;max-width:220px;flex-shrink:0;scroll-snap-align:start}
.show-logo-card .date-badge {
    display: inline-block;
    background: #d11f25;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    margin-bottom: 7px;
    white-space: normal; /* allow wrap */
    max-width: 100%;
}
.show-logo-card h3{font-size:0.82rem;font-weight:700;color:#1a1a1a;margin-bottom:4px;line-height:1.3}
.show-logo-card .cat{font-size:0.74rem;color:#666;margin-bottom:3px}
.show-logo-card .venue-tag{font-size:0.72rem;color:#888;margin:0}
.show-logo-card .btn{font-size:0.72rem;padding:4px 9px;border-radius:50px;margin-top:9px}
.show-slider-arrow{position:absolute;top:50%;transform:translateY(-60%);width:32px;height:32px;background:#d11f25;color:#fff;border:none;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:2;transition:background .2s}
.show-slider-arrow:hover{background:#a60d17}
.show-slider-arrow:disabled{background:#ccc;cursor:default}
.show-slider-prev{left:0}
.show-slider-next{right:0}
.show-slider-arrow svg{width:16px;height:16px;fill:#fff}
.show-slider-dots{display:flex;justify-content:center;gap:5px;margin-top:12px;flex-wrap:wrap}
.show-slider-dot{width:7px;height:7px;border-radius:50%;background:#ddd;border:none;cursor:pointer;padding:0;transition:background .2s}
.show-slider-dot.active{background:#d11f25}

/* TESTIMONIALS */
.testimonial-section{background:#fff}
.main-heading{font-size:1.45rem;font-weight:700;color:#1a1a1a;text-align:center;margin-bottom:24px}
.searched-text{color:#d11f25}
.testi-wrapper{display:flex;gap:28px;align-items:flex-start}
.testi-image-col{flex:0 0 41%}
.testi-content-col{flex:1}
.testi-img-stack{position:relative}
.testi-img-slider{border-radius:7px;overflow:hidden}
.testi-img-slide{display:none}
.testi-img-slide.active{display:block}
.testi-img-main{width:100%;height:240px;object-fit:cover;border-radius:7px}
.testi-img-badge{position:absolute;bottom:12px;left:12px;background:#fff;border-radius:5px;padding:5px 9px;box-shadow:0 2px 7px rgba(0,0,0,.15)}
.tib-stars{color:#f59e0b;font-size:0.72rem}
.tib-text{font-size:0.7rem;font-weight:600;color:#333}
.testi-img-tag{position:absolute;top:10px;right:10px;background:#d11f25;color:#fff;border-radius:5px;padding:3px 9px;font-size:0.7rem;font-weight:600}
.testi-eyebrow{font-size:0.76rem;font-weight:600;color:#d11f25;text-transform:uppercase;letter-spacing:.05em;margin-bottom:8px}
.testimonial-card-v2{background:#f9f9f9;border-radius:7px;padding:18px}
.quote-mark-v2{font-size:2.6rem;color:#d11f25;line-height:1;margin-bottom:3px;font-family:serif}
.testimonial-text-v2{font-size:0.83rem;color:#444;line-height:1.6;font-style:italic;transition:opacity .2s;margin-bottom:12px}
.testi-footer-v2{display:flex;align-items:center;gap:9px;margin-bottom:12px}
.testi-avatar{width:34px;height:34px;background:#d11f25;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:0.88rem;flex-shrink:0}
.author-name-v2{font-size:0.8rem;font-weight:700;color:#1a1a1a;font-style:normal}
.testi-stars{color:#f59e0b;font-size:0.72rem}
.testi-nav-v2{display:flex;align-items:center;gap:9px}
.testi-btn-prev,.testi-btn-next{width:28px;height:28px;background:#d11f25;border:none;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center}
.testi-btn-prev svg,.testi-btn-next svg{width:15px;height:15px;fill:#fff}
.testi-dots{display:flex;gap:5px}
.indicator-dot{width:7px;height:7px;border-radius:50%;background:#ddd;border:none;cursor:pointer;padding:0}
.indicator-dot.active{background:#d11f25}

/* FINAL CTA */
.final-cta-section{background:#1a1a1a;padding:44px 0;position:relative;overflow:hidden}
.final-cta-inner{display:flex;gap:28px;align-items:center}
.final-cta-content{flex:1}
.final-cta-eyebrow{font-size:0.73rem;font-weight:600;color:#d11f25;text-transform:uppercase;letter-spacing:.06em;margin-bottom:7px}
.final-cta-section h2{font-size:1.45rem;font-weight:700;color:#fff;margin-bottom:9px;line-height:1.25}
.final-cta-sub{font-size:0.84rem;color:#bbb;margin-bottom:12px;line-height:1.55}
.final-cta-trust{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:16px}
.final-cta-trust span{font-size:0.78rem;color:#ccc}
.final-cta-actions{display:flex;gap:10px;flex-wrap:wrap}
.fcta-btn-primary{background:#d11f25;color:#fff;padding:9px 20px;border-radius:50px;font-size:0.83rem;font-weight:700;text-decoration:none;display:flex;align-items:center;gap:5px;transition:background .2s}
.fcta-btn-primary:hover{background:#a60d17;color:#fff}
.fcta-btn-secondary{border:2px solid #fff;color:#fff;padding:9px 20px;border-radius:50px;font-size:0.83rem;font-weight:700;text-decoration:none;display:flex;align-items:center;gap:5px;transition:all .2s}
.fcta-btn-secondary:hover{background:rgba(255,255,255,.1)}
.final-cta-visual{flex:0 0 41%;position:relative}
.fcta-img-1{width:100%;object-fit:cover;height:230px;border-radius:7px}
.fcta-img-2{position:absolute;object-fit:cover;bottom:-10px;left:-10px;width:130px;height:90px;=border-radius:5px;border:3px solid #1a1a1a}
.fcta-float-badge{position:absolute;top:10px;right:10px;background:#fff;border-radius:5px;padding:6px 9px;display:flex;align-items:center;gap:5px;box-shadow:0 2px 7px rgba(0,0,0,.2)}
.fcta-float-badge strong{font-size:0.82rem;font-weight:700;color:#1a1a1a;display:block;line-height:1}
.fcta-float-badge span{font-size:0.68rem;color:#777}

/* FAQ PAGE */
.faq-page-section{background:#fafafa}

/* LIGHTBOX */
.pf-lightbox{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center}
.pf-hidden{display:none!important}
.pf-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.88)}
.pf-content{position:relative;z-index:1;text-align:center;max-width:85vw}
.pf-image{max-height:74vh;max-width:100%;border-radius:5px;transition:opacity .2s}
.pf-caption{margin-top:8px}
.pf-caption h3{color:#fff;font-size:0.95rem;font-weight:700}
.pf-caption p{color:#ccc;font-size:0.8rem}
.pf-close,.pf-prev,.pf-next{position:absolute;background:rgba(255,255,255,.15);border:none;cursor:pointer;border-radius:50%;width:36px;height:36px;display:flex;align-items:center;justify-content:center;z-index:2;transition:background .2s}
.pf-close:hover,.pf-prev:hover,.pf-next:hover{background:rgba(255,255,255,.3)}
.pf-close{top:14px;right:14px}
.pf-prev{left:14px;top:50%;transform:translateY(-50%)}
.pf-next{right:14px;top:50%;transform:translateY(-50%)}
.pf-close svg,.pf-prev svg,.pf-next svg{width:18px;height:18px}

/* RESPONSIVE */
@media(max-width:991px){
    .services-grid-3d{grid-template-columns:repeat(2,1fr)}
    .process-timeline-wrapper{grid-template-columns:repeat(2,1fr)}
    .about-wrapper{flex-direction:column}
    .about-image-column{flex:none;width:100%}
    .testi-wrapper{flex-direction:column}
    .testi-image-col{width:100%}
    .final-cta-inner{flex-direction:column}
    .final-cta-visual{width:100%}
    .contact-banner-inner{flex-direction:column;text-align:center}
}
@media(max-width:575px){
    .hero-title{font-size:1.2rem}
    .section-title{font-size:1.15rem}
    .services-grid-3d{grid-template-columns:1fr}
    .process-timeline-wrapper{grid-template-columns:1fr}
    .hero-section{padding:30px 0 38px}
    section{padding:34px 0}
}
@media(max-width:767px){#venues .container>div[style]{grid-template-columns:1fr !important;}}
 .cmp-table{width:100%;border-collapse:collapse}
    .cmp-table thead th{padding:14px 20px;font-size:13px;font-weight:700;text-align:left;background:#d11f25;color:#fff}
    .cmp-table thead th:first-child{border-radius:10px 0 0 0}
    .cmp-table thead th:last-child{border-radius:0 10px 0 0}
    .cmp-table tbody tr:nth-child(odd) td{background:#f5f6f9}
    .cmp-table tbody tr:nth-child(even) td{background:#ffffff}
    .cmp-table tbody td{padding:13px 20px;font-size:13px;color:#1a1a1a;vertical-align:middle;font-weight:600}
    .badge-green{display:inline-block;color:#166534;font-size:12px;font-weight:600;padding:4px 14px;border-radius:50px}
    .badge-yellow{display:inline-block;color:#854d0e;font-size:12px;font-weight:600;padding:4px 14px;border-radius:50px}
 .vs-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        padding: 4px 0;
    }
    .vs-card-v2 {
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 14px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    }
    .vs-img-wrap {
        position: relative;
        height: 170px;
        overflow: hidden;
    }
    .vs-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .vs-img-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(10,10,10,0.08) 0%, rgba(10,10,10,0.65) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 14px;
    }
    .vs-badge {
        display: inline-block;
        background: #d11f25;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 3px 11px;
        border-radius: 50px;
        margin-bottom: 7px;
        letter-spacing: .04em;
        width: fit-content;
    }
    .vs-card-name {
        font-size: 12.5px;
        font-weight: 800;
        color: #fff;
        line-height: 1.35;
        margin-bottom: 5px;
    }
    .vs-card-loc {
        display: flex;
        align-items: flex-start;
        gap: 4px;
        font-size: 10px;
        color: #ddd;
        line-height: 1.4;
    }
    .vs-card-loc svg {
        flex-shrink: 0;
        margin-top: 1px;
    }
    .vs-body {
        padding: 14px;
        display: flex;
        flex-direction: column;
        flex: 1;
        gap: 10px;
    }
    .vs-stats-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .vs-stat-row {
        padding: 7px 0;
        border-bottom: 1px solid #f4f4f4;
    }
    .vs-stat-row:last-child {
        border-bottom: none;
    }
    .vs-stat-lbl {
        font-size: 10px;
        color: #aaa;
        text-transform: uppercase;
        letter-spacing: .04em;
        margin-bottom: 2px;
    }
    .vs-stat-val {
        font-size: 11.5px;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.4;
    }
    .vs-notes {
        font-size: 10.5px;
        color: #555;
        line-height: 1.65;
        border-top: 1px solid #f0f0f0;
        padding-top: 10px;
    }
    .vs-notes strong {
        color: #1a1a1a;
        font-weight: 700;
    }
    .vs-cta {
        display: block;
        text-align: center;
        background: #d11f25;
        color: #fff;
        font-size: 11.5px;
        font-weight: 700;
        padding: 11px;
        border-radius: 50px;
        text-decoration: none;
        margin-top: auto;
        transition: background .2s;
    }
    .vs-cta:hover {
        background: #a60d17;
        color: #fff;
    }
    @media (max-width: 1024px) {
        .vs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 576px) {
        .vs-grid { grid-template-columns: 1fr; }
    }
    .vt-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
    background: #111;
}
@media(hover:hover){.vt-card:hover {
    transform: translateY(-5px);
    border-color: #d11f25;
}}
.vt-thumb-wrap {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    background: #000;
    display: block;
}
.vt-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.35s ease;
}
.vt-card:hover .vt-thumb {
    transform: scale(1.04);
}
.vt-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
    z-index: 1;
}
.vt-thumb-wrap:hover .vt-overlay {
    background: rgba(209,31,37,0.45);
}
.vt-play-btn {
    width: 64px;
    height: 64px;
    background: rgba(209,31,37,0.95);
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    padding: 0;
    padding-left: 4px;
}
.vt-play-btn:hover {
    transform: scale(1.12);
    background: #d11f25;
}
.vt-duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.70rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.03em;
}
.btn-outline-white-vt {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 9px 24px;
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-outline-white-vt:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.vt-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.vt-modal-box {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}
.vt-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 2;
    background: rgba(0,0,0,0.65);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.vt-modal-close:hover { background: #d11f25; }
.vt-iframe-wrap {
    position: relative;
    padding-top: 177.78%;
}
.vt-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
@media (max-width: 575px) {
    .vt-modal-box { max-width: 100%; }
}