@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

html {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .sm-column-reverse {
    flex-direction: column-reverse;
  }
}

.fs-small {
  font-size: 12px;
}

label span {
  color: #e50914;
}

.main-navbar {
  background: #000;
  padding: 10px 0;
  border-bottom: 1px solid #171616;
}
.main-navbar .navbar-brand img {
  height: 60px;
}
.main-navbar .nav-link {
  color: #ffffff;
  font-weight: 500;
  margin: 0 8px;
  position: relative;
}
.main-navbar .nav-link.active {
  color: #e50914;
}
.main-navbar .nav-link:hover {
  color: #e50914;
}
.main-navbar .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e50914;
  transition: width 0.3s ease;
}
.main-navbar .nav-link:hover::before {
  width: 100%;
}
.main-navbar .nav-link.active::before {
  width: 100%;
}
.main-navbar .btn-quote {
  background: #e50914;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .main-navbar .btn-quote {
    padding: 8px 18px;
  }
}
.main-navbar .btn-quote:hover {
  background: rgb(204.4642857143, 8.0357142857, 17.8571428571);
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: rgb(255, 255, 255);
}

.navbar-nav .dropdown-menu {
  padding: 0px;
}
.navbar-nav .dropdown-menu li a {
  padding: 10px 20px;
}
.navbar-nav .dropdown-menu li a:hover {
  background-color: #000;
  color: #fff;
}

.hero-slider {
  position: relative;
}
.hero-slider .carousel-item {
  height: 90vh;
}
@media (max-width: 991px) {
  .hero-slider .carousel-item {
    height: 80vh;
  }
}
@media (max-width: 767px) {
  .hero-slider .carousel-item {
    height: 70vh;
  }
}
.hero-slider .hero-slide {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-slider .hero-slide {
    height: 90vh;
  }
}
@media (max-width: 767px) {
  .hero-slider .hero-slide {
    height: 80vh;
    position: relative;
    top: -50px;
  }
}
.hero-slider .hero-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
  z-index: 1;
}
.hero-slider .hero-slide .container {
  position: relative;
  z-index: 2;
}
.hero-slider .hero-subtitle {
  display: inline-block;
  color: #e50914;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.hero-slider .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .hero-slider .hero-title {
    font-size: 30px;
  }
}
.hero-slider .hero-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 25px;
}
.hero-slider .hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-slider .hero-buttons .btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .hero-slider .hero-buttons .btn {
    padding: 8px 25px;
  }
}
.hero-slider .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
}
.hero-slider .carousel-indicators [data-bs-target].active {
  opacity: 1;
  background-color: #e50914;
}

.services-slider-section {
  background: #000;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .services-slider-section {
    padding: 40px 0;
  }
}
.services-slider-section .slick-dots {
  bottom: -40px;
}

.section-title {
  text-align: center;
  color: #fff;
  font-size: 36px;
  margin-bottom: 50px;
  letter-spacing: 2px;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 20px;
  }
}
.section-title.service {
  color: #fff;
}

/* CARD */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.service-card img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
  border: 1px solid #e50914;
  border-radius: 10px;
}

/* OVERLAY */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 2, 2, 0.4), rgba(3, 3, 3, 0.4));
  z-index: 1;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.service-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.service-content h4, .service-content p {
  color: #fff;
}

.service-content h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-service {
  display: inline-block;
  padding: 12px 22px;
  background: #fff;
  color: #000;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-service:hover {
  background: #000;
  color: #fff;
}

/* SLICK SPACING */
.services-slider .slick-slide {
  padding: 0 15px;
}

/* DOTS */
.services-slider .slick-dots li button:before {
  color: #fff;
  opacity: 0.4;
}

