:root{
  --gold:#d9ac47;
  --bg:#000;
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  min-height:100%;
  overflow-x:hidden;
  overflow-y:auto;
  font-family:"azo-sans", "Minion Pro", serif;
  background:var(--bg);
  color:#fff;
}

/* ===============================
   HEADER
================================ */

.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:70px;
  display:flex;
  align-items:center;
  padding:0 22px;
  z-index:1000;
  background:rgba(0,0,0,0.15);
}

.logo img{
  padding-top:15px;
  height:65px;
}

/* CLOSE BUTTON - RIGHT CORNER */

.close-btn{
  position:fixed;
  top:22px;
  right:28px;
  left:auto;
  margin-left:0;
  background:none;
  border:0;
  cursor:pointer;
  z-index:3000;
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.close-btn svg{
  width:44px;
  height:44px;
}

/* ===============================
   PAGE
================================ */

.page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:90px 20px 35px;
}

/* ===============================
   CONTAINER
================================ */

.container{
  width:100%;
  max-width:1100px;
  min-height:620px;
  display:flex;
  border-radius:22px;
  overflow:hidden;
  background:linear-gradient(180deg,#0c0c0c,#050505);
  border:1px solid rgba(217,172,71,.2);
  box-shadow:
    0 40px 90px rgba(0,0,0,.65),
    0 0 60px rgba(217,172,71,.12);
}

/* ===============================
   LEFT FORM SECTION
================================ */

.left{
  width:50%;
  padding:34px;
  background:#000;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.left h1{
  margin:0 0 14px;
  font-size:42px;
  line-height:1.15;
  font-weight:700;
  color:var(--gold);
}

form{
  width:100%;
}

label{
  display:block;
  font-size:18px;
  margin-top:12px;
}

input,
textarea{
  width:100%;
  margin-top:6px;
  padding:12px;
  background:#151515;
  border:1px solid #333;
  border-radius:8px;
  color:#fff;
  font-size:15px;
}

textarea{
  height:90px;
  resize:none;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 2px rgba(217,172,71,.25);
}

button{
  width:100%;
  margin-top:18px;
  padding:13px;
  background:var(--gold);
  color:#000;
  border:none;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
  transition:.3s ease;
}

button:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(217,172,71,.25);
}

/* LOADER */

#loading{
  display:none;
  width:30px;
  height:30px;
  border:4px solid #444;
  border-top:4px solid var(--gold);
  border-radius:50%;
  animation:spin 1s linear infinite;
  margin:12px auto 0;
}

@keyframes spin{
  100%{
    transform:rotate(360deg);
  }
}

/* ===============================
   RIGHT INFO SECTION
================================ */

.right{
  width:50%;
  padding:34px;
  background:
    linear-gradient(rgba(0,0,0,.58),rgba(0,0,0,.86)),
    url("./image/elogo1.jpg") center/cover no-repeat;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.info{
  background:rgba(0,0,0,.58);
  padding:18px;
  border-radius:12px;
  border-left:4px solid var(--gold);
  margin-bottom:14px;
}

.info:last-child{
  margin-bottom:0;
}

.info h2{
  margin:0 0 8px;
  font-size:16px;
  color:var(--gold);
}

.info p{
  margin:6px 0 0;
  font-size:16px;
  line-height:1.5;
  color:#fff;
}

.info ul{
  margin:0;
  padding-left:0;
  list-style:none;
}

.info li{
  position:relative;
  list-style:none;
  padding-left:22px;
  font-size:16px;
  line-height:1.45;
  margin-bottom:16px;
}

/* GOLD DOTS FOR UK AND INDIA */

.info li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 8px rgba(217,172,71,.7);
  display:block;
}

.info li:last-child{
  margin-bottom:0;
}

.info li p:first-child{
  color:#fff;
  font-weight:600;
  margin-top:0;
}

.location{
  margin-top:8px;
  display:inline-block;
  color:var(--gold);
  text-decoration:none;
  font-size:14px;
}

.location:hover{
  text-decoration:underline;
}

.region{
  color:var(--gold);
  font-weight:600;
  margin-right:6px;
}

/* ===============================
   WAVE ANIMATION
================================ */

.wave{
  opacity:0;
  transform:translateY(26px);
  transition:
    opacity .6s ease,
    transform .7s cubic-bezier(.22,1,.36,1);
}

.wave.show{
  opacity:1;
  transform:none;
}

/* ===============================
   SUCCESS POPUP
================================ */

#success{
  position:fixed;
  inset:50% auto auto 50%;
  transform:translate(-50%,-50%);
  background:#111;
  border:1px solid var(--gold);
  padding:24px 30px;
  border-radius:12px;
  display:none;
  z-index:2000;
}

/* ===============================
   SIDE SOCIAL ICONS
================================ */

.side-socials{
  position:fixed;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:1200;
}

.side-socials a{
  width:46px;
  height:46px;
  border-radius:50%;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
  transition:all .35s cubic-bezier(.16,1,.3,1);
}

.side-socials .whatsapp{
  background:#25D366;
}

