
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E8182A;
  --dark: #0F0F0F;
  --card-dark: #161616;
  --card-border: #282828;
  --mid: #555;
  --light: #999;
  --bg: #F5F5F3;
  --white: #FFFFFF;
  --tag-bg: #EFEFED;
  --tag-border: #E0E0DC;
  --input-bg: #1E1E1E;
  --input-border: #2E2E2E;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 9px;
  --shadow: 0 4px 32px rgba(0,0,0,0.08);
  --t: 0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

img { display: block; max-width: 100%; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(.4,0,.2,1), transform 0.65s cubic-bezier(.4,0,.2,1);
}
.reveal.up    { transform: translateY(32px); }
.reveal.left  { transform: translateX(-32px); }
.reveal.right { transform: translateX(32px); }
.reveal.visible { opacity: 1; transform: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.tag-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mid);
  background: var(--tag-bg); border: 1px solid var(--tag-border);
  padding: 6px 14px 6px 10px; border-radius: 100px; margin-bottom: 20px;
}
.tag-dot {
  width: 7px; height: 7px; background: var(--red); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.6);opacity:.6}
}

.section-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -1.8px; color: var(--dark); margin-bottom: 14px;
}
.section-sub {
  font-size: 15.5px; line-height: 1.7; color: var(--light);
  max-width: 500px; margin: 0 auto;
}
.text-center { text-align: center; }


@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:none; }
}

.contact-hero {
  padding: 72px 0 80px;
  text-align: center;
}
.contact-hero .tag-pill  { animation: fadeUp .5s ease .1s both; }
.contact-hero .section-heading { animation: fadeUp .6s ease .2s both; }
.contact-hero .section-sub     { animation: fadeUp .6s ease .3s both; }

.contact-body {
  padding-bottom: 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.info-col { padding-top: 12px; }

.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid #E8E8E4;
  transition: transform var(--t);
}
.info-item:first-child { padding-top: 0; }
.info-item:last-child  { border-bottom: none; }
.info-item:hover { transform: translateX(4px); }

.info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(232,24,42,0.25);
  transition: transform var(--t), box-shadow var(--t);
}
.info-item:hover .info-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(232,24,42,0.4);
}
.info-icon svg { width: 20px; height: 20px; }

.info-text h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--dark); margin-bottom: 5px;
}
.info-text p {
  font-size: 13.5px; line-height: 1.65; color: var(--mid);
  max-width: 300px;
}


.form-card {
  /* background: var(--card-dark); */
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
padding: 36px 26px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% -10%, rgba(232,24,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-group { margin-bottom: 12px; }

.form-input {
  width: 100%;
  /* background: var(--input-bg); */
  border: 1.5px solid var(--input-border);
  color: black;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  -webkit-appearance: none;
}
.form-input::placeholder { color: #555; }
.form-input:focus {
  border-color: rgba(232,24,42,0.6);
  box-shadow: 0 0 0 3px rgba(232,24,42,0.1);
  /* background: #222; */
}
.status-message {
  margin: 15px 0;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px; 
  transition: all 0.3s ease;
}

.msg-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: #666;
  margin-bottom: 10px; display: block;
}

.check-group {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  margin-bottom: 22px;
  margin-top: 20px;
}
.check-item {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.check-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--red);
  cursor: pointer;
  border-radius: 4px;
  flex-shrink: 0;
}
.check-item span {
  font-size: 13px; color: #888;
  transition: color var(--t);
}
/* .check-item:has(input:checked) span { color: var(--white); } */

.send-btn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px;
  border-radius: var(--radius-md);
  border: none; cursor: pointer;
  transition: background var(--t), transform 0.2s, box-shadow var(--t);
  position: relative; overflow: hidden;
}
.send-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  pointer-events: none;
}
.send-btn:hover {
  background: #c4111f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,24,42,0.45);
}
.send-btn:active { transform: translateY(0); }


.faq-section { padding: 80px 0 96px; }

.faq-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, #DDD 15%, #DDD 85%, transparent);
  margin: 40px 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px 64px;
  align-items: start;
}
.faq-title-col h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px,3.5vw,36px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.6px;
}

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid #E2E2DE; }
.faq-item:last-child { border-bottom: 1px solid #E2E2DE; }

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0; cursor: pointer;
  font-size: 15px; font-weight: 500; color: var(--dark);
  user-select: none; transition: color .2s;
}
.faq-q:hover { color: var(--red); }

.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid #D8D8D4; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.faq-item.open .faq-icon {
  background: var(--dark); border-color: var(--dark); transform: rotate(45deg);
}
.faq-item.open .faq-icon svg path { stroke: #fff; }

.faq-body { overflow: hidden; max-height: 0; transition: max-height .42s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-body { max-height: 180px; }
.faq-body-inner {
  padding-bottom: 20px; font-size: 14px; line-height: 1.75; color: var(--mid);
}

/* footer {
  background: var(--dark); color: var(--white);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.7fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #222;
}
.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 21px; font-weight: 800; margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.footer-logo .red { color: var(--red); }
.footer-brand p { font-size: 13px; color: #666; line-height: 1.65; margin-bottom: 20px; max-width: 210px; } */
/* 
.socials { display: flex; gap: 10px; }
.social-btn {
  width: 33px; height: 33px;
  background: #1C1C1C; border: 1px solid #2E2E2E;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--t), border-color var(--t);
}
.social-btn:hover { background: var(--red); border-color: var(--red); }
.social-btn svg { width: 13px; height: 13px; }

.footer-col h4 {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #444; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: #888; text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }

.newsletter-desc { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 14px; }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-form input {
  background: #1A1A1A; border: 1px solid #2E2E2E;
  color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 13px;
  padding: 11px 14px; border-radius: var(--radius-sm); outline: none;
  transition: border-color .2s;
}
.newsletter-form input::placeholder { color: #555; }
.newsletter-form input:focus { border-color: var(--red); }
.newsletter-form button {
  background: var(--red); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 600;
  padding: 12px; border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: background var(--t), transform .2s;
}
.newsletter-form button:hover { background: #c4111f; transform: translateY(-1px); }

.footer-bottom {
  padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: #3A3A3A;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #444; text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--white); } */


@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  /* .footer-grid  { grid-template-columns: 1fr 1fr; } */
  nav { padding: 0 24px; }
}

@media (max-width: 680px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .form-row { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 20px; }
  /* .footer-grid { grid-template-columns: 1fr; gap: 28px; } */
  /* .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } */
  .contact-hero { padding: 56px 0 60px; }
}

@media (max-width: 420px) {
  .form-card { padding: 28px 20px 32px; }
  .section-heading { letter-spacing: -1px; }
}

.success-msg {
  display: none;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px; font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}
.success-msg.show { display: block; animation: fadeUp .4s ease; }
