/* =========================================
   BYOB Landing — Clean, Simple, Understandable CSS
   ========================================= */

/* VARIABLES */
:root{
  --red: #ED1C24;
  --black: #0b0b0b;
  --muted: #6b6b6b;
}

/* BASIC RESET */
html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}

*{ box-sizing: border-box; }
body{
  margin:0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--black);
  background:white;
}
/* =========================================
   GLOBAL FONT SYSTEM — BYOB BRAND
   ========================================= */

/* Helvetica everywhere */
body, * {
  font-family: Helvetica, Arial, sans-serif;
}

/* Times New Roman Italic accents */
.accent-italic,
.sub-italic,
em, i {
  font-family: "Times New Roman", serif !important;
  font-style: italic !important;
}

/* Force headings & nav to use Helvetica */
h1, h2, h3, h4, h5, h6,
.header-nav a,
.header-btn,
.cta-button,
.section-title,
.card-title,
.offer-card-title,
.project-title,
.build-title,
.promise-title,
.footer-title {
  font-family: Helvetica, Arial, sans-serif !important;
}

.container{
  width: min(1100px, 90%);
  margin:0 auto;
}

/* =========================================
   LOADER
   ========================================= */
.loader-overlay{
  position: fixed;
  inset:0;
  background:white;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
  transition: opacity .3s ease, visibility .3s ease;
}
.loader-overlay.hidden{
  opacity:0;
  visibility:hidden;
}

/* =========================================
   HEADER + LOGO
   ========================================= */
.site-header{
  position: sticky !important;
  top:0;
  z-index:1000;
  background: transparent;
  backdrop-filter: none;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;

}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:78px;
  padding:0 28px;
  
}
.header-nav{
  display:flex;
  align-items:center;
  gap:28px;
}
.header-nav a{
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  color:#111;
  transition:color .2s ease;
}

.header-nav a:hover{
  color:#ED1C24;
}

/* CTA BUTTON (small) */
.header-btn{
  padding:8px 16px;
  border-radius:22px;
  border:2px solid #ED1C24;
  color:#ED1C24 !important;
  font-weight:700;
  text-decoration:none;
  transition: all .25s ease;
}

.header-btn:hover{
  background:#ED1C24;
  color:white !important;
  box-shadow:0 6px 18px rgba(237,28,36,0.25);
}
.site-logo{
  height:58px;
  width:auto;
  transition: height .3s;
}

/* On scroll, header gains blur + logo shrinks */
/* HEADER ON SCROLL — STRONGER BLUR + SOLID BACKGROUND */
.site-header.scrolled{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 22px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background-header .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}

.site-header.scrolled .site-logo{
  height:46px;
}

/* MOBILE */
@media(max-width:720px){
  .header-nav{
    display:none;
  }
}
/* =========================================
   HERO SECTION
   ========================================= */
.hero-section{
  text-align:center;
  padding:100px 0 80px;
  background: radial-gradient(
    800px 400px at 50% 30%,
    rgba(237,28,36,0.06),
    white 45%
  );
}
.hero-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
}

.hero-title{
  font-size:48px;
  font-weight:800;
  margin:0;
  line-height:1.1;
}
.accent-italic{
  font-family:"Times New Roman", serif;
  font-style:italic;
  color:var(--red);
}

.decor-curve{
  margin:6px 0;
}

.sub-bold{
  font-size:20px;
  font-weight:800;
}
.sub-italic{
  font-family:"Times New Roman", serif;
  font-style:italic;
  color:var(--red);
  font-size:28px;
  margin:0;
}
.muted{
  color:var(--muted);
}

/* HERO TEXT REFINEMENT */
.hero-line-1 {
  font-size: 42px;      /* desktop */
  font-weight: 800;
  margin: 0;
}

.hero-line-2 {
  font-size: 38px;      /* desktop */
  font-family: "Times New Roman", serif !important;
  font-style: italic !important;
  color: #ED1C24;
  margin: -6px 0 8px;   /* pull it closer */
}

.hero-line-3 {
  font-size: 20px;
  color: #6b6b6b;
  margin: 0;
}

/* MOBILE OPTIMIZATION */
@media(max-width: 720px) {
  .hero-line-1 {
    font-size: 30px;
  }
  .hero-line-2 {
    font-size: 28px;
  }
  .hero-line-3 {
    font-size: 16px;
  }
}

