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

html, body {
  height: 100%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #000;
}

.landing {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* Panel */
.panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s ease;
}

/* Premium “expand” hover */
.panel:hover {
  flex: 1.2;
}

/* Background video */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: saturate(1.05) contrast(1.05);
}

/* Cinematic hover zoom */
.panel:hover .bg-video {
  transform: translate(-50%, -50%) scale(1.05);
  transition: transform 1.2s ease;
}

/* Dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.6s ease;
  z-index: 1;
}

.panel:hover .overlay {
  background: rgba(0,0,0,0.55);
}

/* Center content */
.content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  text-align: center;
  padding: 18px;
}

.content h1 {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  letter-spacing: 6px;
  font-weight: 500;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.content h1 .thin {
  font-weight: 300;
  letter-spacing: 5px;
}

/* ENTER button */
.enter-btn {
  padding: 12px 34px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.enter-btn:hover {
  background: transparent;
  color: #fff;
}

/* Mobile */
@media (max-width: 900px) {
  .landing { flex-direction: column; }
  .panel:hover { flex: 1; }
  .panel:hover .bg-video { transform: translate(-50%, -50%); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .panel, .overlay, .enter-btn { transition: none !important; }
  .panel:hover .bg-video { transition: none !important; }
}
:root{
  --accent: #f0b429; /* industrial amber */
}

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items:start;
}

.contact-left{display:grid; gap:16px;}

.contact-brand{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
}

.contact-brand-logo{
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.45));
}

.contact-brand-text h2{margin: 2px 0 8px;}
.contact-brand-text .para{margin:0;}

.contact-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 14px;
  position: relative;
  overflow:hidden;
}

.contact-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 240px at 10% 0%, rgba(240,180,41,.12), transparent 55%),
    radial-gradient(700px 200px at 110% 20%, rgba(255,255,255,.06), transparent 60%);
  pointer-events:none;
}

.contact-card-title{
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.75);
  margin-bottom: 10px;
}

.contact-card-body{display:grid; gap:6px; position:relative;}
.contact-line{margin:0; color: rgba(255,255,255,.86);}

.contact-link{
  color: #fff;
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid rgba(240,180,41,.55);
  padding-bottom: 2px;
  opacity: .92;
}

.contact-link:hover{
  opacity: 1;
  border-bottom-color: rgba(240,180,41,.95);
}

@media (max-width: 900px){
  .contact-grid{grid-template-columns: 1fr;}
  .contact-brand{align-items:center;}
  .contact-brand-logo{width:48px; height:48px;}
}
.contact-section{
  padding: 56px 0;
  background: #0b0f14;
  color: #e9eef6;
}

.contact-wrap{
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.map-frame{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  min-height: 360px;
}

.map-frame iframe{
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.contact-info{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  padding: 18px 18px;
  display: grid;
  gap: 14px;
}

.contact-head{
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.contact-logo{
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.45));
}

.contact-kicker{
  margin: 0;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(233,238,246,.70);
}

.contact-title{
  margin: 4px 0 0;
  font-size: 20px;
  line-height: 1.25;
}

.contact-lines p{
  margin: 0 0 12px;
  color: rgba(233,238,246,.88);
}

.contact-lines a{
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(240,180,41,.55);
  padding-bottom: 2px;
}

.contact-lines a:hover{
  border-bottom-color: rgba(240,180,41,.95);
}

.site-footer{
  background: #070a0f;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  color: rgba(233,238,246,.75);
}

.footer-inner{
  display: flex;
  justify-content: center;
  text-align: center;
}

@media (max-width: 900px){
  .contact-wrap{ grid-template-columns: 1fr; }
  .map-frame{ min-height: 320px; }
  .map-frame iframe{ min-height: 320px; }
}
.map-group{
  display: grid;
  gap: 18px;
}

.map-item{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

.map-title{
  margin: 0;
  padding: 10px 14px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.map-item iframe{
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

/* UpkarGPT Section */
.gpt-section{
  padding: 64px 0;
  background: #090c12;
  color: #e9eef6;
}
.gpt-logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  width: fit-content;
}
.gpt-logo img{
  height:38px;
  width:auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.4));
}
.gpt-logo-text{
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  color:#e9eef6;
}
.gpt-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items:stretch;
}
.gpt-left{
  display:grid;
  gap:14px;
}
.gpt-kicker{
  margin:0;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color: rgba(233,238,246,.70);
}
.gpt-title{
  margin:0;
  font-size:26px;
  line-height:1.3;
  letter-spacing:.02em;
}
.gpt-sub{
  margin:0;
  color: rgba(233,238,246,.80);
  line-height:1.7;
}
.gpt-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.gpt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 11px 18px;
  border-radius:12px;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  text-decoration:none;
  border:1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.gpt-btn-primary{
  background: linear-gradient(135deg, #f0b429, #c78a1b);
  color:#0a0c12;
  box-shadow: 0 14px 32px rgba(0,0,0,0.4);
}
.gpt-btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.48);
}
.gpt-btn-ghost{
  background: rgba(255,255,255,0.06);
  color:#e9eef6;
  border-color: rgba(255,255,255,0.14);
}
.gpt-btn-ghost:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.26);
}
.gpt-pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.gpt-card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  padding: 16px 16px 18px;
  backdrop-filter: blur(10px);
  display:grid;
  gap:12px;
}
.gpt-card-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.gpt-card h3{
  margin:6px 0 0;
  font-size:18px;
  letter-spacing:.02em;
}
.gpt-list{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:8px;
  color: rgba(233,238,246,.86);
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

@media (max-width: 900px){
  .gpt-grid{ grid-template-columns:1fr; }
}
