/*=========================================
        HERO EXHIBIT
=========================================*/

.hero-exhibit{
    display:flex;
    width:100%;
    min-height:500px;
}

.hero-left{
    width:50%;
}

.hero-left img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
}

.hero-right{
    width:50%;
    background:#082d49;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px 70px;
}

.hero-subtitle{
    font-family:Roboto,sans-serif;
    font-size:28px;
    font-weight:500;
    color:#fff;
    margin-bottom:18px;
}

.hero-right h1{
    font-family:Roboto,sans-serif;
    font-size:40px;
    font-weight:700;
    line-height:1.15;
    color:#fff;
    margin-bottom:22px;
}

.hero-right p{
    font-family:Roboto,sans-serif;
    font-size:16px;
    line-height:28px;
    color:#fff;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:22px;
}

.hero-btn{
    width:210px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    font-size:16px;
    font-weight:500;
    background:linear-gradient(90deg,#86007c,#163d88);
    transition:.3s;
}

.hero-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    background: linear-gradient(to left, #63005d, #01316f);
}

/*=========================
        TABLET
=========================*/

@media(max-width:991px){
    .hero-exhibit{
        flex-direction:column;
    }
    .hero-left,
    .hero-right{
        width:100%;
    }
    .hero-left img{
        height:350px;
    }
    .hero-right{
        padding:40px 30px;
    }
    .hero-right h1{
        font-size:34px;
    }
    .hero-buttons{
        flex-direction:column;
    }
    .hero-btn{
        width:100%;
    }
}

/*=========================
        MOBILE
=========================*/

@media(max-width:576px){
    .hero-left img{
        height:250px;
    }
    .hero-right{
        padding:30px 20px;
    }
    .hero-subtitle{
        font-size:20px;
    }
    .hero-right h1{
        font-size:28px;
    }
    .hero-right p{
        font-size:15px;
    }
    .hero-btn{
        height:50px;
        font-size:15px;
    }
}


/*==================================
        WHY EXHIBIT INFO
==================================*/

.why-exhibit-info{
    background:#ffffff;
    padding:30px 0;
}

.why-exhibit-info .container{
    max-width:1320px;
    margin:0 auto;
    padding:0 20px;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

/*=========================
        LEFT SIDE
=========================*/

.why-info-left{
    padding-top:55px;
}

.why-info-left h2{
    font-family:"Roboto",sans-serif;
    font-size:40px;
    font-weight:500;
    line-height:1.2;
    color:#0b2458;
    margin-bottom:15px;
}

.why-info-left p{
    font-family:"Roboto",sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:1.8;
    color:#666;
    margin-bottom:20px;
}

.why-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:210px;
    height:54px;
    border-radius:50px;
    background:linear-gradient(90deg,#86007c,#174895);
    color:#ffffff;
    text-decoration:none;
    font-family:"Roboto",sans-serif;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.why-btn:hover{
    color:#ffffff;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    background: linear-gradient(to left, #63005d, #01316f);
}

/*=========================
        RIGHT SIDE
=========================*/

.why-info-right{
    padding-top:20px;
}

.why-item{
    font-family:"Roboto",sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:1.8;
    color:#666;
    padding:0 0 15px;
    margin-bottom:15px;
    border-bottom:1px solid #dddddd;
}

.why-item:last-child{
    margin-bottom:0;
}

/*=========================
        TABLET
=========================*/

@media(max-width:991px){
    .why-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
    .why-info-left,
    .why-info-right{
        padding-top:0;
    }
    .why-info-left h2{
        font-size:36px;
    }
    .why-info-left p,
    .why-item{
        font-size:16px;
    }
    .why-btn{
        width:220px;
        height:55px;
        font-size:16px;
    }
}

/*=========================
        MOBILE
=========================*/

@media(max-width:576px){
    .why-exhibit-info{
        padding:40px 0;
    }
    .why-info-left h2{
        font-size:30px;
    }
    .why-info-left p,
    .why-item{
        font-size:15px;
        line-height:1.7;
    }
    .why-btn{
        width:190px;
        height:50px;
        font-size:15px;
    }
}


/* ==========================================
   EXHIBITORS PROFILE SECTION
========================================== */
.exhibitors-profile-section {
  padding: 56px 0 58px;
  background: #f4f8fa;
}

.exhibitors-container {
  width: min(100% - 80px, 1540px);
  margin: 0 auto;
}

.exhibitors-title {
  margin: 0 0 40px;
  color: #092b59;
  text-align: center;
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 700;
  line-height: 1.15;
}

.exhibitors-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 28px;
}

.exhibitor-card {
  display: block;
  color: #0b2c58;
  text-align: center;
  text-decoration: none;
}

.exhibitor-card img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibitor-card h3 {
  margin: 15px 0 0;
  color: #0b2c58;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.exhibitor-card:hover img {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 14px 25px rgba(4, 35, 74, 0.2);
}

.exhibitor-card:hover h3 {
  color: #65005e;
}

/* Center registration button */
.exhibitors-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.exhibitors-register-btn {
  width: max-content; 
  padding: 16px 45px; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(to right, #63005d, #01316f); 
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(30, 29, 91, 0.15);
  transition: all 0.5s ease; 
}

.exhibitors-register-btn:hover {
  background: linear-gradient(to left, #63005d, #01316f); 
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(30, 29, 91, 0.25);
  color: #ffffff;
}

/* Laptop */
@media (max-width: 1200px) {
  .exhibitors-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 850px) {
  .exhibitors-container {
    width: min(100% - 48px, 760px);
  }
  .exhibitors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px 20px;
  }
}

/* Mobile */
@media (max-width: 580px) {
  .exhibitors-profile-section {
    padding: 42px 0 46px;
  }
  .exhibitors-container {
    width: min(100% - 30px, 500px);
  }
  .exhibitors-title {
    margin-bottom: 28px;
    font-size: 31px;
  }
  .exhibitors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 15px;
  }
  .exhibitor-card img {
    border-radius: 9px;
  }
  .exhibitor-card h3 {
    margin-top: 10px;
    font-size: 14px;
  }
  .exhibitors-button-wrap {
    margin-top: 35px;
  }
  .exhibitors-register-btn { 
    width: max-content; 
    padding: 14px 30px; 
    font-size: 15px; 
  }
}

/* ==========================================
   SPECIAL ZONE — TWO DEDICATED ZONES
========================================== */

/* ==========================================
   SPECIAL ZONES — TWO CARD LAYOUT
   Assembly Automation Zone + Startup Zone
========================================== */

.sz-section {
    position: relative;
    padding: 60px 0;
    background: #fff;
    font-family: "Roboto", Arial, sans-serif;
    overflow: hidden;
}

/* Dot texture — top right */
.sz-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 220px;
    background-image: radial-gradient(#1560bd 1.7px, transparent 1.7px);
    background-size: 15px 15px;
    opacity: .16;
    pointer-events: none;
}

/* Gear watermark — bottom right */
.sz-section::after {
    content: "\f013";
    position: absolute;
    right: -70px;
    bottom: 40px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 320px;
    color: #0a1650;
    opacity: .05;
    pointer-events: none;
}

.sz-container {
    position: relative;
    z-index: 2;
    width: min(1450px, calc(100% - 40px));
    margin: 0 auto;
}

/* ===========================
   HEADER
=========================== */

.sz-header {
    margin-bottom: 45px;
    text-align: center;
}

.sz-sub-title,
.sz-main-title {
    display: inline-block;
    margin: 0 8px;
    color: #0a1650;
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.2;
}

.sz-header-desc {
    max-width: 760px;
    margin: 16px auto 0;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

/* ===========================
   CARD GRID
=========================== */

.sz-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
}

.sz-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(10, 22, 80, .06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.sz-card:hover,
.sz-card:focus-within {
    transform: translateY(-6px);
    border-color: #c7d6ea;
    box-shadow: 0 18px 40px rgba(10, 22, 80, .14);
}

/* ===========================
   CARD MEDIA
=========================== */

.sz-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a1650;
    /* angled bottom edge — carries the arrow motif from the old layout */
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.sz-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.sz-card:hover .sz-card-media img {
    transform: scale(1.06);
}

.sz-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 40px;
    color: #fff;
    background: linear-gradient(90deg, #6d006a, #003f90);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.sz-tag i {
    font-size: 13px;
}

/* ===========================
   CARD BODY
=========================== */

.sz-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 30px 34px 34px;
}

.sz-title {
    margin: 0 0 18px;
    color: #0a1650;
    font-size: clamp(24px, 1.9vw, 32px);
    font-weight: 700;
    line-height: 1.25;
}

/* Separator */
.sz-gear-separator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #1560bd;
}

.sz-line {
    width: 65px;
    height: 1px;
    background: #d3dce8;
}

.sz-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1560bd;
}