/* CTA BUTTON */
.cta-button{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 36px;
  background:var(--red);
  color:white;
  text-decoration:none;
  border-radius:40px;
  font-weight:800;
  box-shadow:0 10px 30px rgba(237,28,36,0.15);
  transition: transform .25s, box-shadow .25s, filter .2s;
}
.cta-button:hover{
  transform: translateY(-4px);
  box-shadow:0 18px 44px rgba(237,28,36,0.28);
  filter:brightness(1.06);
}
.cta-arrow{
  transition: transform .25s;
}
.cta-button:hover .cta-arrow{
  transform: translateX(6px);
}

.cta-button.small{
  padding:10px 20px;
}

/* =========================================
   SECTIONS + REVEAL ANIMATION
   ========================================= */
.section{
  padding:70px 0;
}
.section-title{
  font-size:24px;
  font-weight:800;
  margin-bottom:10px;
}
.section-desc{
  color:var(--muted);
}
/* ===== JOURNEY (Sticky Title + Fade Cards) ===== */

.journey-section{
  position:relative;
  padding:120px 0 120px;
  background:white;
}

/* Sticky Title */
.journey-title-wrapper{
  position:sticky;
  top:90px;
  z-index:5;
  padding-bottom:40px;
  background:white;
}
.journey-title{
  text-align:center;
  font-size:48px;
  font-weight:800;
  margin:0;
  letter-spacing:-0.02em;
}

/* Cards Layout */
.journey-cards{
  margin-top:60px;
  display:flex;
  flex-direction:column;
  gap:120px;
}

/* Single Card */
.journey-card{
  max-width:780px;
  margin:0 auto;
  background:white;
  border-radius:16px;
  padding:0 0 32px 0;
  text-align:center;
  opacity:0.35;
  transform:scale(0.96);
  transition:
    opacity .45s ease,
    transform .45s ease;
}

/* Active card */
.journey-card.active{
  opacity:1;
  transform:scale(1);
}

/* Card Image */
/* JOURNEY CARD IMAGE — FIXED SIZE, NEVER CROPS */
.card-img {
  width: 100%;
  height: 260px;          /* Desktop height */
  object-fit: contain;    /* Show full image without cropping */
  border-radius: 16px 16px 0 0;
  background: #f5f5f5;    /* Soft neutral background behind image */
  padding: 0;             /* No inner padding */
  display: block;
}


/* Titles */
.card-title{
  font-size:32px;
  font-weight:800;
  margin:0 0 12px;
  color:#111;
}

/* Description */
.card-desc{
  font-size:18px;
  line-height:1.55;
  color:#4c4c4c;
}

/* Mobile */
@media(max-width:720px){
  .journey-title{ font-size:36px; }
  .card-title{ font-size:26px; }
  
  .card-img {
    height: 200px;        /* Mobile height */
    object-fit: contain;
  }

  .card-desc{ font-size:16px; }
  .journey-cards{ gap:70px; }
}


/* ===== Reveal animation base (works with IntersectionObserver) ===== */
.reveal-on-scroll{
  opacity:0;
  transform: translateY(18px) scale(0.995);
  transition: opacity .6s cubic-bezier(.2,.9,.3,1), transform .6s cubic-bezier(.2,.9,.3,1);
}

/* in-view state toggled by JS */
.reveal-on-scroll.in-view{
  opacity:1;
  transform: translateY(0) scale(1);
}

/* REVEAL ON SCROLL */
.reveal-on-scroll{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-on-scroll.in-view{
  opacity:1;
  transform: translateY(0);
}
/* ===== BRAND PROMISE SECTION (Standalone + Red) ===== */
/* BRAND PROMISE TYPOGRAPHY POLISH */

/* Title stays Helvetica */
.promise-title {
  font-family: Helvetica, Arial, sans-serif !important;
  font-weight: 800;
}

/* Full paragraph in Times Italic */
.promise-italic {
  font-family: "Times New Roman", serif !important;
  font-style: italic !important;
  font-size: 20px;
  line-height: 1.6;
}

/* Punchline styling */
.promise-punch {
  font-family: "Times New Roman", serif !important;
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  line-height: 1.4;
}

.brand-promise-section{
  background: var(--red);
  padding: 120px 0;
  color: white;
  text-align:center;
}

.promise-title{
  font-size:42px;
  font-weight:800;
  margin-bottom:24px;
  letter-spacing:-0.02em;
}

.promise-desc{
  font-size:20px;
  max-width:850px;
  margin:0 auto;
  line-height:1.55;
  opacity:0.95;
}

@media(max-width:720px){
  .promise-title{ font-size:32px; }
  .promise-desc{ font-size:16px; }
}
/* ============================
   WHAT WE OFFER SECTION
=============================== */

.offer-section{
  padding:120px 0;
  text-align:center;
}

.offer-title{
  font-size:48px;
  font-weight:800;
  margin:0;
}

.offer-underline{
  width:70px;
  height:4px;
  background:#ED1C24;
  border-radius:4px;
  margin:14px auto 20px;
}

.offer-subtitle{
  font-size:18px;
  color:#6b6b6b;
  margin-bottom:60px;
}

/* GRID */
.offer-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap:40px 38px;
  justify-items:center;
}

