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

html {
  scroll-behavior: smooth;
}

div {
  scroll-margin-top: 100px;
}

:root {
  --red:    #871011;
  --red2:   #F62917;
  --yellow: #FAC601;
  --blue:   #09A8EF;
  --pink:   #FA40BE;
  --black:  #0d0d0d;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f2f2f2;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* ══════════════════════════════════════
   FONT UTILITY CLASSES
══════════════════════════════════════ */
.antonio {
  font-family: "Antonio", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.notable-regular {
  font-family: "Notable", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
#headerlogo {
  width: 128px;
  filter: drop-shadow(0 0 20px #00000079);
  transition: filter 0.2s;
}

#headerlogo:hover {
  filter: drop-shadow(0 0 2px var(--pink));
}

header {
  background: url("../images/pattern.jpg"), rgba(135, 16, 17, 0.96);
  background-blend-mode: multiply;
  background-size: cover;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(to right, var(--yellow), var(--blue), var(--pink)) 1;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: white;
  text-decoration: none;
  gap: 10px;
  padding: 12px;
  transition: color 0.2s;
}

nav a:hover, .navactive {
  color: var(--yellow);
}

/* ══════════════════════════════════════
   HERO BANNER
══════════════════════════════════════ */

.herobanner {
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.herobanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/tekiherobanner.jpg");
  background-size: cover;
  background-position: 50% 60%;
  filter: blur(4px) brightness(0.6);
  transform: scale(1.1);
  z-index: -1;
}

.pill-deposit { background:#FA40BE22; color:var(--pink); }
.pill-deposit_paid { background:#FA40BE22; color:var(--pink); }

.maintitle {
  font-family: 'Notable', sans-serif;
  font-size: 96px;
  color: var(--yellow);
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: -15px;
  text-align: center;

  animation: heroTextUp 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
  animation-delay: 0.1s;
}

.redtext {
  color: var(--red2);
}

.othertext {
  font-family: antonio;
  margin-bottom: 0;
  text-align: center;

  animation: heroTextUp 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
  animation-delay: 0.1s;
}

.herotext {
  color: var(--yellow);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subheading {
  font-family: antonio;
  font-size: 64px;
  font-weight: 150;
  color: white;
  margin-bottom: 5px;
  text-align: center;

  animation: heroTextUp 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
  animation-delay: 0.2s;
}

.subtitle {
  font-family: inter;
  font-size: 20px;
  font-weight: 300;
  color: white;
  max-width: 44ch;
  text-align: center;

  animation: heroTextUp 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
  animation-delay: 0.3s;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: white;
  text-align: center;
  max-width: 46ch;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);

  animation: heroTextUp 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
  animation-delay: 0.3s;
}

@keyframes heroTextUp {
  from {
    opacity: 0;
    transform: translateY(30px); 
  }
  to {
    opacity: 1;
    transform: translateY(0);   
  }
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}

.btn {
  padding: 12px 32px;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-reserve {
  background-color: var(--red2);
  color: white;
  box-shadow: 0 6px 18px rgba(246, 41, 23, 0.45);

  animation: heroTextUp 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
  animation-delay: 0.4s;
}

.btn-learn {
  background-color: var(--yellow);
  color: black;
  box-shadow: 0 6px 18px rgb(250, 198, 1, 0.45);
  
  animation: heroTextUp 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
  animation-delay: 0.5s;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn:active {
  transform: translateY(0);
}

.btn-hero {
  margin-top: 18px;
  padding: 14px 48px;
  background: var(--red2);
  color: white;
  font-family: 'Antonio', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
  box-shadow: 0 6px 18px rgba(246, 41, 23, 0.45);
}

.btn-hero:hover {
  transform: translateY(-3px);
  filter: brightness(1.12);
}

.btn-hero:active {
  transform: translateY(0);
}

/* ══════════════════════════════════════
   SECTION DIVIDER
══════════════════════════════════════ */
.section-divider {
  background-color: var(--black);
  height: 120px;
  padding: 0 30px;
  display: flex;
  align-items: center;
}

.section-divider h2, .black h2 {
  color: var(--yellow);
  font-family: antonio;
  font-weight: 100 !important;
  font-size: 36px;
}

/* ══════════════════════════════════════
   VIDEO
══════════════════════════════════════ */
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 24px;
  gap: 24px;
}

video {
  max-width: 80%;
  min-width: 60%;
  height: auto;
  border-radius: 12px;
}

/* ══════════════════════════════════════
   UTILITY
══════════════════════════════════════ */
.shadow {
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.5);
}

.bold {
  font-weight: bold;
}

.otherpage {
  min-height: 500px;
}

.otherpage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/tekiotherpages.jpeg");
  background-size: cover;
  background-position: 50% 60%;
  filter: blur(4px) brightness(0.6);
  transform: scale(1.1);
  z-index: -1;
}

/* ══════════════════════════════════════
   GRADIENT BORDER UTILITY
══════════════════════════════════════ */
.gradient {
  border-top: 4px solid transparent;
  background-image:
    linear-gradient(#FAC601, #FAC601),
    linear-gradient(to right, var(--yellow), var(--blue), var(--pink));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* ══════════════════════════════════════
   PROMO SECTION
══════════════════════════════════════ */
.promo-section {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promo {
  background-color: var(--yellow);
  border-radius: 12px;
  padding: 16px;
}

.promo h2 {
  font-family: antonio;
  font-size: 32px;
  padding-bottom: 10px;
}

.promo p {
  font-family: inter;
  font-size: 20px;
  font-weight: 300;
}

/* ══════════════════════════════════════
   BLACK SECTION
══════════════════════════════════════ */
.black {
  display: flex;
  flex-direction: column;
  background-image:
    linear-gradient(#000, #000),
    linear-gradient(to right, var(--yellow), var(--blue), var(--pink));
  color: white;
}

.black a {
  margin: 12px;
}

/* ══════════════════════════════════════
   GLOW ANIMATION
══════════════════════════════════════ */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin {
  to { --angle: 360deg; }
}

.glow {
  animation: spin 3s linear infinite;
  box-shadow:
    calc(sin(var(--angle)) * 20px) calc(cos(var(--angle)) * -20px) 25px 8px rgb(250, 198, 1, 0.5),
    calc(sin(var(--angle) + 120deg) * 20px) calc(cos(var(--angle) + 120deg) * -20px) 25px 8px rgb(9, 168, 239, 0.5),
    calc(sin(var(--angle) + 240deg) * 20px) calc(cos(var(--angle) + 240deg) * -20px) 25px 8px rgb(250, 64, 190, 0.5);
}



/* Pulse glow */
@keyframes pulsing {
  from { text-shadow: 0 0 4px rgb(250, 198, 1, 1); }
  to   { text-shadow: 0 0 8px rgb(9, 168, 239, 1),
                     0 0 12px rgb(250, 64, 190, 1); }
}

.pulse { 
  animation: pulsing 2s ease-in-out infinite alternate; 
  font-weight: bold;
  
}

.pulser {
    animation: pulsing 2s ease-in-out infinite alternate, heroTextUp 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both; 
    font-weight: bold;
}
/* ══════════════════════════════════════
   CONTAINER & CARDS
══════════════════════════════════════ */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px;
  gap: 20px;
}

.small {
  padding: 12px;
  flex-direction: column;
  align-items: center;
}

.testt  {
  text-align: center;
  max-width: 100%;
  color: #000;
  padding: 0 100px;
  margin-bottom: 20px;
}



.customer-card {
  background-image: url("../images/tekipattern.png");
  background-repeat: repeat;
  background-size: 64px;
  background-color: var(--blue);
  box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.2);

  height: 300px;
  max-width: 100%;
  padding: 12px;
  gap: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
}

.customer-card img {
  width: 45%;
  max-width: 320px;
  max-height: 240px;
  object-fit: cover;
  box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.2);
  border-radius: 24px;
}

.text-container {
  color: white;
  max-width: 45%;
}

.text-container h3 {
  font-family: antonio;
  font-size: 36px;
}

.text-container p {
  font-family: inter;
  font-weight: 300;
}

.flexcolumn {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.about-card img {
  width: 70%;
  max-width: 540px;
  object-fit: cover;
  border-radius: 24px;
}

.abouttext {
  color: black;
  max-width: 56ch;
}

.abouttext h3 {
  font-size: 48px;
  padding-bottom: 12px;
}

/* ══════════════════════════════════════
   4:3 CAROUSEL ADJUSTMENTS
   ══════════════════════════════════════ */

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 900px; 
  margin: 40px auto;
  display: flex;
  align-items: center;
}

.carousel {
  width: 100%;
  overflow: hidden; 
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  min-width: 100%;
  height: auto; 
}

.carousel-slide img {
  width: 100%;
  
  aspect-ratio: 4 / 3; 
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--yellow);
  font-size: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.carousel-btn:hover {
  background: var(--red2);
  color: white;
  transform: scale(1.1);
}

.prev-btn { left: -24px; }
.next-btn { right: -24px; }

.testimonials {
  max-width: 670px;
}

@media (max-width: 900px) {
  .prev-btn { left: 12px; }
  .next-btn { right: 12px; }
  .carousel-container { max-width: 90%; }
}

.smallcontainer {
  background-color: #D9D9D9;

  height: auto;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
  background-image:
    linear-gradient(#D9D9D9, #D9D9D9),
    linear-gradient(to right, var(--yellow), var(--blue), var(--pink));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.smallcontainer h2, .smallcontainer h1 {
  font-family: antonio;
}

.smallcontainer hr {
  border: none;
  border-top: 2px solid var(--yellow);
  width: 100%;
  max-width: 100px;
  align-self: center;
}

.smallercontainer {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.smallercontainer ul {
  font-family: inter;
  padding-bottom: 18px;
}

.smallercontainer li {
  padding: 10px 0;
}

iframe {
  border-radius: 4px;
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.page {
  display: flex;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 0 0 auto;
  width: 480px;
}

.info-card {
  background-color: var(--yellow);
  border-radius: 16px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  border-top: 5px solid transparent;
  background-image:
    linear-gradient(var(--yellow), var(--yellow)),
    linear-gradient(to right, var(--yellow), var(--blue), var(--pink));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 2px 6px 14px rgba(0, 0, 0, 0.15);
}

.info-card .card-icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 4px;
}

.info-card h3 {
  font-family: 'Antonio', sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 2px;
}

.info-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  color: #222;
  line-height: 1.6;
}

.info-card a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: underline;
}

.info-card .highlight {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #111;
}

.facebook-card {
  grid-column: span 2;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  padding: 32px 28px;
}

.facebook-card .fb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.facebook-card .fb-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.facebook-card .fb-header h3 {
  font-size: 26px;
}

.facebook-card a {
  text-decoration: none;
}

.fb-icon {
  width: 48px;
  height: 48px;
}

.form-card {
  flex: 1;
  background: #111;
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  border-top: 5px solid transparent;
  background-image:
    linear-gradient(#111, #111),
    linear-gradient(to right, var(--yellow), var(--blue), var(--pink));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 2px 6px 20px rgba(0, 0, 0, 0.35);
}

.form-card h2 {
  font-family: 'Antonio', sans-serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  margin-bottom: 18px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--yellow);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: #D9D9D9;
  border: none;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #111;
  outline: none;
  transition: background 0.2s;
  width: 100%;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #ebebeb;
  box-shadow: 0 0 0 2px var(--yellow);
}

.form-group textarea {
  height: 150px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--pink);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 24px;
  transition: filter 0.2s, transform 0.15s;

}

.btn-submit:hover { 
  filter: brightness(1.1); 
  transform: translateY(-1px);   
  box-shadow: 0 0 18px rgb(250, 64, 190, 0.45);}
.btn-submit:active { transform: translateY(0); }

/* ══════════════════════════════════════
   POLICY SECTION
══════════════════════════════════════ */
.policy-section {
  background: #1a1a1a;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.policy-card {
  background: #222;
  border-radius: 16px;
  padding: 32px 36px;
  max-width: 520px;
  flex: 1 1 300px;
  border-top: 4px solid transparent;
  background-image:
    linear-gradient(#111, #111),
    linear-gradient(to right, var(--yellow), var(--blue), var(--pink));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-image-slice: 1;
}

.policy-card h3 {
  font-family: 'Antonio', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--yellow);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.policy-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 300;
  color: #ccc;
  line-height: 1.5;
}

.policy-list li::before {
  content: "◆";
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 10px;
}

.cta-card {
  background: linear-gradient(135deg, var(--red) 0%, #3a0000 100%);
  border-radius: 16px;
  padding: 32px 36px;
  max-width: 360px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 18px;
  box-shadow: 0 8px 30px rgba(246, 41, 23, 0.25);
}

.cta-card h3 {
  font-family: 'Antonio', sans-serif;
  font-size: 32px;
  font-weight: 200;
  color: white;
  letter-spacing: 1px;
}

.cta-card p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.btn-open-modal {
  padding: 14px 36px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Antonio', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
  box-shadow: 0 4px 14px rgba(250, 198, 1, 0.4);
  width: 100%;
}

.btn-open-modal:hover { transform: translateY(-2px); filter: brightness(1.1); }





/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background-color: var(--black);
  color: white;
  width: auto;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 12px;
}

#footerlogo {
  max-width: 48px;
  height: 48px;
  filter: invert(1);
}

footer h4 {
  font-family: antonio;
  font-size: 18px;
}

footer hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  max-width: 400px;
  align-self: center;
}

footer a {
  font-size: 14px;
  font-weight: 300;
  color: white;
  padding: 6px 10px;
}

footer nav a:hover { color: var(--yellow); }

.fb-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: inter;
  color: white;
  font-size: 14px;
}

.fb-row img {
  width: 36px;
  filter: invert(1);
}

.footer-copyright {
  font-family: inter;
  font-size: 8px;
  color: #ffffff;
  opacity: 0.3;
  text-align: center;
  letter-spacing: 0.5px;
  padding-top: 16px;
}

/* ══════════════════════════════════════
   MODAL OVERLAY
══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #161616;
  border-radius: 20px;
  width: 94%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  border-top: 4px solid transparent;
    background-image:
    linear-gradient(#111, #111),
    linear-gradient(to right, var(--yellow), var(--blue), var(--pink));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-image-slice: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) #222;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal::-webkit-scrollbar { width: 5px; }
.modal::-webkit-scrollbar-track { background: #222; }
.modal::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 4px; }

/* ── MODAL HEADER ── */
.modal-header {
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='10'/%3E%3C/g%3E%3C/svg%3E") repeat,
              linear-gradient(135deg, #871011 0%, #3a0000 100%);
  padding: 28px 28px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-title-block h2 {
  font-family: 'Notable', sans-serif;
  font-size: 30px;
  color: var(--yellow);
  letter-spacing: 1px;
}

.modal-title-block p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.modal-close:hover { background: rgba(246, 41, 23, 0.5); }

/* ── STEP TRACKER ── */
.step-tracker {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px 0;
  gap: 0;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #9CAF88;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Antonio', sans-serif;
  font-size: 14px;
  color: #9CAF88;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  z-index: 1;
}

.step-dot.active {
  background: transparent;
  border-color: #9CAF88;
  color: #9CAF88;
  font-weight: 700;
}

.step-dot.done {
  background: #9CAF88;
  border-color: #9CAF88;
  color: white;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #333;
  transition: background 0.3s;
}

.step-line.done { background: #9CAF88; }

.step-labels {
  display: flex;
  justify-content: space-between;
  padding: 6px 14px 0;
}

.step-label {
  font-family: 'Antonio', sans-serif;
  font-size: 11px;
  color: #555;
  text-align: center;
  width: 80px;
  transition: color 0.3s;
}

.step-label.active { color: var(--yellow); }
.step-label.done { color: var(--blue); }

/* ── MODAL BODY ── */
.modal-body { padding: 24px 28px 28px; }

.step-panel { display: none; animation: fadeUp 0.3s ease; }
.step-panel.visible { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MODAL FORM FIELDS ── */
.modal label {
  font-family: 'Antonio', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.modal input,
.modal select,
.modal textarea {
  background: white;
  border: 1.5px solid #333;
  border-radius: 8px;
  color: black;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(250, 198, 1, 0.15);
}



.modal input::placeholder,
.modal textarea::placeholder { color: #999; }
.modal select option { background: white; }
.modal textarea { resize: none; min-height: 90px; }

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
}

/* ── DURATION CHIPS ── */
.chip-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  padding: 9px 20px;
  border-radius: 30px;
  border: 1.5px solid #444;
  background: #242424;
  color: #888;
  font-family: 'Antonio', sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.chip.selected {
  border-color: var(--yellow);
  background: rgba(250, 198, 1, 0.15);
  color: var(--yellow);
}

/* ── AVAILABILITY BADGE ── */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(9, 168, 239, 0.15);
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 300;
  margin-top: -6px;
  margin-bottom: 4px;
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── CONFIRM SUMMARY ── */
.confirm-summary {
  background: #1f1f1f;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 20px;
  border-left: 4px solid var(--yellow);
}

.confirm-summary h4 {
  font-family: 'Antonio', sans-serif;
  font-size: 18px;
  color: var(--yellow);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #2a2a2a;
  font-size: 14px;
  font-weight: 300;
}

.summary-row:last-child { border-bottom: none; }
.summary-row span:first-child { color: #888; }
.summary-row span:last-child { color: white; text-align: right; }

/* ── GCASH BOX ── */
.gcash-box {
  background: #1f1f1f;
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid #333;
}

.gcash-qr {
  width: 240px;
  border-radius: 12px;
  background: white;
  padding: 10px;
}

.payment-info {
  text-align: center;
  color: white;
  line-height: 1.8;
}

/* ── TERMS ── */
.terms-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.terms-row input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 3px;
}

.terms-row p {
  font-size: 13px;
  font-weight: 300;
  color: #888;
  line-height: 1.5;
}

.terms-row a { color: var(--yellow); text-decoration: underline; }

/* ── SUCCESS SCREEN ── */
.success-screen {
  text-align: center;
  padding: 10px 0 30px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(9, 168, 239, 0.15);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.success-screen h3 {
  font-family: 'Notable', sans-serif;
  font-size: 26px;
  color: var(--yellow);
  margin-bottom: 10px;
}

.success-screen p {
  font-size: 14px;
  font-weight: 300;
  color: #888;
  line-height: 1.6;
  max-width: 36ch;
  margin: 0 auto;
}

.booking-ref {
  margin: 20px auto;
  background: #1f1f1f;
  border-radius: 12px;
  padding: 16px 24px;
  display: inline-block;
  border: 1.5px dashed #333;
}

.booking-ref span {
  font-family: 'Antonio', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--blue);
}

.booking-ref p {
  font-size: 11px;
  color: #555;
  margin-top: 4px;
  letter-spacing: 1px;
}

/* ── MODAL NAV BUTTONS ── */
.modal-nav {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.btn-back {
  flex: 1;
  padding: 13px;
  background: #242424;
  border: 1.5px solid #333;
  border-radius: 10px;
  color: #aaa;
  font-family: 'Antonio', sans-serif;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-back:hover { border-color: #555; color: white; }

.btn-next {
  flex: 2;
  padding: 13px;
  background: var(--yellow);
  color: #000;
  border: none;
  border-radius: 10px;
  font-family: 'Antonio', sans-serif;
  font-size: 17px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(250, 198, 1, 0.3);
}

.btn-next:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ── FIELD ERRORS ── */
.field-error { border-color: var(--red2) !important; }
.error-msg { font-size: 11px; color: var(--red2); margin-top: 2px; }



/* ══════════════════════════════════════
   BURGER MENU
══════════════════════════════════════ */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animate burger → X when open */
.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav drawer */
header nav.mobile-open {
  display: flex !important;
}

header nav.mobile-open::before {

}
/* ══════════════════════════════════════
   LAPTOP  (max-width: 1200px)
══════════════════════════════════════ */
@media (max-width: 1200px) {

  /* --- Hero --- */
  .maintitle     { font-size: 80px; }
  .subheading    { font-size: 52px; }
  .subtitle      { font-size: 18px; }

  /*Carousel*/
  .testimonials {
    max-width: 75%;
  }

  .testt {
    padding: 0 80px;
    margin-bottom: 12px;
  }

  /* --- Video section --- */
  .video-container { flex-direction: column; }
  video { max-width: 100%; min-width: unset; width: 100%; }
  .promo-section { width: 80%; flex-direction: row; }

  /* --- About cards --- */
  .about-card img { max-width: 420px; }
  .abouttext h3   { font-size: 40px; }

  /* --- Contact page --- */
  .page { flex-direction: column; align-items: stretch; }
  .left { width: 100%; }

  /* --- Smallcontainer (About map) --- */


  /* --- Footer --- */
  footer { height: auto; }
}

/* ══════════════════════════════════════
   TABLET  (max-width: 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {

  /* --- Header / Burger --- */
  .burger { display: flex; }

  header nav {
    display: flex !important;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: url("../images/patternblur.jpg"), rgba(135, 16, 17, 0.98);
    background-blend-mode: multiply;
    background-size: cover;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 24px 0 32px;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to right, var(--yellow), var(--blue), var(--pink)) 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 1050;

    opacity: 0;
    transform: translateY(-15px); 
    pointer-events: none;        

    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }


  header nav.mobile-open {
    opacity: 1;
    transform: translateY(0);    
    pointer-events: all; 
  }

  header nav a {
    font-size: 24px;
    padding: 14px 20px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  header nav a:last-child { border-bottom: none; }

  /* --- Hero --- */
  .herobanner    { min-height: 540px; }
  .maintitle     { font-size: 64px; }
  .subheading    { font-size: 42px; }
  .subtitle      { font-size: 16px; max-width: 36ch; }
  .button-group  { flex-direction: column; gap: 12px; }

  /* --- Section divider --- */
  .section-divider { height: 80px; }
  .section-divider h2 { font-size: 28px; }

  /* --- Video / Promo --- */
  .video-container  { padding: 16px; gap: 16px; }
  .promo-section    { width: 100%; flex-direction: column; }

  /* --- Customer cards --- */
  .container        { flex-direction: column; padding: 36px 20px; }
  .testt { padding: 0 80px; margin-bottom: 18px;}
  .customer-card    { width: 100%; height: 100%; }
  .customer-card img { width: 100%; max-width: 100%; max-height: 220px; }
  .text-container   { max-width: 100%; }

  .testimonials {
    max-width: 90%;
  }
  /* --- About cards --- */
  .about-card       { flex-direction: column; }
  .about-card:nth-child(2) { flex-direction: column; }
  .about-card img   { width: 100%; max-width: 100%; }
  .abouttext        { max-width: 100%; }
  .abouttext h3     { font-size: 32px; }

  /* --- About map --- */
  .smallcontainer { width: 100%; }
  .smallercontainer { flex-direction: column; width: 80%;}
  iframe { max-width: 100%; height: 300px; }

  /* --- Contact page --- */
  .left { grid-template-columns: 1fr; }
  .facebook-card { grid-column: span 1; }

  /* --- Policy section --- */
  .policy-section { padding: 40px 20px; }

  /* --- Footer --- */
  footer { height: auto; padding: 32px 20px; gap: 10px; }
}

/* ══════════════════════════════════════
   MOBILE  (max-width: 480px)
══════════════════════════════════════ */
@media (max-width: 480px) {

  header { padding: 0 16px; height: 80px; }
  #headerlogo { width: 100px; }
  header nav { top: 80px; }

  .herobanner    { min-height: 460px; gap: 6px; padding: 0 16px; }
  .otherpage     { min-height: 360px; }
  .maintitle     { font-size: 48px; letter-spacing: 1px; margin-bottom: 0;}
  .subheading    { font-size: 30px; }
  .subtitle      { font-size: 14px; max-width: 100%; text-align: center; }

  .section-divider { padding: 0 16px; height: 70px; }
  .section-divider h2 { font-size: 22px; }

  .promo h2 { font-size: 24px; }
  .promo p  { font-size: 16px; }

  .container { padding: 24px 12px; gap: 16px; }
  .testt { padding: 0 24px;}
  .customer-card { flex-direction: column; padding: 24px; height: 100%; justify-content: flex-start;}
  .customer-card img { min-height: 300px;}
  .text-container h3 { font-size: 26px; }
  .abouttext h3 { font-size: 26px; }

  .form-row { flex-direction: column; gap: 0; }
  .form-card { padding: 24px 16px; border-radius: 12px; }

  .btn { padding: 12px 24px; font-size: 14px; }
  .btn-open-modal { font-size: 17px; }

  footer { padding: 24px 12px; gap: 8px; text-align: center; }
  footer nav a { font-size: 13px; padding: 4px 8px; }
}