.services-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 30px;
  padding: 0;
  list-style: none;
}
.hero-features li {
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  background: #e50914;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}
.btn-hero i {
  transition: transform 0.4s ease;
}
.btn-hero:hover {
  background: #e55700;
  box-shadow: 0 15px 35px rgba(255, 99, 0, 0.45);
  transform: translateY(-3px);
}
.btn-hero:hover i {
  transform: translateX(6px);
}

.hero-banner {
  position: relative;
  min-height: 90vh;
  background: url("../img/banner-header.jfif") center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 44, 77, 0.65), rgba(11, 44, 77, 0.5));
}
.hero-banner .hero-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  background: rgba(11, 44, 77, 0.75);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 60px 50px;
  border-radius: 24px;
  max-width: 900px;
  color: #ffffff;
}
.hero-banner .hero-card:hover {
  background-color: rgba(11, 44, 77, 0.45);
}
.hero-banner .badge-installation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #e50914;
  margin-bottom: 20px;
}
.hero-banner h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .hero-banner h1 {
    font-size: 30px;
  }
}
.hero-banner h1 span {
  color: #e50914;
}
.hero-banner p {
  color: #cfd3da;
  max-width: 650px;
  margin: 0 auto 40px;
}
@media (max-width: 991px) {
  .hero-banner p {
    font-size: 14px;
  }
}
.hero-banner .features {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-banner .features .feature {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 25px;
  width: 120px;
  height: 100px;
}
.hero-banner .features .feature i {
  font-size: 22px;
  margin-bottom: 8px;
  color: #ffffff;
}
.hero-banner .features .feature span {
  font-size: 14px;
  display: block;
}
.hero-banner .btn-hero {
  background: #e50914;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
}
.hero-banner .btn-hero i {
  margin-left: 8px;
}
.hero-banner .btn-hero:hover {
  background: rgb(199.5571428571, 7.8428571429, 17.4285714286);
}

.bg-red {
  background-color: #e50914;
}

.film-calculator {
  background: #000000;
  /* Animated overlay for opacity pulse */
  /* Focus animation */
}
.film-calculator .section-title {
  font-weight: 700;
  color: #e50914;
  margin-bottom: 10px;
}
.film-calculator .section-subtitle {
  color: #ffffff;
  margin-bottom: 40px;
}
.film-calculator .calculator-card {
  max-width: 700px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #e50914;
}
.film-calculator .calculator-header {
  position: relative;
  background: linear-gradient(135deg, #000000, #1e293b);
  padding: 25px;
  color: #fff;
  overflow: hidden;
}
.film-calculator .calculator-header p {
  margin: 0;
  opacity: 0.7;
  font-size: 14px;
}
.film-calculator .calculator-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(86, 206, 253);
  opacity: 0;
  animation: headerFocus 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes headerFocus {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.18;
  }
  100% {
    opacity: 0;
  }
}
.film-calculator .calculator-body {
  background-color: #fff;
  padding: 25px;
}
@media (max-width: 991px) {
  .film-calculator .calculator-body {
    padding: 10px;
  }
}
.film-calculator .calculator-body .window-input table thead tr th {
  font-weight: 600 !important;
  font-size: 15px !important;
  color: #0B2C4D;
}
@media (max-width: 991px) {
  .film-calculator .calculator-body .window-input table thead tr th {
    font-weight: 500 !important;
    font-size: 12px !important;
  }
}
@media (max-width: 991px) {
  .film-calculator .calculator-body .window-input table tr td {
    padding: 2px;
  }
}
.film-calculator .block-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.film-calculator .film-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e5e7eb;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
}
.film-calculator .film-option input {
  display: none;
}
.film-calculator .film-option.active {
  border-color: #017ece;
  background: #f0f7ff;
}
.film-calculator .film-option .circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.film-calculator .film-option .circle.prestige {
  background: linear-gradient(135deg, #e2e8f0 0%, #ffffff 100%);
}
.film-calculator .film-option .circle.silver {
  background: linear-gradient(135deg, #94a3b8 0%, #e2e8f0 50%, #64748b 100%);
}
.film-calculator .film-option .circle.dark {
  background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
}
.film-calculator .film-option .circle.blackout {
  background: #000;
}
.film-calculator .film-option .circle.frosted {
  background: rgba(255, 255, 255, 0.8);
}
.film-calculator .film-option .circle.colorful {
  background: linear-gradient(135deg, #fca5a5 0%, #fcd34d 50%, #6ee7b7 100%);
}
.film-calculator .film-option .circle.notsure {
  background: #f1f5f9;
  border: 2px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-weight: 800;
  font-size: 14px;
}
.film-calculator .film-option span.checked-icon {
  opacity: 0;
}
.film-calculator .film-option.active {
  position: relative;
}
.film-calculator .film-option.active span.checked-icon {
  position: absolute;
  right: 20px;
  top: 16px;
  opacity: 1;
}
.film-calculator .film-option small {
  color: #828385;
  font-size: 12px;
  padding-left: 5px;
}
.film-calculator .feature-box {
  background: #f8fafc;
  padding: 16px;
  border-radius: 12px;
}
.film-calculator .feature-box ul {
  padding-left: 18px;
  margin: 0;
}
.film-calculator .feature-box ul li {
  font-size: 14px;
  margin-bottom: 6px;
}
.film-calculator .price-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.film-calculator .price-box .price {
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.film-calculator .price-box .price strong {
  font-size: 28px;
  display: block;
}
.film-calculator .price-box .price.company {
  background: #f8f8f9;
}
.film-calculator .price-box .price.offer {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  position: relative;
}
.film-calculator .price-box .price.offer .badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: #e50914;
  color: #fff;
  font-size: 10px;
}
.film-calculator .add-window {
  border: 1px dashed #cbd5f5;
  background: transparent;
  color: #017ece;
}
.film-calculator .add-window:hover {
  border-color: #e50914;
  color: #e50914;
}
.film-calculator .btn-estimate {
  background: linear-gradient(90deg, #e50914, #000000);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.75rem;
}
.film-calculator .btn-estimate:hover {
  background: linear-gradient(90deg, #f55f01, #000000);
}

.price-summary .summary-box {
  background: #f1fff6;
  border: 1px solid #9be7b5;
  border-radius: 14px;
  padding: 20px 24px;
}
.price-summary .summary-box .label {
  font-weight: 500;
  color: #1f2937;
}
.price-summary .summary-box .value {
  font-weight: 600;
  color: #111827;
}
.price-summary .summary-box .sub-label {
  font-size: 14px;
  color: #6b7280;
}
.price-summary .summary-box .sub-value {
  font-size: 14px;
  color: #9ca3af;
}
.price-summary .summary-box hr {
  border-color: #a7f3d0;
  margin: 12px 0;
}
.price-summary .summary-box .total-row .total-label {
  font-size: 18px;
  font-weight: 700;
  color: #0f5132;
}
.price-summary .summary-box .total-row .total-value {
  font-size: 20px;
  font-weight: 800;
  color: #0f5132;
}
.price-summary .btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff;
  font-weight: 600;
  padding: 14px;
  border-radius: 12px;
  border: none;
}
.price-summary .btn-whatsapp:hover {
  background: linear-gradient(135deg, #1ebe5d, #18a957);
  color: #fff;
}
.price-summary .btn-call {
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  font-weight: 600;
  padding: 14px;
  border-radius: 12px;
  border: none;
}
.price-summary .btn-call:hover {
  background: linear-gradient(135deg, #020617, #000);
  color: #fff;
}
.price-summary .btn-payment {
  background: linear-gradient(90deg, #e50914, #000000);
  color: #fff;
  font-weight: 600;
  padding: 14px;
  border-radius: 12px;
  border: none;
}
.price-summary .btn-payment:hover {
  background: linear-gradient(90deg, #f55f01, #000000);
  color: #fff;
}

.difference-instantly {
  background: #000;
}
.difference-instantly .section-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.difference-instantly .item-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  border: 1px solid #e50914;
}
.difference-instantly .item-card h4 {
  font-size: 18px;
  margin-bottom: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .difference-instantly .item-card h4 {
    font-size: 16px;
  }
}
.difference-instantly .item-slide {
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position: 50%;
}
.difference-instantly .image-container {
  max-width: 800px;
  max-height: 90vh;
  aspect-ratio: 1/1;
}
.difference-instantly .slider-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.difference-instantly .image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
  filter: grayscale(100%);
}
.difference-instantly .slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  /* for Firefox */
  width: 100%;
  height: 100%;
}
.difference-instantly .slider:focus-visible ~ .slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}
.difference-instantly .slider-line {
  position: absolute;
  inset: 0;
  width: 0.2rem;
  height: 100%;
  background-color: #fff;
  /* z-index: 10; */
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}
.difference-instantly .slider-button {
  position: absolute;
  background-color: #fff;
  color: black;
  padding: 0.5rem;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* z-index: 100; */
  box-shadow: 1px 1px 1px hsla(0, 50%, 2%, 0.5);
}

.our-process {
  background: #000000;
  padding-bottom: 180px !important;
}
@media (max-width: 767px) {
  .our-process {
    padding-bottom: 160px !important;
  }
}
.our-process .process-badge {
  display: inline-block;
  background: linear-gradient(90deg, #e50914, #000000);
  color: #0B2C4D;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.our-process .process-title {
  font-size: 36px;
  font-weight: 700;
  color: #e50914;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .our-process .process-title {
    font-size: 20px;
  }
}
.our-process .process-subtitle {
  color: #ffffff;
  max-width: 520px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .our-process .process-subtitle {
    font-size: 14px;
  }
}
.our-process .process-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.our-process .process-item {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease;
  border: 1px solid #e50914;
}
.our-process .process-item:hover {
  transform: translateY(-4px);
}
.our-process .process-item h5 {
  margin-bottom: 6px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .our-process .process-item h5 {
    font-size: 16px;
  }
}
.our-process .process-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}
@media (max-width: 767px) {
  .our-process .process-item p {
    font-size: 13px;
  }
}
.our-process .icon-box {
  min-width: 46px;
  height: 46px;
  background: rgba(255, 138, 31, 0.12);
  color: #e50914;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.our-process .graphic-title {
  font-weight: 600;
  color: #017ece;
  margin-bottom: 20px;
}
.our-process .process-graphic {
  max-width: 460px;
  border-radius: 10px;
  border: 1px solid #e50914;
}
@media (max-width: 991px) {
  .our-process .process-graphic {
    max-width: 100%;
  }
}

.why-choose-us {
  background: #000000;
}
.why-choose-us .section-badge {
  display: inline-block;
  background: linear-gradient(90deg, #e50914, #000000);
  color: #0B2C4D;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.why-choose-us .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #e50914;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .why-choose-us .section-title {
    font-size: 20px;
  }
}
.why-choose-us .section-text {
  color: #ffffff;
  max-width: 520px;
  margin-bottom: 24px;
}
.why-choose-us .cert-image-wrapper {
  background: #000000;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #e50914;
}
@media (max-width: 767px) {
  .why-choose-us .cert-image-wrapper {
    padding: 0px;
    margin-top: 30px;
  }
}
.why-choose-us .feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.why-choose-us .feature-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #ffffff;
}
.why-choose-us .feature-list li::before {
  content: "✓";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -2px;
  color: #fff;
}
.why-choose-us .btn-primary {
  background: linear-gradient(90deg, #000000, #e50914);
  border: none;
  padding: 12px 28px;
  border-radius: 14px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .why-choose-us .btn-primary {
    padding: 8px 25px;
  }
}
.why-choose-us .btn-primary:hover {
  opacity: 0.9;
}

/* Gallery */
.gallery {
  background-color: #000;
  /* Lightbox */
  /* Navigation */
  /* Counter */
  /* Toolbar */
  /* Share menu */
}
.gallery .section-title {
  font-weight: 700;
  color: #e50914;
  margin-bottom: 10px;
}
.gallery .gal-item {
  position: relative;
  cursor: pointer;
}
.gallery .gal-item .overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.gallery .gal-item .overlay h3.overlay-text {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #000000, #e50914);
  border: none;
  padding: 12px 28px;
  border-radius: 14px;
}
.gallery .gal-item:hover .overlay {
  opacity: 1;
}
.gallery .gallery-img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border: 1px solid #e50914;
  border-radius: 14px;
  transform: scale(1);
  transition: transform 1s ease, border-radius 1s ease 0.15s; /* delay added */
}
.gallery .gallery-img:hover {
  transform: scale(1.05);
}
.gallery #lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.gallery #lightbox-img {
  max-width: 80%;
  max-height: 80%;
  transition: transform 0.3s ease;
}
.gallery .prev, .gallery .next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.gallery .prev {
  left: 30px;
}
.gallery .next {
  right: 30px;
}
.gallery .counter {
  position: absolute;
  top: 20px;
  left: 30px;
  color: #fff;
}
.gallery .lightbox-toolbar {
  position: absolute;
  top: 15px;
  right: 20px;
  display: flex;
  gap: 14px;
}
.gallery .lightbox-toolbar span {
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.gallery .share-box {
  position: absolute;
  top: 35px;
  right: 0;
  background: #fff;
  border-radius: 8px;
  width: 180px;
  display: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.gallery .share-box a {
  display: block;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
}
.gallery .share-box a:hover {
  background: #f2f2f2;
}

.faq-section {
  background-color: #000000;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .faq-section {
    padding-top: 0px;
    padding-bottom: 30px;
  }
}
.faq-section .section-title {
  font-weight: 700;
  color: #e50914;
  margin-bottom: 10px;
}
.faq-section .faq-accordion .accordion-item {
  border-radius: 10px;
  border: none;
  margin-bottom: 13px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.faq-section .faq-accordion .accordion-button {
  border-radius: 10px;
  font-weight: 600;
  color: #000;
  border: 1px solid #e50914;
}
@media (max-width: 767px) {
  .faq-section .faq-accordion .accordion-button {
    font-size: 14px;
  }
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) {
  background: #fff6ee;
  color: #e50914;
  box-shadow: none;
  border-top: 1px solid #e50914;
  border-bottom: 0px;
  border-left: 0px;
  border-right: 0px;
}
.faq-section .faq-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 20px;
  font-weight: bold;
  color: #e50914;
  border: 2px solid #e50914;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed)::after {
  content: "-";
}
@media (max-width: 767px) {
  .faq-section .accordion-body {
    font-size: 12px;
  }
}
.faq-section .faq-image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #e50914;
}
.faq-section .faq-cta {
  background: #fff6ee;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  margin-top: 25px;
  border: 1px solid #e50914;
}
.faq-section .faq-cta a.btn-qoute {
  background: linear-gradient(90deg, #000000, #e50914);
  border: none;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
}

.contact-quote-section {
  background-color: #000;
}
.contact-quote-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #e50914;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .contact-quote-section .section-title {
    font-size: 20px;
  }
}
.contact-quote-section .section-text {
  color: #fff;
  max-width: 480px;
  margin-bottom: 2rem;
}
.contact-quote-section .contact-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #fff;
}
.contact-quote-section .contact-info li i {
  color: #e50914;
  font-size: 1.1rem;
}
.contact-quote-section .contact-info li a {
  color: #fff;
  text-decoration: none;
}
.contact-quote-section .contact-info li a:hover {
  text-decoration: underline;
}
.contact-quote-section .quote-form-card {
  background-color: #f3fcf1;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e50914;
}
.contact-quote-section .quote-form-card .form-label {
  font-weight: 500;
}
.contact-quote-section .quote-form-card .form-control,
.contact-quote-section .quote-form-card .form-select {
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
}
.contact-quote-section .quote-form-card .btn-primary {
  background-color: #e50914;
  border: none;
  border-radius: 999px;
  padding: 0.75rem;
}
.contact-quote-section .quote-form-card .btn-primary:hover {
  background-color: rgb(204.4642857143, 8.0357142857, 17.8571428571);
}
.contact-quote-section .quote-form-card .form-check input {
  cursor: pointer;
}
.contact-quote-section .quote-form-card .form-check label {
  cursor: pointer;
}