/* CARD */
.offer-card{
  width:100%;
  max-width:430px;
  background:white;
  border-radius:16px;
  padding:34px 28px;
  text-align:left;
  border:1px solid #efefef;
  box-shadow:0 8px 26px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.offer-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 36px rgba(0,0,0,0.08);
}

/* ICON */
.offer-icon {
  width: 48px;
  height: 48px;
  background: #ED1C24;
  border-radius: 10px;

  /* Center the SVG perfectly */
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ICON CONTAINER: red square */
.offer-icon,
.project-icon {
  width: 56px;         /* you can change to 48px if you prefer smaller */
  height: 56px;
  background: #ED1C24;
  border-radius: 14px; /* match your layout */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON IMAGE */
.offer-icon img,
.project-icon img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;

  /* Converts black icons → white.
     If your icons are already white, REMOVE this line. */
  filter: brightness(0) invert(1);
}

.offer-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}


/* Titles */
.offer-card-title{
  font-size:20px;
  font-weight:800;
  margin:0 0 8px;
  color:#0b0b0b;
}

/* Description */
.offer-card-desc {
  font-family: "Times New Roman", serif !important;
  font-style: italic !important;
  color: #6b6b6b;
  line-height: 1.5;
}



/* MOBILE */
@media(max-width:720px){
  .offer-title{ font-size:36px; }
  .offer-card-title{ font-size:18px; }
}
/* ============================
   RED HIGHLIGHT SECTION
=============================== */

.highlight-section {
  padding: 80px 0;
  text-align: center; /* center children */
}


.highlight-inner {
  background: #ED1C24;
  padding: 38px 50px;
  border-radius: 28px;

  /* UPDATED */
  display: inline-block;     /* allow box to grow to text width */
  max-width: 90%;            /* prevent over-expansion */
  margin: 0 auto;            /* center it */
  white-space: nowrap;       /* keep one-line layout */
  overflow: hidden;          /* no scrollbars */
  text-align: center;

  box-shadow: 0 22px 40px rgba(0,0,0,0.15);
}


.highlight-text {
  font-size: 32px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  white-space: nowrap; /* keep it on one line on desktop */
}

.highlight-text .italic-highlight {
  font-family: "Times New Roman", serif;
  font-style: italic;
}

@media(max-width: 720px) {
  .highlight-text {
    white-space: normal; /* allow wrapping on mobile */
    font-size: 22px;
  }
}

/* ============================
   HOW WE TAKE PROJECTS
=============================== */

.projects-section{
  padding:120px 0;
  text-align:center;
}

.projects-title{
  font-size:48px;
  font-weight:800;
  margin:0;
}

.projects-underline{
  width:70px;
  height:4px;
  background:#ED1C24;
  border-radius:4px;
  margin:14px auto 20px;
}

.projects-subtitle{
  font-family: "Times New Roman", serif !important;
  font-style: italic !important;
  font-size:18px;
  color:#6b6b6b;
  margin-bottom:60px;
}


/* GRID */
.projects-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:40px 34px;
  justify-items:center;
}

/* CARD */
.project-card{
  width:100%;
  max-width:390px;
  background:white;
  border-radius:16px;
  padding:34px 28px;
  text-align:center;
  border:1px solid #efefef;
  box-shadow:0 8px 26px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.project-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 36px rgba(0,0,0,0.08);
}

/* PROJECT ICON — RED SQUARE + CENTERED SVG */
.project-icon {
  width: 56px;
  height: 56px;
  background: #ED1C24;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* SVG inside project icon */
.project-icon img,
.project-icon svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1); /* makes icons white */
}