.side-socials .instagram{
  background:radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.side-socials .linkedin{
  background:#0077B5;
}

.side-socials .gmail{
  background:#EA4335;
}

.side-socials a:hover{
  transform:translateX(-6px) scale(1.08);
  box-shadow:0 0 22px rgba(0,0,0,.45);
}

/* ===============================
   DESKTOP - OLD PAGE STYLE
================================ */

@media(min-width:1025px){

  html,
  body{
    height:100%;
    overflow:hidden;
  }

  .page{
    height:100vh;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:90px 20px 35px;
  }

  .container{
    width:100%;
    max-width:1100px;
    height:620px;
    max-height:620px;
    min-height:0;
    display:flex;
    flex-direction:row;
    overflow:hidden;
    border-radius:22px;
  }

  .left,
  .right{
    width:50%;
    height:100%;
  }

  .left{
    padding:34px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    overflow:hidden;
  }

  .right{
    padding:28px 34px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    overflow-y:auto;
    overflow-x:hidden;
  }

  .right::-webkit-scrollbar{
    width:4px;
  }

  .right::-webkit-scrollbar-track{
    background:rgba(255,255,255,0.05);
  }

  .right::-webkit-scrollbar-thumb{
    background:rgba(217,172,71,0.55);
    border-radius:20px;
  }

  .left h1{
    font-size:40px;
    margin-bottom:20px;
  }

  label{
    font-size:16px;
    margin-top:10px;
  }

  input,
  textarea{
    padding:11px 12px;
  }

  textarea{
    height:86px;
  }

  button{
    padding:12px;
    margin-top:16px;
  }

  .info{
    padding:15px 18px;
    margin-bottom:14px;
  }

  .info h2{
    font-size:15px;
    margin-bottom:6px;
  }

  .info p,
  .info li{
    font-size:15px;
    line-height:1.45;
  }

  .info li{
    margin-bottom:14px;
  }

  .info li::before{
    top:9px;
  }

  .location{
    font-size:13px;
    margin-top:5px;
  }

  .side-socials{
    right:20px;
    top:50%;
    bottom:auto;
    left:auto;
    transform:translateY(-50%);
    flex-direction:column;
  }
}

/* ===============================
   TABLET RESPONSIVE
================================ */

@media(max-width:1024px){

  html,
  body{
    height:auto;
    min-height:100%;
    overflow-x:hidden;
    overflow-y:auto;
  }

  .page{
    height:auto;
    min-height:100vh;
    display:block;
    padding:95px 18px 100px;
  }

  .container{
    width:100%;
    max-width:720px;
    min-height:auto;
    height:auto;
    max-height:none;
    display:flex;
    flex-direction:column;
    overflow:visible;
    margin:0 auto;
    border-radius:20px;
  }

  .left,
  .right{
    width:100%;
    height:auto;
    min-height:auto;
    max-height:none;
    padding:30px;
  }

  .left{
    order:1;
  }

  .right{
    order:2;
    display:block;
    overflow:visible;
    background:
      linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.94)),
      url("./image/elogo1.jpg") center/cover no-repeat;
  }

  .left h1{
    font-size:34px;
  }

  label{
    font-size:15px;
  }

  input,
  textarea{
    padding:12px;
    font-size:14px;
  }

  textarea{
    height:90px;
  }

  .info{
    width:100%;
    padding:18px;
    margin-bottom:16px;
    border-left:3px solid var(--gold);
  }

  .info h2{
    font-size:16px;
  }

  .info p,
  .info li,
  .location{
    font-size:14px;
    line-height:1.6;
  }

  .info ul{
    padding-left:0;
    margin:0;
    list-style:none;
  }

  .info li{
    margin-bottom:16px;
  }

  .info li::before{
    top:10px;
  }

  .side-socials{
    position:fixed;
    left:50%;
    right:auto;
    top:auto;
    bottom:14px;
    transform:translateX(-50%);
    flex-direction:row;
    gap:10px;
    padding:8px 10px;
    border-radius:999px;
    background:rgba(0,0,0,.72);
    border:1px solid rgba(217,172,71,.25);
    backdrop-filter:blur(12px);
  }

  .side-socials a{
    width:40px;
    height:40px;
    font-size:18px;
  }

  .side-socials a:hover{
    transform:scale(1.05);
  }
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media(max-width:600px){

  .header{
    height:64px;
    padding:0 16px;
  }

  .logo img{
    height:54px;
    padding-top:10px;
  }

  .close-btn{
    position:fixed;
    top:20px;
    right:18px;
    left:auto;
    margin-left:0;
    width:42px;
    height:42px;
  }

  .close-btn svg{
    width:44px;
    height:44px;
  }

  .page{
    padding:82px 12px 100px;
  }

  .container{
    width:100%;
    max-width:100%;
    border-radius:16px;
  }

  .left,
  .right{
    padding:22px;
  }

  .left h1{
    font-size:30px;
    margin-bottom:18px;
  }

  label{
    font-size:14px;
  }

  input,
  textarea{
    padding:11px;
    font-size:14px;
  }

  textarea{
    height:82px;
  }

  .info{
    padding:15px;
    margin-bottom:14px;
  }

  .info h2{
    font-size:15px;
  }

  .info p,
  .info li,
  .location{
    font-size:13.5px;
  }

  .info li{
    padding-left:20px;
  }

  .info li::before{
    top:9px;
    width:6px;
    height:6px;
  }

  .side-socials{
    bottom:14px;
  }

  .side-socials a{
    width:38px;
    height:38px;
    font-size:17px;
  }
}