/* =========================
CONTACT SECTION
========================= */

.con-sec{

  padding:90px 20px;

  background:
  linear-gradient(
    180deg,
    #050816 0%,
    #071226 100%
  );

}

/* =========================
WRAP
========================= */

.con-wrap{

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:28px;

}

/* =========================
CARD
========================= */

.con-card{

  position:relative;

  overflow:hidden;

  padding:40px 34px;

  border-radius:28px;

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

  backdrop-filter:blur(14px);

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

  transition:0.4s ease;

}

/* HOVER */

.con-card:hover{

  transform:
  translateY(-8px);

  border-color:
  rgba(255,255,255,0.14);

  box-shadow:
  0 20px 50px rgba(0,0,0,0.25);

}

/* =========================
ICON
========================= */

.con-icon{

  width:74px;
  height:74px;

  margin-bottom:28px;

  border-radius:22px;

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:30px;

  color:#ffffff;

}

/* WHATSAPP */

.con-icon.wa{

  background:
  linear-gradient(
    135deg,
    #16A34A,
    #22C55E
  );

}

/* CALL */

.con-icon.call{

  background:
  linear-gradient(
    135deg,
    #2563EB,
    #60A5FA
  );

}

/* EMAIL */

.con-icon.mail{

  background:
  linear-gradient(
    135deg,
    #7C3AED,
    #A855F7
  );

}

/* =========================
TITLE
========================= */

.con-card h3{

  margin-bottom:18px;

  font-size:28px;

  line-height:1.3;

  color:#ffffff;

}

/* =========================
TEXT
========================= */

.con-card p{

  margin-bottom:30px;

  font-size:16px;

  line-height:1.9;

  color:#CBD5E1;

}

/* =========================
BUTTON
========================= */

.con-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:15px 28px;

  border-radius:60px;

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

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

  color:#ffffff;

  text-decoration:none;

  font-size:15px;

  font-weight:600;

  transition:0.35s ease;

}

/* HOVER */