/* CARD TITLE */
.project-title{
  font-size:20px;
  font-weight:800;
  margin:0;
}

/* HIGHLIGHT BANNER */
.projects-highlight{
  margin:80px auto 0;
  background:#ED1C24;
  color:white;
  padding:18px 36px;
  border-radius:40px;
  font-size:20px;
  font-weight:800;
  display:inline-block;
  box-shadow:0 10px 26px rgba(237,28,36,0.28);
}

/* MOBILE */
@media(max-width:720px){
  .projects-title{ font-size:36px; }
  .project-title{ font-size:18px; }
  .projects-highlight{
    font-size:16px;
    border-radius:28px;
  }
}

/* ============================
   LET'S BUILD TOGETHER FORM
=============================== */

.build-section{
  padding:120px 0;
  text-align:center;
}

.build-title{
  font-size:48px;
  font-weight:800;
  margin:0;
}

.build-underline{
  width:70px;
  height:4px;
  background:#ED1C24;
  border-radius:4px;
  margin:14px auto 20px;
}

.build-subtitle{
  font-size:18px;
  color:#6b6b6b;
  margin-bottom:60px;
}

/* FORM BOX */
.build-form-box{
  max-width:900px;
  margin:0 auto;
  background:white;
  border:1px solid #ED1C24;
  border-radius:18px;
  padding:40px 40px 50px;
  box-shadow:0 12px 30px rgba(0,0,0,0.06);
}
.build-italic-red {
  font-family: "Times New Roman", serif !important;
  font-style: italic !important;
  color: #ED1C24 !important;
  font-weight: 700;
}
.build-sub-italic {
  font-family: "Times New Roman", serif !important;
  font-style: italic !important;
  font-weight: 400;
  color: #6b6b6b;  /* keep your original muted tone */
}

/* FORM GRID */
.build-form{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:24px 34px;
}

/* FULL WIDTH ROW */
.form-group.full{
  grid-column: span 2;
}

/* LABEL */
.form-group label{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
  margin-bottom:6px;
  color:#111;
}

.form-group label span{
  font-size:16px;
}

/* INPUT + SELECT + TEXTAREA */
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid #e3e3e3;
  border-radius:10px;
  font-size:16px;
  background:#f9f9f9;
  outline:none;
  transition:border .2s ease, background .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:#ED1C24;
  background:white;
}

/* TEXTAREA */
.form-group textarea{
  height:160px;
  resize:none;
}

/* SUBMIT BUTTON */
.submit-btn{
  grid-column: span 2;
  width:100%;
  background:#ED1C24;
  color:white;
  border:none;
  padding:16px 0;
  font-size:20px;
  font-weight:800;
  border-radius:10px;
  cursor:pointer;
  margin-top:20px;
  box-shadow:0 14px 30px rgba(237,28,36,0.25);
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  transition:transform .25s ease, box-shadow .25s ease;
}

.submit-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(237,28,36,0.35);
}

.btn-arrow{
  transition:transform .25s ease;
}

.submit-btn:hover .btn-arrow{
  transform:translateX(6px);
}

/* MOBILE */
@media(max-width:720px){
  .build-title{ font-size:36px; }
  .build-form{
    grid-template-columns:1fr;
  }
  .form-group.full{
    grid-column: span 1;
  }
  .build-form-box{
    padding:28px 24px;
  }
}




@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .journey-title { font-size: 32px; }
  .offer-title, .projects-title { font-size: 34px; }
  .card-title { font-size: 20px; }
}
/* JOURNEY TITLE SPLIT STYLING */
.journey-title {
  font-size:48px;
  font-weight:800;
  margin:0;
}

.journey-regular {
  font-family: Helvetica, Arial, sans-serif;
  font-weight:800;
  color:#111;
}

.journey-italic {
  font-family: "Times New Roman", serif !important;
  font-style: italic;
  color:#ED1C24;
  margin-left:6px;
}

/* CARD TITLES IN RED */
.title-red {
  color:#ED1C24;
  font-family: Helvetica, Arial, sans-serif;
  font-weight:800;
}

/* DESCRIPTIONS IN BLACK ITALIC */
.card-italic {
  font-family:"Times New Roman", serif !important;
  font-style:italic !important;
  color:#111;
  font-size:18px;
  line-height:1.55;
}
/* JOURNEY CARD DESCRIPTION SPLIT STYLING */
.desc-regular {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #111;
}

