* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #111;
  margin: 0;
  padding-top: 70px;
  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* HEADER*/

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  height: clamp(65px, 5vw, 75px);

  background: #121214;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
  width: 100%;

  max-width: 1400px;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 0 25px;
}

/* LOGO */

.logo {
  display: block;

  width: auto;

  height: clamp(48px, 4.5vw, 64px);

  object-fit: contain;

  user-select: none;

  -webkit-user-drag: none;

  transition: height 0.3s ease;
}

/* HERO SLIDER */
.hero {
  width: 100%;
  overflow: hidden;
  background: #111114;
}

/*SLIDER CONTAINER*/
.slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: clamp(220px, 56.25vw, 450px);
}

/* SLIDES*/
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

/* ==========================
   TABLET (768px - 1199px)
========================== */
@media (min-width: 768px) and (max-width: 1199px) {
  .slider {
    height: clamp(400px, 50vw, 600px);
  }
}

/* ==========================
   DESKTOP (1200px+)
========================== */
@media (min-width: 1200px) {
  .hero {
    margin-bottom: 60px;
  }

  .slider {
    height: clamp(600px, 45vw, 750px);
  }
}

/* ==========================
   LARGE SCREENS (1600px+)
========================== */
@media (min-width: 1600px) {
  .slider {
    height: 750px;
  }
}

/*OVERLAY*/

.overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45));

  z-index: 2;
}

/*BUTTONS */

.slider-btn {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 54px;

  height: 54px;

  border: none;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  color: #fff;

  font-size: 24px;

  cursor: pointer;

  backdrop-filter: blur(8px);

  transition: 0.3s;

  z-index: 5;
}

.slider-btn:hover {
  background: #ffffff;

  color: #111;
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

/*DOTS*/

.slider-dots {
  position: absolute;

  bottom: 35px;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  gap: 12px;

  z-index: 5;
}

.dot {
  width: 12px;

  height: 12px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.45);

  cursor: pointer;

  transition: 0.35s;
}

.dot.active {
  background: #fff;

  transform: scale(1.25);
}

/* DESKTOP */

@media (min-width: 768px) {
  .site-header {
    height: 80px;
  }

  .logo {
    height: 70px;
  }
}

/* TABLET */

@media (max-width: 991px) {
  .slider-btn {
    width: 46px;

    height: 46px;

    font-size: 20px;
  }
}

/* MOBILE */

@media (max-width: 767px) {
  .site-header {
    height: 65px;
  }

  .logo {
    height: 55px;
  }

  .slider-btn {
    width: 42px;

    height: 42px;

    font-size: 18px;
  }

  .prev {
    left: 12px;
  }

  .next {
    right: 12px;
  }

  .slider-dots {
    bottom: 20px;
  }

  .dot {
    width: 10px;

    height: 10px;
  }
}

/* SMALL MOBILE*/

@media (max-width: 480px) {
  .logo {
    height: 50px;
  }

  .slider-btn {
    width: 38px;

    height: 38px;

    font-size: 16px;
  }
}

.hero-copy-section {
  width: 100%;
  background: #111114 !important;
  padding: clamp(20px, 3vw, 40px) 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-copy-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ======================
   TYPOGRAPHY & HEADINGS 
========================= */

.hero-title {
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff !important; /* Pure White Locked */
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.hero-title .highlight {
  color: #ffffff !important;
  background: linear-gradient(135deg, #ffffff 0%, #e4e4e7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: initial !important;
  display: inline-block;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Sub-heading inside Title */
.hero-title .sub-title {
  font-weight: 600;
  color: #d4d4d8 !important;
  font-size: 0.85em;
}

/* Description Text */
.hero-description {
  max-width: 720px;
  margin: 16px auto 0 auto;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #a1a1aa !important;
  font-weight: 400;
}

/* Bold Text inside paragraph */
.hero-description strong {
  color: #ffffff !important;
  font-weight: 600;
}

/* ======================
   RESPONSIVE ADJUSTMENTS
========================= */

@media (max-width: 600px) {
  .hero-copy-section {
    padding: 16px 20px;
  }

  .hero-description {
    margin-top: 12px;
  }
}
/* ======================
   FOLLOW SECTION
========================= */

.follow-section {
  width: 100%;
  padding: 30px 20px 80px;
  text-align: center;
  background: #111114 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Toggle Button  */
.follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 30px;
  background: #e6e6e8 !important;
  color: #121214 !important;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color-scheme: light !important;
  -webkit-appearance: none;
}

.follow-btn span,
.follow-btn .btn-arrow {
  color: #121214 !important;
  stroke: #121214 !important;
}

.follow-btn:hover {
  background: #ffffff !important;
  color: #121214 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.follow-btn:active {
  transform: translateY(0);
}

/* ARROW ICON ANIMATION */
.btn-arrow {
  transform: rotate(0deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.follow-btn.active .btn-arrow,
.follow-card.show ~ .follow-btn .btn-arrow {
  transform: rotate(180deg);
}

/* Card Container */
.follow-card {
  width: 100%;
  max-width: 640px;
  margin-top: 0;
  background: rgba(26, 26, 30, 0.7) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px;
  padding: 0 28px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease,
    padding 0.3s ease,
    margin 0.3s ease,
    visibility 0.3s ease;
}

.follow-card.show {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  margin-top: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Text & Labels */
.company-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 8px;
}

.address {
  font-size: 14px;
  color: #a0a0a6 !important;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.address-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #71717a !important;
  font-weight: 600;
}

/* Social Buttons Container */
.social-links {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Base Social Link Color Lock */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f4f4f5 !important;
  background: #222226 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link span {
  color: #f4f4f5 !important;
}

/* OFFICIAL INSTAGRAM HOVER COLOR LOCK */
.social-link.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  ) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.social-link.instagram:hover span,
.social-link.instagram:hover svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/* OFFICIAL FACEBOOK HOVER COLOR LOCK */
.social-link.facebook:hover {
  background: #1877f2 !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.social-link.facebook:hover span,
.social-link.facebook:hover svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* Mobile Alignment */
@media (max-width: 600px) {
  .social-links {
    flex-direction: column;
    width: 100%;
  }
  .social-link {
    width: 100%;
    justify-content: center;
  }
}

/* SITE FOOTER */

.site-footer {
  width: 100%;
  background: #0e0e10;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px 24px;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.copyright-text {
  font-size: 14px;
  color: #e4e4e7;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.copyright-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* Back to Top Button */
.scroll-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1e;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f4f4f5; /* Highly readable button text */
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-top-btn svg {
  transition: transform 0.3s ease;
}

/* Scroll Button Hover Effect */
.scroll-top-btn:hover {
  background: #ffffff;
  color: #121214;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.scroll-top-btn:hover svg {
  transform: translateY(-2px);
}

.scroll-top-btn:active {
  transform: translateY(0);
}
