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

body{
  font-family:'Poppins', sans-serif;
  overflow-x:hidden;
  background:#111;
  color:white;
}

/* HEADINGS */

h1,
h2,
.contact-info h1,
.contact-form-box h2{
  font-family:'Cormorant Garamond', serif;
  font-weight:700;
  letter-spacing:1px;
}

/* HEADER */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:15px 60px;
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(10px);
  z-index:1000;
}

nav{
  display:flex;
  gap:28px;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:wrap;
}

nav a{
  display:inline-block;
color:white;
text-decoration:none;
font-family:'Poppins', sans-serif;
font-weight:700;
font-size:15px;
letter-spacing:0.5px;
padding:10px 18px;
border-radius:12px;
border:1px solid rgba(255,255,255,0.08);
transition:all 0.3s ease;
}

nav a:hover{

  color:#facc15;
background:rgba(255,255,255,0.10);
border-color:rgba(255,255,255,0.20);
box-shadow:
0 6px 18px rgba(0,0,0,0.20);
transform:translateY(-2px);
}

/* CONTACT PAGE */

.contact-page{
  min-height:100vh;

  padding:130px 40px 80px;

  background:
  linear-gradient(
  rgba(0,0,0,0.35),
  rgba(0,0,0,0.35)
  ),

  url('images/cover.jpg')
  center/cover no-repeat;
}

/* MAIN LAYOUT */

.contact-container{
  width:100%;
  max-width:1400px;
  margin:0 auto;

  display:flex;
  justify-content:space-between;
  align-items:flex-start;

  gap:80px;
}

/* LEFT SIDE */

.contact-info{
  width:48%;
  padding-top:40px;
}

.contact-logo{
   width:340px;
  max-width:100%;
  margin-bottom:25px;
}

.contact-info h1{
  font-size:50px;
  margin-bottom:20px;
  line-height:1;
}

.contact-info p{
  font-size:19px;
  line-height:1.9;
  max-width:520px;
  margin-bottom:35px;
  font-family:'Poppins', sans-serif;
}

.info-box{
  margin-bottom:24px;
}

.info-box h3{
  color:#facc15;
  margin-bottom:6px;
  font-size:20px;
}

.info-box a{
  color:white;
  text-decoration:none;
  font-size:16px;
  font-family:'Poppins', sans-serif;
}

/* SOCIAL */

.social-links{
  display:flex;
  gap:15px;
  margin-top:30px;
}

.social-btn{
  width:55px;
  height:55px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  color:white;
  text-decoration:none;

  font-size:24px;
  font-weight:bold;

  transition:0.3s;
}

.social-btn:hover{
  transform:translateY(-5px) scale(1.05);
}

.facebook{
  background:#1877f2;
}

.instagram{
  background:
  linear-gradient(
  45deg,
  #feda75,
  #fa7e1e,
  #d62976,
  #962fbf,
  #4f5bd5
  );
}

.whatsapp-icon{
  background:#25D366;
}

/* RIGHT SIDE FORM */

.contact-form-box{
  width:48%;

  margin-top:20px;

  padding:45px;

  border-radius:30px;

  background:rgba(255,255,255,0.45);

  backdrop-filter:blur(25px);

  -webkit-backdrop-filter:blur(25px);

  border:1px solid rgba(255,255,255,0.25);

  box-shadow:
  0 15px 45px rgba(0,0,0,0.25);
}

.contact-form-box h2{
  font-size:48px;
  margin-bottom:30px;
  color:#111;
}

.contact-form-box label{
  display:block;

  margin-top:18px;
  margin-bottom:8px;

  font-size:14px;
  font-weight:600;

  color:#111;

  font-family:'Poppins', sans-serif;
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select{
  width:100%;

  padding:16px;

  border:none;

  border-radius:14px;

  background:rgba(255,255,255,0.75);

  font-family:'Poppins', sans-serif;

  font-size:15px;

  color:#222;

  outline:none;
}

.contact-form-box textarea{
  resize:none;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder{
  color:#666;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus,
.contact-form-box select:focus{
  background:white;

  box-shadow:
  0 0 0 2px #0f766e;
}

/* PHONE */

.iti{
  width:100%;
}

/* CHECKBOX */

.checkbox-group{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:14px;

  background:rgba(255,255,255,0.45);

  padding:18px;

  border-radius:14px;

  margin-top:10px;
}

.checkbox-group label{
  display:flex;

  align-items:center;

  gap:10px;

  margin:0;

  font-size:15px;

  font-weight:500;

  color:#111;
}

.checkbox-group input[type="checkbox"]{
  width:18px;
  height:18px;
  accent-color:#0f766e;
}

/* DATE */

.date-row{
  display:flex;
  gap:15px;
}

/* BUTTON */

.contact-form-box button{
  width:100%;

  margin-top:30px;

  padding:18px;

  border:none;

  border-radius:50px;

  background:#0f766e;

  color:white;

  font-size:16px;

  font-weight:bold;

  cursor:pointer;

  transition:0.3s;

  font-family:'Poppins', sans-serif;
}

.contact-form-box button:hover{
  background:#115e59;
  transform:translateY(-3px);
}

/* FOOTER */

footer{
  text-align:center;
  padding:10px;
  background:black;
  color:white;

  font-family:'Poppins', sans-serif;
}

/* MOBILE FIX */

@media(max-width:768px){

  .contact-page{
    padding:110px 18px 60px;
  }

  .contact-container{
    display:block;
    width:100%;
  }

  .contact-info{
    width:100%;
    text-align:center;
    padding-top:0;
    margin-bottom:35px;
  }

  .contact-info h1{
    font-size:46px;
  }

  .contact-info p{
    font-size:17px;
    max-width:100%;
  }

  .contact-logo{
    width:230px;
    margin:auto auto 25px;
    display:block;
  }

  .social-links{
    justify-content:center;
  }

  .contact-form-box{
    width:100%;
    margin:0;
    padding:28px 22px;
    border-radius:24px;
  }

  .contact-form-box h2{
    font-size:38px;
  }

  .checkbox-group{
    grid-template-columns:1fr;
  }

  .date-row{
    flex-direction:column;
  }
}
/* MOBILE TAP FIX */

a,
button,
input,
textarea,
select{
  -webkit-tap-highlight-color: transparent;
}

nav a:focus,
nav a:active{
  outline:none;
  background:rgba(255,255,255,0.08);
}
@media(max-width:768px){

  header{
    padding:12px 10px;
    overflow-x:auto;
    overflow-y:hidden;
    white-space:nowrap;
  }

  header::-webkit-scrollbar{
    display:none;
  }

  nav{
    display:flex;
    flex-wrap:nowrap;
    gap:10px;
    justify-content:flex-start;
    align-items:center;
    min-width:max-content;
  }

  nav a{
    font-size:13px;
    padding:8px 12px;
    flex:0 0 auto;
  }

}
.footer-links{
  margin-top:12px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links a{
  color:inherit;
  text-decoration:none;
  opacity:.85;
  font-size:14px;
}

.footer-links a:hover{
  opacity:1;
  text-decoration:underline;
}
