
/* --------------------
   Animations (simple reveal)
   -------------------- */
.reveal { opacity:0; transform: translateY(12px); animation:revealUp .7s ease forwards; }
.reveal.delay-1 { animation-delay:0.06s; }
.reveal.delay-2 { animation-delay:0.12s; }
.reveal.delay-3 { animation-delay:0.18s; }
@keyframes revealUp { to { opacity:1; transform:none; } }


*{ box-sizing:border-box }

/* global helpers */
.container{
  max-width:var(--container);
  margin:0 auto;
  width:var(--maxw);
}
.row { display:flex; gap:var(--gap); flex-wrap:wrap; align-items:flex-start; }

/* section spacing */
.section {
  padding: clamp(28px, 6vw, 48px) 0;
}

/* eyebrow + title styles (from your CSS) */
.sec-eyebrow{
  padding-left: 80px;
  display:inline-block;
  font-weight:700;
  font-size:14px;
  letter-spacing:.04em;
  color:var(--brand);
  margin-bottom:12px;
  text-transform:uppercase;
}
.sec-title{
  padding-left: 80px;
  margin:0 0 14px;
  line-height:1.08;
  font-weight:700;
  font-size: clamp(20px, 4.2vw, 40px);
  color:var(--dark);
}
.sec-text{
  padding-left: 80px;
  padding-right: 80px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 400;
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.6;
}

/* grid of cards */
.cards {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:28px;
  margin-top:20px;
  padding-left: 80px;
  padding-right: 80px;
}


/* single branch card */
.card {
  background:var(--paper);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:26px;
  border:1px solid rgba(15,30,55,0.06);
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  transition:transform .22s ease, box-shadow .22s ease;
  position:relative;
  overflow:visible;
}
.card-1{
  background:url("/innovus_management/assets/images/contact_us/card_1_bk.webp") center/cover no-repeat;
  color:#fff !important;
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15,30,55,0.08);
}

/* small orange label top-left */
.card .label {
  color:var(--brand);
  font-weight:700;
  font-size:16px;
}

/* location title */
.card h3 {
  margin:0px 0 10px;
  font-size:24px;
  color:var(--dark);
  letter-spacing:.2px;
  margin-bottom: 30px;
}
.card-1 h3 {
  color:#fff;
}
/* address text */
.card p.address {
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:92%;
}
.card-1 p.address {
  color:#fff;
}

/* phone row */
.phone-row{
  display:flex;
  gap:12px;
  align-items:center;
  color:var(--muted);
  margin-bottom:18px;
}
.phone-row .icon {
  width:36px; height:36px; border-radius:999px;
  background: linear-gradient(180deg, rgba(15,30,55,.06), rgba(15,30,55,.02));
  display:inline-grid; place-items:center;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.3);
}
.phone-row img{
  width: 16px;
}
.phone-row .tel { font-size:16px;}
.card-1 .phone-row .tel { font-size:16px; color:#fff;}

/* action row: get direction */
.action-row{
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:auto; /* sticks bottom if card grows */
}
.get-direction {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:var(--muted);
  cursor:pointer;
}
.get-direction .dot {
  width:34px; height:34px; border-radius:50%;
  background:var(--brand);
  display:inline-grid; place-items:center;
  box-shadow: 0 4px 8px rgba(255,79,15,0.14);
  transform:translateY(0);
}
.get-direction .dot svg { transform: rotate(-20deg); }

/* footer area: "Overseas Branches", large heading left and explore link right */
.footer-row {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  margin-top:64px;
  flex-wrap:wrap;
}
.footer-left {
  max-width:100%;
}
.footer-eyebrow { color:var(--brand); padding-left: 80px;font-weight:700; letter-spacing:.06em; margin-bottom:10px; text-transform:uppercase; font-size:13px; }
.footer-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight:700;
  color:var(--dark);
  margin:0;
  line-height:1.05;
  padding-left: 80px;
}
.explore {
  align-self:flex-end;
  text-align:right;
}
.explore a {
  color:var(--brand);
  font-weight:600;
  text-decoration:none;
  padding-bottom:6px;
  font-size:15px;
  position: relative;
  
}