.con-btn:hover{

  transform:
  translateY(-3px);

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

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  .con-wrap{

    grid-template-columns:
    repeat(2,1fr);

  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .con-sec{

    padding:70px 20px;

  }

  .con-wrap{

    grid-template-columns:1fr;

    gap:22px;

  }

  .con-card{

    padding:34px 28px;

  }

  .con-card h3{

    font-size:24px;

  }

}

/* =========================
BOOKING SECTION
========================= */

.book-sec{

  position:relative;

  overflow:hidden;

  padding:110px 20px;

  background:
  linear-gradient(
    180deg,
    #050816 0%,
    #071226 50%,
    #050816 100%
  );

}

/* =========================
GLOW
========================= */

.book-glow{

  position:absolute;

  border-radius:50%;

  filter:blur(120px);

}

/* LEFT */

.glow-left{

  top:-120px;
  left:-120px;

  width:320px;
  height:320px;

  background:
  rgba(37,99,235,0.12);

}

/* RIGHT */

.glow-right{

  right:-120px;
  bottom:-120px;

  width:360px;
  height:360px;

  background:
  rgba(168,85,247,0.10);

}

/* =========================
WRAP
========================= */

.book-wrap{

  position:relative;

  z-index:2;

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  42% 58%;

  gap:55px;

  align-items:flex-start;

}

/* =========================
LEFT
========================= */

.book-left{

  position:sticky;

  top:120px;

}

/* TAG */

.book-tag{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:13px 24px;

  margin-bottom:28px;

  border-radius:60px;

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

  backdrop-filter:blur(12px);

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

  color:#60A5FA;

  font-size:14px;

  font-weight:500;

}

/* TITLE */

.book-left h2{

  margin-bottom:28px;

  font-size:48px;

  line-height:1.15;

  color:#ffffff;

}

/* TEXT */

.book-left p{

  margin-bottom:34px;

  font-size:17px;

  line-height:1.9;

  color:#CBD5E1;

}

/* TIME */

.book-time{

  display:flex;

  align-items:center;

  gap:14px;

  padding:18px 24px;

  border-radius:22px;

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

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

  backdrop-filter:blur(12px);

}

/* ICON */

.book-time i{

  font-size:20px;

  color:#60A5FA;

}

/* TEXT */

.book-time span{

  font-size:15px;

  line-height:1.7;

  color:#E2E8F0;

}

/* =========================
RIGHT
========================= */

.book-right{

  display:flex;

  flex-direction:column;

  gap:24px;

}

/* CARD */

.book-card{

  position:relative;

  overflow:hidden;

  display:flex;

  align-items:flex-start;

  gap:24px;

  padding:34px;

  border-radius:28px;

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

  backdrop-filter:blur(14px);

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

  transition:0.4s ease;

}

/* HOVER */

.book-card:hover{

  transform:
  translateY(-6px);

  border-color:
  rgba(255,255,255,0.14);

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

}

/* NUMBER */

.book-no{

  min-width:70px;
  height:70px;

  border-radius:22px;

  display:flex;

  align-items:center;

  justify-content:center;

  background:
  linear-gradient(
    135deg,
    #2563EB,
    #60A5FA
  );

  color:#ffffff;

  font-size:24px;

  font-weight:700;

  box-shadow:
  0 15px 35px rgba(37,99,235,0.25);

}

/* TITLE */

.book-con h3{

  margin-bottom:14px;

  font-size:28px;

  line-height:1.3;

  color:#ffffff;

}

/* TEXT */

.book-con p{

  font-size:16px;

  line-height:1.9;

  color:#CBD5E1;

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  .book-wrap{

    grid-template-columns:1fr;

  }

  .book-left{

    position:relative;

    top:auto;

  }

  .book-left h2{

    font-size:40px;

  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .book-sec{

    padding:85px 20px;

  }

  .book-wrap{

    gap:40px;

  }

  .book-left h2{

    font-size:34px;

    line-height:1.25;

  }

  .book-left p{

    font-size:16px;

    line-height:1.85;

  }

  .book-card{

    flex-direction:column;

    padding:30px 26px;

    gap:20px;

  }

  .book-no{

    width:64px;
    height:64px;

    min-width:64px;

    font-size:22px;

  }

  .book-con h3{

    font-size:24px;

  }

}
/* =========================
INFO SECTION
========================= */

.info-sec{

  position:relative;

  overflow:hidden;

  padding:100px 20px;

  background:
  linear-gradient(
    180deg,
    #071226 0%,
    #050816 100%
  );

}

/* =========================
GLOW
========================= */

.info-glow{

  position:absolute;

  top:-120px;
  right:-120px;

  width:340px;
  height:340px;

  border-radius:50%;

  background:
  rgba(37,99,235,0.10);

  filter:blur(120px);

}

/* =========================
WRAP
========================= */

.info-wrap{

  position:relative;

  z-index:2;

  max-width:900px;

  margin:auto;

  text-align:center;

}

/* =========================
TAG
========================= */

.info-tag{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:13px 24px;

  margin-bottom:30px;

  border-radius:60px;

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

  backdrop-filter:blur(12px);

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

  color:#60A5FA;

  font-size:14px;

  font-weight:500;

}

/* =========================
TITLE
========================= */

.info-wrap h2{

  margin-bottom:34px;

  font-size:46px;

  line-height:1.18;

  color:#ffffff;

}

/* =========================
TEXT
========================= */

.info-text{

  display:flex;

  flex-direction:column;

  gap:24px;

}

.info-text p{

  font-size:17px;

  line-height:1.95;

  color:#CBD5E1;

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

  .info-wrap h2{

    font-size:40px;

  }

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .info-sec{

    padding:80px 20px;

  }

  .info-wrap h2{

    font-size:34px;

    line-height:1.24;

  }

  .info-text p{

    font-size:16px;

    line-height:1.85;

  }

}