/* HERO */
.hero-section {
  padding: 90px 0;
  background-color: #020202;
}
@media (max-width: 767px) {
  .hero-section {
    padding: 30px 0;
  }
}
.hero-section .badge-top {
  display: inline-block;
  background: rgba(229, 9, 20, 0.15);
  color: #e50914;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.hero-section h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 30px;
  }
}
.hero-section p {
  font-size: 16px;
  color: #ffffff;
  max-width: 520px;
}

/* FEATURES */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  color: #fff;
}
.feature-list li::before {
  content: "✓";
  background: #e50914;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* BUTTON */
.btn-quote {
  background: #e50914;
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
}
.btn-quote:hover {
  background: rgb(199.5571428571, 7.8428571429, 17.4285714286);
  color: #fff;
}

/* IMAGE */
.image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.image-wrapper img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid #e50914;
}

/* FLOATING BADGES */
.floating-badge {
  position: absolute;
  background: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #e50914;
  animation: floatY 3.5s ease-in-out infinite;
  /* Different delays for 3 badges */
  /* Infinity float animation */
}
.floating-badge .floating-badge:nth-child(1) {
  animation-delay: 0s;
}
.floating-badge .floating-badge:nth-child(2) {
  animation-delay: 0.8s;
}
.floating-badge .floating-badge:nth-child(3) {
  animation-delay: 1.6s;
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
.floating-badge.top {
  top: 20px;
  left: 20px;
}
.floating-badge.right {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.floating-badge.bottom {
  bottom: 20px;
  left: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  h1 {
    font-size: 36px;
  }
  .floating-badge.right {
    right: 10px;
  }
}
.choose-tint-shade {
  background-color: #000000;
}
.choose-tint-shade h2.section-title {
  font-weight: 700;
  color: #e50914;
  margin-bottom: 40px;
}

.elite-protection {
  background: #000;
  /* Bonus Pack */
  /* Grade */
}
.elite-protection .section-title {
  font-weight: 800;
}
.elite-protection .section-title span {
  color: #017ece;
}
.elite-protection .title-line {
  width: 60px;
  height: 3px;
  background: #017ece;
  margin: 10px auto 0;
}
.elite-protection .bonus-pack {
  background: #fff8e8;
  border: 1px solid #ffd48a;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid #e50914;
}
@media (max-width: 767px) {
  .elite-protection .bonus-pack h5 {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .elite-protection .bonus-pack small {
    font-size: 10px;
  }
}
.elite-protection .bonus-pack .bonus-icon {
  background: #e50914;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.elite-protection .bonus-pack .limited {
  background: #000000;
  color: #e50914;
}
.elite-protection .bonus-pack .bonus-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid #ffe0b2;
}
.elite-protection .bonus-pack .bonus-item i {
  color: #e50914;
  font-size: 22px;
  margin-bottom: 5px;
}
.elite-protection .bonus-pack .bonus-item p {
  font-size: 14px;
  margin: 0;
}
.elite-protection .grade-title {
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.elite-protection .grade-title span {
  width: 5px;
  height: 22px;
  background: #017ece;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .elite-protection .grade-card-wrapper {
    width: 100%;
  }
}
.elite-protection .grade-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  border: 1px solid #e5edf5;
  height: 100%;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
@media (max-width: 767px) {
  .elite-protection .grade-card {
    width: 100%;
  }
}
.elite-protection .grade-card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-color: #e50914;
}
.elite-protection .grade-card.recommended h5 {
  color: #1e88e5;
}
.elite-protection .grade-card.popular {
  position: relative;
}
.elite-protection .grade-card.popular .popular-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  border-radius: 0px 18px 0px 18px;
}
.elite-protection .grade-card.popular h5 {
  color: #e50914;
}
.elite-protection .grade-card .popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e50914;
}
.elite-protection .grade-card .tag {
  font-size: 11px;
  font-weight: 600;
  color: #888;
}
.elite-protection .grade-card .tag.blue {
  color: #017ece;
}
.elite-protection .grade-card .tag.orange {
  color: #e50914;
}
.elite-protection .grade-card h5 {
  font-weight: 700;
  margin: 10px 0 15px;
  font-size: 28px;
  line-height: 35px;
}
@media (max-width: 991px) {
  .elite-protection .grade-card h5 {
    font-size: 18px;
  }
}
.elite-protection .grade-card .spec-list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 10px;
  margin: 40px 0px;
}
@media (max-width: 767px) {
  .elite-protection .grade-card .spec-list {
    margin: 10px 0px;
  }
}
.elite-protection .grade-card .spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}
.elite-protection .grade-card .spec-list li span strong {
  font-size: 22px;
}
.elite-protection .grade-card .spec-list li span sup {
  position: relative;
  top: -12px;
  left: 2px;
}
.elite-protection .grade-card .vlt-title {
  font-size: 12px;
  color: #777;
}
.elite-protection .grade-card .vlt-options {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .elite-protection .grade-card .vlt-options {
    flex-wrap: wrap;
  }
}
.elite-protection .grade-card .vlt-options .cl-area {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.elite-protection .grade-card .vlt-options .cl-area span.color {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.elite-protection .grade-card .vlt-options .cl-area span.percent {
  font-size: 12px;
}
.elite-protection .grade-card .vlt-options .cl-area.black span.color {
  background-color: #334155;
}
.elite-protection .grade-card .vlt-options .cl-area.black-middle span.color {
  background-color: #64748b;
}
.elite-protection .grade-card .vlt-options .cl-area.black-normal span.color {
  background-color: #94a3b8;
}
.elite-protection .grade-card .vlt-options .cl-area.white span.color {
  background-color: #fff;
}
.elite-protection .grade-card .vlt-options .cl-area.black-out span.color {
  background-color: #0B2C4D;
}
.elite-protection .grade-card .warranty {
  background: #e3fcef;
  color: #1b8f5a;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
}
.elite-protection .grade-card .warranty.green {
  background: #e8f5e9;
  color: #2e7d32;
}
.elite-protection .grade-card .warranty.orange {
  background: #fff3e0;
  color: #e50914;
}
.elite-protection .grade-card-wrapper input:checked + .grade-card {
  border-color: #e50914;
  box-shadow: 0 20px 40px rgba(255, 122, 0, 0.18);
  transform: translateY(-6px);
}
.elite-protection .grade-card-wrapper input:checked + .grade-card::after {
  content: "✓ Selected";
  position: absolute;
  top: 23px;
  right: 18px;
  background: #e50914;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 50px;
}
.elite-protection .grade-card-wrapper .grade-card span {
  color: #0B2C4D;
}

.tinting-process {
  background: radial-gradient(circle at top, #000000, #0c0c0c);
  color: #cfcfcf;
}
.tinting-process .eyebrow {
  letter-spacing: 2px;
  font-size: 12px;
  color: #e50914;
}
.tinting-process .title {
  font-weight: 800;
  font-size: 42px;
  color: #fff;
}
@media (max-width: 767px) {
  .tinting-process .title {
    font-size: 22px;
  }
}
.tinting-process .title span {
  color: #fff;
}
.tinting-process .title .highlight {
  color: #e50914;
}
.tinting-process .subtitle {
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 15px;
  color: #bdbdbd;
}
.tinting-process .divider {
  width: 60px;
  height: 3px;
  background: #e50914;
  margin: 18px auto 0;
  border-radius: 5px;
}
.tinting-process .process-card {
  background: linear-gradient(180deg, #161616, #0e0e0e);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 30px;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}
.tinting-process .process-card:hover {
  transform: translateY(-6px);
  border-color: #e50914;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.tinting-process .process-card .step {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 64px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
}
.tinting-process .process-card .icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 152, 0, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e50914;
  font-size: 18px;
  margin-bottom: 15px;
}
.tinting-process .process-card h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.tinting-process .process-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #bcbcbc;
}

.engineered-section {
  padding-top: 100px;
  background: #000000;
}
@media (max-width: 767px) {
  .engineered-section {
    padding-top: 10px;
  }
}
.engineered-section .badge-pill {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #e50914;
  background: rgba(255, 122, 0, 0.08);
  border-radius: 50px;
}
.engineered-section .section-title {
  font-size: 38px;
  font-weight: 800;
  color: #e50914;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .engineered-section .section-title {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 0px;
  }
}
.engineered-section .section-subtitle {
  margin-top: 12px;
  max-width: 520px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .engineered-section .section-subtitle {
    font-size: 13px;
  }
}
.engineered-section .feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e50914;
}
.engineered-section .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.engineered-section .feature-card .icon-box {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 122, 0, 0.1);
  color: #e50914;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.engineered-section .feature-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}
@media (max-width: 767px) {
  .engineered-section .feature-card h5 {
    font-size: 15px;
  }
}
.engineered-section .feature-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .engineered-section .feature-card p {
    font-size: 13px;
  }
}
.engineered-section .feature-card .tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  font-size: 12px;
  color: #e50914;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 50px;
  font-weight: 600;
}