/* small utilities */
.kv { font-size:13px; color:var(--muted); }
.wrapper {
  padding:20px 0 60px;
}

/* gradient button (kept from your snippet) */
.btn-gradient {
  background: linear-gradient(90deg, #FFA24B, #FF4F0F, #FF7A3D);
  background-size: 200% 100%;
  animation: moveGradient 4s ease infinite;
  transition: transform 0.3s ease;
  color:#fff;
  border-radius:12px;
  padding:10px 14px;
  display:inline-block;
}
@keyframes moveGradient { 0%{background-position:0 50%}50%{background-position:100% 50%}100%{background-position:0 50%} }

/* subtle responsive tweaks to spacing */
@media (max-width:480px){
  .container{ width:94% }
  .footer-left { max-width:100%; order:2; }
  .explore { order:1; width:100%; text-align:left; margin-bottom:12px; }
}





.container{max-width:var(--maxw);margin:0 auto;padding:28px 20px}
/* Top contact summary (peach) */
.top-contacts{
background:var(--paper);
padding:44px 20px;
border-radius:8px;
}
.top-contacts .heading{
text-align:center;
margin-bottom:28px;
}
.top-contacts .eyebrow{display:block;color:var(--brand);font-weight:700;letter-spacing:.08em;font-size:13px;text-transform:uppercase;margin-bottom:10px}
.top-contacts h2{font-size:32px;line-height:1.05;margin:0 0 6px;font-weight:800}
.top-contacts p.lead{color:var(--muted);margin:0 0 24px;font-size:15px}


.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
align-items:center;
}
.contact-item{display:flex;gap:14px;align-items:center}
.icon-wrap{width:48px;height:48px;border-radius:999px;background:#0F2130;color:#fff;display:grid;place-items:center}
.contact-item .title{font-weight:700;font-size:15px;color:var(--dark)}
.contact-item .sub{font-size:14px;color:var(--muted)}


/* Main split section: dark form left + image right */
.split{
display:grid;
grid-template-columns: 1fr 520px;
gap:0; /* zero gap so image aligns flush */
margin-top:28px;
align-items:stretch;
}
.form-side{
background:var(--dark);
color:var(--white);
padding:56px 48px;
border-top-left-radius:8px;
border-bottom-left-radius:8px;
display:flex;flex-direction:column;gap:18px;
}
.form-side .small-eyebrow{color:var(--muted);text-transform:uppercase;font-weight:600;letter-spacing:.08em;font-size:13px}
.form-side h3{font-size:34px;line-height:1.05;margin:6px 0 10px;font-weight:800}


.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:12px}
.input{background:var(--white);border-radius:999px;padding:14px 18px;border:none;font-size:15px;color:var(--dark);outline:none}
.input::placeholder{color:var(--muted);}
.textarea{background:var(--white);border-radius:10px;padding:18px;border:none;font-size:15px;color:var(--dark);min-height:120px;resize:vertical}