.desc-italic {
  font-family: "Times New Roman", serif !important;
  font-style: italic !important;
  color: #111;
  opacity: 0.85;
}
/* OFFER SECTION — TYPOGRAPHY POLISH */

/* OFFER SECTION — TYPOGRAPHY POLISH */

.offer-title-red {
  color: #ED1C24;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 800;
}

.offer-sub-italic {
  font-family: "Times New Roman", serif !important;
  font-style: italic;
  font-size: 20px;
  color: #6b6b6b;
}

.italic-desc {
  font-family: "Times New Roman", serif !important;
  font-style: italic;
  color: #444;
}

/* OFFER TITLE PARTIAL COLOR & FONT */
.offer-title {
  font-family: Helvetica, Arial, sans-serif !important;
  font-size: 48px;
  font-weight: 800;
  margin: 0;
}

.offer-red-italic {
  font-family: "Times New Roman", serif !important;
  font-style: italic;
  color: #ED1C24 !important;
}
/* KEEP SINGLE LINE ON DESKTOP */
.highlight-text {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: white;
  white-space: nowrap;         /* forces single line */
}

/* italic words */
.highlight-text .italic-highlight {
  font-family: "Times New Roman", serif !important;
  font-style: italic !important;
  font-weight: 400;
}

/* container styling */
.highlight-section {
  padding: 80px 0;
  text-align: center;
}

.highlight-inner {
  background: #ED1C24;
  padding: 38px 50px;
  border-radius: 28px;

  display: inline-block;     /* allow box to resize to text */
  white-space: nowrap;       /* keep one line */
  overflow: visible;         /* IMPORTANT: show full text */
  max-width: none;           /* remove the 1100px limit */
}