.sz-gear-separator i {
    font-size: 22px;
    animation: spinGear 4s linear infinite;
}

@keyframes spinGear {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.sz-desc {
    margin: 0 0 26px;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

/* ===========================
   FEATURES
=========================== */

.sz-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    margin-bottom: 32px;
}

.sz-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sz-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(90deg, #6d006a, #003f90);
    font-size: 16px;
}

.sz-feature-item span {
    color: #0a1650;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* ===========================
   BUTTON
=========================== */

.sz-card-footer {
    margin-top: auto;
}

.sz-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    border-radius: 40px;
    color: #fff;
    background: linear-gradient(90deg, #6d006a, #003f90);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: box-shadow .3s ease, transform .3s ease;
}

.sz-btn i {
    font-size: 13px;
    transition: transform .3s ease;
}

.sz-btn:hover,
.sz-btn:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(10, 22, 80, .28);
}

.sz-btn:hover i,
.sz-btn:focus-visible i {
    transform: translateX(5px);
}

.sz-btn:focus-visible {
    outline: 3px solid #1560bd;
    outline-offset: 3px;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 1050px) {
    .sz-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sz-card {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .sz-card-body {
        padding: 28px 28px 30px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 620px) {
    .sz-section {
        padding: 34px 0;
    }

    .sz-container {
        width: calc(100% - 32px);
    }

    .sz-header {
        margin-bottom: 30px;
    }

    .sz-sub-title,
    .sz-main-title {
        display: block;
        font-size: 24px;
        margin: 0;
    }

    .sz-main-title {
        margin-top: 4px;
    }

    .sz-card-media {
        aspect-ratio: 16 / 11;
    }

    .sz-card-body {
        padding: 24px 20px 26px;
    }

    .sz-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sz-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   MOTION PREFERENCE
=========================== */

@media (prefers-reduced-motion: reduce) {
    .sz-card,
    .sz-card-media img,
    .sz-btn,
    .sz-btn i,
    .sz-gear-separator i {
        transition: none;
        animation: none;
    }

    .sz-card:hover {
        transform: none;
    }

    .sz-card:hover .sz-card-media img {
        transform: none;
    }
}
/*==================================
        FLOOR PLAN
==================================*/

.floor-plan{
    background:#eef3f8;
    padding:30px 0 40px;
    text-align:center;
}

.floor-plan .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.floor-plan h2{
    font-family:"Roboto",sans-serif;
    font-size:38px;
    font-weight:700;
    color:#12285f;
    margin-bottom:18px;
}

.floor-plan img{
    width:95%;
    max-width:1300px;
    height:360px;
    object-fit:cover;
    display:block;
    margin:0 auto;
    border-radius:12px;
}

.floor-plan p{
    max-width:700px;
    margin:18px auto 20px;
    font-family:"Roboto",sans-serif;
    font-size:16px;
    line-height:26px;
    color:#666;
}

.floor-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:150px;
    height:48px;
    border-radius:50px;
    background:linear-gradient(90deg,#86007c,#184896);
    color:#fff;
    text-decoration:none;
    font-family:"Roboto",sans-serif;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.floor-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    background: linear-gradient(to left, #63005d, #01316f);
}

/* Tablet */
@media(max-width:991px){
    .floor-plan h2{
        font-size:32px;
    }
    .floor-plan img{
        width:90%;
        height:260px;
    }
}

/* Mobile */
@media(max-width:576px){
    .floor-plan{
        padding:25px 0 35px;
    }
    .floor-plan img{
        width:100%;
        height:200px;
    }
    .floor-plan h2{
        font-size:28px;
    }
    .floor-plan p{
        font-size:15px;
    }
    .floor-btn{
        width:140px;
        height:45px;
        font-size:15px;
    }
}


/*=================================
 VISITORS PROFILE
=================================*/

.visitor-profile {
    background: #fff;
    padding: 60px 0;
}

.visitor-profile .container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}

/* Title */
.vp-title {
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 40px; 
    font-weight: 700;
    line-height: 48px; 
    color: #102147; 
    margin-bottom: 35px;
}

/* Grid */
.vp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 28px;
}

/* Card */
.vp-card {
    background: #082d49;
    border-radius: 14px;
    min-height: 75px; 
    padding: 12px 20px; 
    display: flex;
    align-items: center;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(0,0,0,.10);
}

.vp-card:hover {
    transform: translateY(-5px);
}

/* Icon */
.vp-card i {
    width: 44px;
    font-size: 30px;
    color: #fff;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Text */
.vp-card span {
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 20px; 
    font-weight: 500;
    line-height: 24px; 
}

/*=========================
   Responsive
=========================*/

/* Tablet */
@media(max-width:992px) {
    .vp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:768px) {
    .visitor-profile {
        padding: 45px 0;
    }
    .vp-title {
        font-size: 32px; 
        line-height: 40px;
    }
    .vp-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .vp-card {
        min-height: 80px;
        padding: 18px;
    }
    .vp-card i {
        font-size: 28px;
        width: 42px;
    }
    .vp-card span {
        font-size: 18px; 
        line-height: 22px;
    }
}


/*==========================
 STALL TYPES
===========================*/

.stall-types {
    background: #062b46;
    padding: 45px 0;          
}

.stall-container {
    max-width: 1140px;
    width: 90%;
    margin: auto;
}

/* Card */

.stall-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;      
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

/* Image */

.stall-image {
    width: 280px;             
    height: 200px;            
    background: #5272b4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stall-image img{
    width:110%;
    height:110%;
    object-fit:cover;
}

/* Content */

.stall-content {
    flex: 1;
    padding: 28px 36px;       
}

.stall-content h2 {
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    color: #222;
    margin-bottom: 12px;      
}

.stall-content p {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #707070;
    margin-bottom: 20px;      
}

/* Button */

.stall-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 46px;
    border-radius: 40px;
    background: linear-gradient(90deg,#7b0078,#13479b);
    color: #fff;
    text-decoration: none;
    font-family: Roboto,sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

.stall-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    background: linear-gradient(to left, #63005d, #01316f);
}

/*==========================
 Tablet
===========================*/

@media(max-width:992px){
    .stall-card{
        flex-direction:column;
    }
    .stall-image{
        width:100%;
        height:220px;
    }
    .stall-content{
        padding:25px;
    }
}

/*==========================
 Mobile
===========================*/

@media(max-width:768px){
    .stall-types{
        padding:35px 15px;
    }
    .stall-image{
        height:180px;
    }
    .stall-content{
        padding:20px;
    }
    .stall-content h2{
        font-size:24px;
    }
    .stall-content p{
        font-size:15px;
    }
    .stall-btn{
        width:150px;
        height:42px;
        font-size:15px;
    }
}


/*==================================
 READY TO EXHIBIT
==================================*/

.ready-exhibit{
    background:#fff;
    padding:45px 0;
}

.ready-container{
    max-width:1400px;
    margin:auto;
    padding: 0 80px 0 20px;
    display:grid;
    grid-template-columns:45% 55%;
    gap:45px;
    align-items:center;
}

/*========================
 LEFT
=========================*/

.ready-left h2{
    font-family:"Roboto",sans-serif;
    font-size:40px;
    font-weight:500;
    line-height:1.1;
    color:#11285d;
    margin-bottom:18px;
}

.ready-left p{
    font-family:"Roboto",sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#666;
    margin-bottom:16px;
}

.event-info{
    margin-bottom:25px;
}

.event-info p{
    margin:8px 0;
    font-size:16px;
    color:#666;
}

.event-info strong{
    color:#444;
    font-weight:500;
}

/*========================
 BUTTON
=========================*/

.ready-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:200px;
    height:46px;
    border-radius:50px;
    background:linear-gradient(90deg,#7b0077,#0f4b98);
    color:#fff;
    text-decoration:none;
    font-family:"Roboto",sans-serif;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.ready-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    background: linear-gradient(to left, #63005d, #01316f);
}

/*========================
 FORM
=========================*/

.ready-right form{
    width:100%;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:16px;
}

.form-row.full{
    grid-template-columns:1fr;
}

.ready-right input,
.ready-right textarea{
    width:100%;
    box-sizing:border-box;
    border:1px solid #d8dfe9;
    border-radius:18px;
    padding:18px 22px;
    font-family:"Roboto",sans-serif;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.ready-right input{
    height:58px;
}

.ready-right textarea{
    height:100px;
    resize:none;
}

.ready-right input:focus,
.ready-right textarea:focus{
    border-color:#184f9d;
}

.form-group{
    width:100%;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-family:Roboto,sans-serif;
    font-size:16px;
    font-weight:500;
    color:#555;
}

.form-group label span{
    color:#ff0000;
}
/*========================
 SUBMIT BUTTON
=========================*/

.submit-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:50px;
    background:linear-gradient(90deg,#7b0077,#0f4b98);
    color:#fff;
    cursor:pointer;
    font-family:"Roboto",sans-serif;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

.submit-btn:hover{
    transform:translateY(-3px);
    background: linear-gradient(to left, #63005d, #01316f);
}

/*========================
 TABLET
=========================*/

@media(max-width:991px){
    .ready-container{
        grid-template-columns:1fr;
        padding: 0 20px;
        gap:35px;
    }
    .ready-left h2{
        font-size:42px;
    }
    .form-row{
        grid-template-columns:1fr;
    }
    .ready-btn,
    .submit-btn{
        width:100%;
    }
}

/*========================
 MOBILE
=========================*/

@media(max-width:576px){
    .ready-exhibit{
        padding:35px 15px;
    }
    .ready-left h2{
        font-size:34px;
    }
    .ready-left p,
    .event-info p{
        font-size:15px;
    }
    .ready-right input{
        height:52px;
    }
    .ready-right textarea{
        height:90px;
    }
    .ready-btn,
    .submit-btn{
        height:52px;
        font-size:16px;
    }
}



/*==========================================
        FLOOR PLAN GATE MODAL (UPDATED DESIGN)
==========================================*/
.fp-modal[hidden]{ display:none; }

.fp-modal{
    position:fixed; inset:0; z-index:99999;
    display:flex; align-items:center; justify-content:center;
    padding:40px 20px; overflow-y:auto;
}

.fp-modal__backdrop{ position:fixed; inset:0; background:rgba(10,20,40,.75); }

.fp-modal__dialog{
    position:relative; width:100%; max-width:650px;
    background:#fff; border-radius:12px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    animation:fpPop .3s ease;
}

@keyframes fpPop{
    from{ opacity:0; transform:scale(0.95); }
    to{ opacity:1; transform:scale(1); }
}

/*======= HEAD =======*/
.fp-modal__head{
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    padding:25px 35px; border-bottom:1px solid #eaeaea;
}

.fp-modal__head h3{
    margin:0; font-family:"Roboto",sans-serif;
    font-size:24px; font-weight:600; line-height:1.3; color:#1a1a1a;
}

.fp-modal__close{
    flex:0 0 auto; width:32px; height:32px;
    border:none; background:transparent; border-radius:50%;
    font-size:26px; line-height:1; color:#777;
    cursor:pointer; transition:.2s; display:flex; align-items:center; justify-content:center;
}
.fp-modal__close:hover{ color:#111; }

.fp-modal__body{ padding:35px; }

/*======= FIELDS =======*/
.fp-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.fp-row--full{ grid-template-columns:1fr; }

.fp-group {
    position: relative;
}

.fp-group input{
    width:100%; height:52px; padding:0 20px;
    border:1px solid #e0e0e0; border-radius:8px;
    font-family:"Roboto",sans-serif; font-size:15px; color:#333;
    outline:none; transition:.25s;
    background: transparent;
}

.fp-group input:focus{
    border-color:#052659;
}

/* Inner Label (Behaves like placeholder with Red Asterisk) */
.fp-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 15px;
    pointer-events: none;
    transition: 0.2s;
    font-family: "Roboto", sans-serif;
}

.fp-group label span {
    color: #e53935; /* Red asterisk */
}

/* Hides custom label when input is focused or user has typed inside */
.fp-group input:focus + label,
.fp-group input:not(:placeholder-shown) + label {
    opacity: 0;
}

/*======= CHECKBOX =======*/
.fp-check{
    display:flex; align-items:center; gap:10px; margin:5px 0 25px;
    font-family:"Roboto",sans-serif; font-size:14px; color:#666; cursor:pointer;
}
.fp-check input{ width:18px; height:18px; cursor:pointer; accent-color:#052659; }

/*======= SUBMIT BUTTON =======*/
.fp-submit{
    display:flex; align-items:center; justify-content:center; gap:10px;
    width:100%; height:54px; border:none; border-radius:50px;
    background:linear-gradient(90deg, #4a004b, #031c4a);
    color:#fff; font-family:"Roboto",sans-serif; font-size:16px; font-weight:500;
    text-decoration:none; cursor:pointer; transition:.3s;
}
.fp-submit:hover{
    box-shadow:0 8px 20px rgba(3, 28, 74, .25);
    background:linear-gradient(to left, #4a004b, #031c4a);
}

/*======= RESPONSIVE =======*/
@media(max-width:768px){
    .fp-modal{ padding:20px 15px; }
    .fp-modal__head{ padding:20px 25px; }
    .fp-modal__head h3{ font-size:20px; }
    .fp-modal__body{ padding:25px; }
    .fp-row{ grid-template-columns:1fr; gap:16px; margin-bottom:16px; }
}
/*==========================================
        FLOOR PLAN GATE - HONEYPOT + SUCCESS
==========================================*/
.fp-hp{
    position:absolute !important; left:-9999px !important;
    width:1px; height:1px; opacity:0; pointer-events:none;
}

.fp-success{ text-align:center; padding:20px 0 10px; }

.fp-success h4{
    margin:0 0 10px; font-family:"Roboto",sans-serif;
    font-size:24px; font-weight:600; color:#052659;
}

.fp-success p{ margin:0 0 25px; font-size:16px; color:#555; }

.fp-download{
    display:inline-block; text-decoration:none; width:auto; padding-left:40px; padding-right:40px;
}

/*======= INLINE MESSAGE INSIDE THE MODAL =======*/
#floorPlanForm .enquiry-msg{
    margin:0 0 18px; padding:12px 16px; border-radius:6px;
    font-size:15px; line-height:1.4;
}
#floorPlanForm .enquiry-msg.is-ok{ background:#e7f6ec; color:#1b6b34; }
#floorPlanForm .enquiry-msg.is-error{ background:#fdecea; color:#b3261e; }