.phone-area {
  margin-top: 50px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  max-width: 600px;
  border: 1px solid #e50914;
}

.btn-estimate {
  background: linear-gradient(90deg, #e50914, #000000);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
}
.btn-estimate:hover {
  color: #fff;
}
.btn-estimate:focus {
  color: #fff;
}
.btn-estimate:active {
  color: #fff;
}

.choose-tint-shade-wrapper img {
  border-radius: 10px;
  border: 1px solid #e50914;
}

.privacy-hero {
  padding: 80px 0;
  background: linear-gradient(to right, #000, #111);
  text-align: center;
}
@media (max-width: 767px) {
  .privacy-hero {
    padding: 20px 0;
  }
}

.privacy-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 767px) {
  .privacy-hero h1 {
    font-size: 22px;
  }
}

.privacy-content {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .privacy-content {
    padding: 20px 0;
  }
}
.privacy-content .privacy-box {
  background: #111;
  border-radius: 8px;
  padding: 40px;
}
@media (max-width: 767px) {
  .privacy-content .privacy-box {
    padding: 15px;
  }
}
.privacy-content .privacy-box strong {
  color: #fff !important;
}
.privacy-content .privacy-box h2 {
  font-size: 24px;
  margin-top: 35px;
  color: #fff;
}
@media (max-width: 767px) {
  .privacy-content .privacy-box h2 {
    font-size: 18px;
  }
}
.privacy-content .privacy-box p,
.privacy-content .privacy-box li {
  font-size: 15px;
  color: #cfcfcf;
}
.privacy-content .privacy-box ul {
  padding-left: 18px;
}
.privacy-content .privacy-box li {
  margin-bottom: 10px;
}
.privacy-content .last-updated {
  font-size: 14px;
  color: #aaa;
  margin-top: 30px;
}
.privacy-content a {
  color: #ff3b3b;
  text-decoration: none;
}
.privacy-content a:hover {
  text-decoration: underline;
}

.ready-to-qoute {
  background-color: #000;
  min-height: 250px;
  position: relative;
}
.ready-to-qoute .pos-top-area {
  position: absolute;
  top: -110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.ready-to-qoute .qoute-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #e50914;
}
@media (max-width: 991px) {
  .ready-to-qoute .qoute-card {
    max-width: 90%;
  }
}
.ready-to-qoute .qoute-card h5 {
  color: #0B2C4D;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .ready-to-qoute .qoute-card h5 {
    font-size: 21px;
  }
}
.ready-to-qoute .qoute-card p {
  color: #0B2C4D;
  font-size: 16px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .ready-to-qoute .qoute-card p {
    font-size: 14px;
  }
}
.ready-to-qoute .qoute-card a.btn-qoute {
  background: #e50914;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .ready-to-qoute .qoute-card a.btn-qoute {
    padding: 8px 25px;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e50914;
  color: #fff;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.back-to-top:hover {
  background: rgb(189.7428571429, 7.4571428571, 16.5714285714);
}