/* MOBILE FIX — allow wrapping only on small screens */
@media (max-width: 720px) {
  .highlight-text {
    white-space: normal; 
    font-size: 22px;
    line-height: 1.3;
  }
}
/* Style only the word "Projects" */
.projects-italic-red {
  font-family: "Times New Roman", serif !important;
  font-style: italic !important;
  color: #ED1C24 !important;
}
/* MOBILE FIX — Center Offer Cards Like Project Cards */
@media (max-width: 720px) {

  .offer-card {
    text-align: center;           /* center everything */
    padding: 34px 20px;           /* reduce left padding */
  }

  .offer-icon {
    margin-left: auto;
    margin-right: auto;           /* icon centered */
  }

  .offer-card-title {
    text-align: center;
  }

  .offer-card-desc {
    text-align: center;
  }
}
/* MOBILE — Make form fields full width + centered */
@media(max-width: 720px){

  .build-form {
    grid-template-columns: 1fr !important; 
    text-align: center;
  }

  .form-group {
    width: 100%;
  }

  .form-group label {
    justify-content: center;   /* center the labels & icons */
    text-align: center;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    text-align: center;        /* text inside input centered */
  }

  .build-form-box {
    padding: 32px 22px;
  }

  .submit-btn {
    width: 100%;
    margin-top: 10px;
  }
}
/* FORCE MOBILE STACKING FIX */
@media(max-width: 720px){

  /* Force 1-column layout */
  .build-form {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Make every group full width */
  .form-group {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

}

/* MOBILE FORM FIX — LEFT-ALIGNED LABELS LIKE YOUR REFERENCE */
@media (max-width: 720px) {

  /* Form layout becomes single column (you already had this) */
  .build-form {
    grid-template-columns: 1fr !important;
  }

  .form-group,
  .form-group.full {
    grid-column: span 1 !important;
  }

  /* LABELS (icons + text) MUST ALIGN LEFT */
  .form-group label {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  /* Inputs full width */
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100% !important;
  }
}
/* =========================================
   FORM LAYOUT FIX — DESKTOP + MOBILE PERFECT
========================================= */

/* DESKTOP — KEEP 2 COLUMNS */
@media (min-width: 721px) {
  .build-form {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px 34px !important;
  }

  .form-group.full {
    grid-column: span 2 !important;
  }

  /* Labels left-aligned */
  .form-group label {
    justify-content: flex-start !important;
    text-align: left !important;
  }
}

/* MOBILE — 1 COLUMN STACKED LIKE YOUR SAMPLE */
@media (max-width: 720px) {
  .build-form {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .form-group,
  .form-group.full {
    grid-column: span 1 !important;
  }

  /* Labels aligned left, not centered */
  .form-group label {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  /* Inputs / selects / textarea full width */
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100% !important;
  }

  /* Buttons full width on mobile */
  .submit-btn {
    width: 100% !important;
  }
}
/* =========================================
   FINAL CLEAN FORM FIX — DO NOT EDIT ABOVE
========================================= */

/* DESKTOP — 2 Columns */
@media (min-width: 721px) {
  .build-form {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px 34px !important;
  }

  .form-group.full {
    grid-column: span 2 !important;
  }

  /* Labels left aligned */
  .form-group label {
    justify-content: flex-start !important;
    text-align: left !important;
  }
}

/* MOBILE — PERFECT SINGLE COLUMN */
@media (max-width: 720px) {

  .build-form {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  /* Each field takes full width */
  .form-group,
  .form-group.full {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  /* LABELS LEFT, NOT CENTER */
  .form-group label {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  /* Inputs and textarea full width */
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100% !important;
    text-align: left !important; /* ensure text is left */
  }

  /* Submit button full width */
  .submit-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}
/* =========================================
   FOOTER — FINAL CLEAN VERSION
========================================= */

.site-footer {
  padding: 50px 0 20px;
  background: #ffffff;
  border-top: 1px solid #f03b3b;
  margin-top: 80px;
  width: 100%;
}

/* MAIN ROW: LEFT + RIGHT */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* LEFT SIDE */
.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.byob-line {
  display: block;       /* each <span> becomes its own line */
}


.footer-tagline {
  margin: 0;
  font-size: 14px;
  font-family: "Times New Roman", serif;
  font-style: italic;
  color: #6b6b6b;
}

.footer-left-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

/* RIGHT SIDE */
.footer-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* --- DESKTOP (icons side-by-side) --- */
.footer-icons {
  display: flex;
  flex-direction: row;   /* force horizontal */
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
/* Icon styling remains same */
.footer-icon {
  width: 44px;
  height: 44px;
  background: #ED1C24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 26px;
  font-size: 14px;
  color: #666;
}

/* =========================================
   MOBILE (Column Left + Right)
========================================= */

@media (max-width: 720px) {

  /* Stack left + right but keep them side-by-side inside the row */
  .footer-inner {
    width: 100%;
    display: flex;
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center;
    padding: 0 18px;
  }

  /* LEFT stays left */
  .footer-left {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

/* --- MOBILE (stack icons vertically) --- */
@media (max-width: 720px) {
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .footer-icons {
    flex-direction: row;   /* keep horizontal even on mobile per your layout? */
    justify-content: center;
  }
}

  /* Copyright stays centered below */
  .footer-bottom {
    text-align: center !important;
    margin-top: 22px;
    width: 100%;
  }
}
/* FOOTER LEGAL LINKS */
.footer-links {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 14px;
}

.footer-links a {
  color: #ED1C24;
  text-decoration: none;
  font-weight: 600;
  font-family: Helvetica, Arial, sans-serif;
}

.footer-links span {
  margin: 0 6px;
  color: #999;
}

/* MOBILE */
@media(max-width: 720px) {
  .footer-links {
    font-size: 13px;
  }
}
/* =============================
   THANK YOU POPUP
============================= */

.thankyou-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 99999;
}

.thankyou-overlay.show {
  visibility: visible;
  opacity: 1;
}

.thankyou-box {
  background: white;
  padding: 40px 32px;
  border-radius: 18px;
  text-align: center;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.thankyou-title {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 12px;
  color: #111;
}

.thankyou-msg {
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 26px;
  color: #444;
}

.thankyou-close {
  background: #ED1C24;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.thankyou-close:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(237, 28, 36, 0.35);
}
/* ----------------------------------------
   FINAL FIX — Increase visibility for
   sub-bold, sub-italic, and muted text
---------------------------------------- */

.sub-bold {
  font-size: 44px !important;    /* desktop */
  font-weight: 800 !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.1 !important;
}

.sub-italic {
  font-size: 38px !important;    /* desktop */
  font-family: "Times New Roman", serif !important;
  font-style: italic !important;
  color: #ED1C24 !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.1 !important;
}

.muted {
  font-size: 22px !important;    /* desktop */
  color: #444 !important;
  line-height: 1.3 !important;
}


/* MOBILE RESPONSIVE */
@media (max-width: 720px) {

  .sub-bold {
    font-size: 32px !important;
  }

  .sub-italic {
    font-size: 28px !important;
  }

  .muted {
    font-size: 18px !important;
  }

}