.form-actions{display:flex;justify-content:flex-end;margin-top:8px}
.btn{
background:linear-gradient(90deg,#FFA24B,#FF4F0F);
color:#fff;padding:12px 26px;border-radius:28px;border:none;font-weight:700;cursor:pointer;box-shadow:0 10px 24px rgba(255,79,15,0.12)
}


.contact-wrap{padding-top:6px;padding-bottom:28px}





.site-wrap { 
  width:100%; 
  display:block;
  color: #FFF5F1;
  background-color: #FFF5F1;
  margin-top: 40px; 
}
.container {
  max-width: var(--maxw);
  margin:0 auto;
}

/* --------------------
   Top contact banner (peach)
   -------------------- */
.top-banner {
  background: var(--peach);
  padding: 44px 0 40px;
}
.top-inner {
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center;
  text-align:center;
  padding: 0 4px;
}
.top-eyebrow { color:var(--brand); font-weight:700; font-size:13px; letter-spacing:0.09em; text-transform:uppercase; }
.top-title {
  font-size:34px; line-height:1.06; font-weight:800; color:var(--ink);
  margin:0;
}
.top-title .wrap { display:inline-block; }

/* three info items row */
.info-row {
  margin-top:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  gap:20px;
}
.info-item {
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}
.info-icon {
  width:44px; height:44px; border-radius:999px;
  background:var(--dark); color:#fff; display:grid; place-items:center;
  flex-shrink:0;
  box-shadow: 0 6px 18px rgba(2,20,30,0.06);
}
.info-text { text-align:left; }
.info-text .title { font-weight:700; color:#FF4F0F; font-size:15px; }
.info-text .sub { color:var(--muted); font-size:14px; margin-top:4px; }

/* center the top title and items inside container */
.top-container { width:100%; max-width:var(--maxw); margin:0 auto; padding:0 28px; }

/* --------------------
   Split section: left form (dark) + right image
   The right image is flush aligned with the form's right edge
   -------------------- */
/* ---------- Layout container ---------- */
.split-wrap {
  width: 100%;
  display: flex;
  align-items: stretch; /* makes children match height */
  flex-wrap: nowrap;    /* will wrap on smaller screens via media query */
}

/* ---------- Left: form panel (55%) ---------- */
.form-panel {
  flex: 0 0 55%;
  min-width: 300px;
  background: #0b1c36;
  color: var(--white);
  padding: 56px 64px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column; /* so we can push the button to the bottom */
  justify-content: flex-start;
  position: relative;
  /* subtle interactive polish */
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms ease;
  will-change: transform, box-shadow;
}

/* optional lift on hover (remove if unwanted) */


/* eyebrow/title */
.form-eyebrow {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.form-title {
  font-size: 24px;
  line-height: 1.05;
  font-weight: 500;
  margin: 6px 0 18px;
  color: #fff;
}

/* ---------- input grid ---------- */
.form-p-fr{
  overflow-y:scroll;
  max-height: 400px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  margin-top: 10px;
}
.input-pill {
  border-radius: 12px;
  padding: 14px 20px;
  border: none;
  font-size: 15px;
  color: var(--dark-navy);
  outline: none;
  box-shadow: none;
  background: #fff; /* ensure visible on dark panel — adjust if you want transparent */
}
.input-pill::placeholder { color: var(--muted); }

/* message textarea spans full width */
.msg {
  grid-column: 1 / -1;
  display: block;
  border-radius: 12px;
  padding: 18px;
  min-height: 126px;
  resize: vertical;
  border: none;
  font-size: 15px;
}

/* ---------- Connect button pinned bottom-right ---------- */
/* change: margin-top:auto pushes this block to bottom of flex column */
.connect-wrap {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
}
.btn-connect {
  background: linear-gradient(90deg,#FFA24B,#FF4F0F);
  color: white;
  padding: 12px 26px;
  border-radius: 28px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(255,79,15,0.18);
}

/* ---------- Right: image column (45%) ---------- */
/* remove floats, use flex sizing */
.image-side {
  flex: 1 1 45%;
  min-width: 260px;
  background-color: #ddd; /* fallback color while image loads */
  overflow: hidden;
  position: relative;
  display: block;
}

/* prefer using <img> that fills the column — your HTML includes an <img> */
.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the area while preserving aspect */
  display: block;
}


/* Attachment section */
.attachment-section { margin-top: 16px; }

.btn-attach {
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 2px dashed rgba(255,255,255,0.28);
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-attach:hover { background: rgba(255,255,255,0.06); border-color: #fff; }
.plus-icon { font-size: 18px; line-height: 1; transition: transform .25s ease; }
.btn-attach.active .plus-icon { transform: rotate(45deg); }

/* attachment fields panel (smooth open/close) */
.attachment-fields {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .36s cubic-bezier(.2,.9,.2,1), opacity .22s ease, margin .22s ease;
  margin-top: 8px;
}
.attachment-fields.open {
  max-height: 360px; /* large enough to show file list */
  opacity: 1;
  margin-top: 12px;
}

/* label + input */
.attachment-fields label { color: rgba(255,255,255,0.88); display:block; margin-bottom:8px; }
.attach-input {
  display:block;
  width:100%;
  background:#fff;
  color:#222;
  padding:10px;
  border-radius:8px;
  border: none;
  cursor: pointer;
}

/* selected file list */
.attach-list { list-style:none; margin:10px 0 0; padding:0; display:flex; flex-direction:column; gap:8px; max-height:400px; overflow:auto; }
.attach-item { display:flex; gap:10px; align-items:center; padding:8px; background: rgba(255,255,255,0.04); border-radius:8px; color:#fff; }
.attach-name { flex:1; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; font-size:14px; color: #fff; }
.attach-size { font-size:12px; color: rgba(255,255,255,0.7); margin-left:8px; }
.attach-remove { background:transparent; border:0; color:#ffb4a1; cursor:pointer; font-weight:700; padding:6px 8px; border-radius:6px; }


/* ---------- small horizontal divider ---------- */
.page-bottom-gap { height:28px; background: #fff7f6; }

/* ---------- Responsive: stack on smaller screens ---------- */
@media (max-width: 860px) {
  .split-wrap {
    flex-wrap: wrap;
    gap: 14px;
  }
  .form-panel,
  .image-side {
    flex: 1 1 100%;
    min-width: 0;
    border-radius: 8px;
  }

  .form-panel {
    padding: 28px 20px;
  }
  

  /* give image a good height when stacked */
  .image-side {
    height: 320px;
  }

  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Accessibility: respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .form-panel { transition: none !important; will-change: auto; transform: none; box-shadow: var(--shadow-soft); }
}


/* --------------------
   Responsive tuning
   -------------------- */

/* large desktop (>= 1600) increase sizes */
/*@media (min-width:1600px){
  .top-title { font-size:40px; }
  .split-wrap { grid-template-columns: 1fr 600px; min-height:520px; }
  .form-panel { padding:72px 88px; }
  .form-title { font-size:36px; }
}*/

/* desktop default (>= 1200) */
/*@media (min-width:1200px){
  .container { padding:0 36px; }
  .info-row { max-width:100%; }
}*/

/* laptop / tablet landscape (<= 1199px) */
@media (max-width:1199px){
  .split-wrap { grid-template-columns: 1fr 420px; min-height:420px; }
  .image-side { min-height:420px; background-position: center right; }
  .form-panel { padding:48px 44px; }
  .form-title { font-size:30px; }
}

/* small laptop / large tablet <= 880 */
@media (max-width:880px){
  .top-inner { padding: 0 6px; }
  .info-row { display:flex; flex-direction:row; gap:12px; justify-content:space-between; align-items:center; }
  .info-item .info-text .sub { font-size:13px; }
  .split-wrap { grid-template-columns: 1fr; } /* stack */
  .image-side { order:2; min-height:300px; border-radius:8px; margin-top:0; }
  .form-panel { order:1; border-radius:8px; padding:36px 26px; }
  .form-grid { gap:12px; }
  .msg { min-height:110px; }
  .connect-wrap { justify-content:flex-start; } /* keep button visually similar */
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px){
  .sec-eyebrow, .sec-title, .sec-text, .footer-eyebrow, .footer-title{
    padding: 0 20px ;
  }
  .cards {
    padding: 0 20px;
  }
}
@media (max-width:580px){
  .top-container { width: 100%; max-width: 100%; margin:0 auto; padding:0 20px}
  .top-title {
    font-size: 28px;
    line-height: 1.06;
    font-weight: 800;
  }
  .sec-title, .sec-eyebrow, .sec-text, .cards{
    padding: 0 20px;
  }
  
  .info-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: flex-start;
        justify-items: left;
        text-align: center;
        justify-self: self-start;
    }
    /* Responsive grid */


  .cards { grid-template-columns: 1fr; }


}
/* phones: stack and tighten */
@media (max-width:520px){
  .top-title { font-size:22px; }
  .info-item { justify-content:center; gap:10px; }
  .form-panel { padding:20px; }
  .form-title { font-size:20px; }
  .form-grid { grid-template-columns: 1fr; gap:12px; }
  .input-pill { padding:12px 14px; font-size:14px; }
  .msg { min-height:100px; }
  .connect-wrap { justify-content:center; margin-top:14px; }
  .btn-connect { padding:10px 20px; font-size:14px; }
}

/* very narrow phones */
@media (max-width:360px){
  .top-eyebrow { font-size:12px; }
  .top-title { font-size:20px; }
}



/* focus styles */
.input-pill:focus, .msg:focus { box-shadow: 0 12px 30px rgba(2,20,30,0.12); outline:none; }

/* small utility */
.center { display:flex; align-items:center; justify-content:center; }

/* Section wrapper */
.coffee-section{width:100%;display:flex;justify-content:center;background:#fff}
.coffee-container{
  width:100%;
  max-width:1300px;
  display:flex;
  gap:0;
  align-items:stretch;
  margin:0 auto;
  padding-bottom: 30px;
}

/* Left image (visual) */
.coffee-image{flex:1 1 50%;overflow:hidden;min-height:360px}
.coffee-image img{width:100%;height:100%;object-fit:cover;display:block}

/* Right content (orange) */
.coffee-content{
  flex:1 1 50%;
  background:#FF4F0F;
  color:#fff;
  padding:84px 100px 84px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  overflow:visible;
}

/* tag */
.coffee-content .tag{
  display:inline-block;
  font-weight:600;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
  opacity:.95;
}

/* title + gif wrapper */
.title-row{
  display:flex;
  align-items:flex-start;
  gap:22px;
  flex-wrap:wrap;
}
.coffee-title{
  font-size:46px;
  line-height:1.02;
  font-weight:800;
  max-width:720px;
  margin:0;
}

/* cup gif — wrapper gives float animation and responsive size control */
.cup-wrap{
  width:86px;
  height:86px;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:6px;
  transform-origin:center;
  animation:float 3.6s ease-in-out infinite;
  position: absolute;
  right: 20px;
  top: 45%;
}
.cup-wrap img{max-width:100%;max-height:100%;display:block}

/* button row */
.button-row{margin-top:36px;display:flex;gap:16px;align-items:center}
.connect-btn{
  background:#0b1c38;
  color:#fff;
  border:none;
  padding:14px 26px;
  border-radius:28px;
  font-weight:700;
  cursor:pointer;
  display:inline-flex;
  gap:10px;
  align-items:center;
  box-shadow:0 10px 28px rgba(2,20,30,0.18);
  transition:transform .18s ease,box-shadow .18s ease;
}
.connect-btn span{
  white-space: nowrap;
}
.connect-btn svg{
  width: 18px;
  margin-top: 4px;
}
.connect-btn:hover{transform:translateY(-4px);box-shadow:0 18px 40px rgba(2,20,30,0.22)}
.connect-btn .icon{width:36px;height:36px;border-radius:50%;background:#0b1c38;display:grid;place-items:center;box-shadow:inset 0 -1px 0 rgba(255,255,255,0.03)}

/* float animation */
@keyframes float{
  0%{ transform: translateY(0) }
  50%{ transform: translateY(-6px) }
  100%{ transform: translateY(0) }
}

/* Responsive tuning */
@media (min-width:1400px){
  .coffee-content{padding:100px 88px}
  .coffee-title{font-size:64px}
  .cup-wrap{width:110px;height:110px}
}
@media (max-width:1199px){
  .coffee-title{font-size:42px}
  .cup-wrap{width:92px;height:92px}
}
@media (max-width:880px){
  .coffee-container{flex-direction:column}
  .coffee-image,.coffee-content{flex:1 1 100%;width:100%}
  .coffee-image{min-height:300px}
  .coffee-content{padding:44px 28px;text-align:center}
  .title-row{justify-content:center}
  .coffee-title{font-size:34px;max-width:100%}
  .cup-wrap{order:2;margin-top:14px}
  .button-row{justify-content:center}
  .cup-wrap {
    right: 60px;
    top: 50%;
  }
}
@media (max-width:640px){
    .coffee-title {
        font-size: 28px;
        max-width: 100%;
    }
    .cup-wrap {
        right: 20px;
        top: 50%;
    }
  }
@media (max-width:520px){
  .coffee-content{padding:28px 18px}
  .coffee-title{font-size:22px}
  .cup-wrap{width:68px;height:68px}
  .connect-btn{padding:10px 18px;font-size:14px}
}