/* Floating Contact */
.contact-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.contact-toggle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #e50914;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-actions {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: scale(0);
  transition: 0.3s ease;
}

.contact-float.active .contact-actions {
  opacity: 1;
  transform: scale(1);
}

.contact-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.contact-btn.call {
  background: #017ece;
}
.contact-btn.whatsapp {
  background: #25d366;
}

.text-primary {
  color: #017ece !important;
}

strong, label, p, h1, h2, h3, h4, h5, h6 {
  color: #0B2C4D;
}

.price.offer strong {
  color: #fff;
}

form input {
  color: #0B2C4D;
}

::-moz-placeholder {
  color: #808183 !important;
  opacity: 0.7 !important;
}

::placeholder {
  color: #808183 !important;
  opacity: 0.7 !important;
}

::-ms-input-placeholder {
  color: #808183 !important;
  opacity: 0.7 !important;
}

a {
  /* Hover main effect */
  /* Shine animation */
}
a.btn {
  position: relative;
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  background: #e50914;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
@media (max-width: 767px) {
  a.btn {
    padding: 8px 25px;
  }
}
a.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 99, 0, 0.45);
  background: #e55700;
}
a.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
}
a.btn:hover::after {
  animation: shine 0.7s ease;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

a.btn-secondary {
  background-color: #ffffff;
  color: #e50914;
}

.site-footer {
  background: #000;
  color: #bfc6ce;
  padding: 80px 0 60px;
}
.site-footer .footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}
.site-footer .footer-text {
  font-size: 14px;
  line-height: 1.7;
}
.site-footer .newsletter-box {
  text-align: center;
  margin-bottom: 40px;
}
.site-footer .newsletter-box h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 25px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .site-footer .newsletter-box h4 {
    font-size: 18px;
  }
}
.site-footer .newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto 25px;
  border: 1px solid #333;
  border-radius: 50px;
  overflow: hidden;
}
.site-footer .newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 20px;
  color: #fff;
}
.site-footer .newsletter-form input:focus {
  outline: none;
}
.site-footer .newsletter-form button {
  background: #e50914;
  color: #fff;
  border: none;
  padding: 0 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.3s ease;
}
.site-footer .newsletter-form button:hover {
  background: rgb(179.9285714286, 7.0714285714, 15.7142857143);
}
.site-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.site-footer .footer-social a {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}
.site-footer .footer-social a:hover {
  color: #e50914;
}
.site-footer .footer-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.site-footer .footer-links,
.site-footer .footer-contact {
  list-style: none;
  padding: 0;
}
.site-footer .footer-links li,
.site-footer .footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
}
.site-footer .footer-links li a,
.site-footer .footer-contact li a {
  color: #bfc6ce;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-links li a:hover,
.site-footer .footer-contact li a:hover {
  color: #fff;
}
.site-footer .footer-call-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 26px;
  border-radius: 50px;
  background: #e50914;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.site-footer .footer-call-btn:hover {
  background: rgb(179.9285714286, 7.0714285714, 15.7142857143);
}

.top-200 {
  margin-top: 150px !important;
}
@media (max-width: 768px) {
  .top-200 {
    margin-top: 50px !important;
  }
}

@media (max-width: 767px) {
  .copy-right-area p {
    font-size: 13px;
  }
}

.footer-area {
  border-top: 1px solid #333;
  background-color: #000;
}
.footer-area p {
  color: #fff;
}

section {
  border-top: 1px solid #1d1d1d;
}

.services-area {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.services-area .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  width: 31%;
}
@media (max-width: 991px) {
  .services-area .service-card {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .services-area .service-card {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */
