
/* Overlay background */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup box */
.popup-content {
  background: #fff;
  width: 400px;
  max-width: 90%;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}

/* Form styling */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* FIX PLACEHOLDER VISIBILITY */
::placeholder {
    color: #777 !important;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #777 !important;
}

::-ms-input-placeholder {
    color: #777 !important;
}

/* POPUP BUTTON */
.popup-content .btn.primary{
    background:#0e3b2e !important;
    color:#fff;
    border:none;
    padding:14px 25px;
    font-size:16px;
    font-weight:600;
    border-radius:6px;
    width:100%;
    margin-top:15px;
    cursor:pointer;
    transition:.3s;
}

.popup-content .btn.primary:hover{
    background:#08291f;
}

.video-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-popup-box {
    position: relative;
    width: 700px;
    max-width: 40%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    animation: fadeInScale 0.4s ease;
}

.video-popup-box video {
    width: 100%;
    height: auto;
    display: block;
}

.video-close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 24px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Offer Marquee Bar */
.offer-marquee {
    width: 100%;
    background: linear-gradient(90deg, #ff512f, #dd2476);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 8px 0;
    z-index: 999;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.formdiv {
    background: rgba(0, 0, 0, 0.95) !important;
    padding: 40px 35px;
    border-radius: 18px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.formdiv .inner h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-row {
    margin-bottom: 20px;
}

.form-row input {
    width: 100%;
    padding: 8px 18px;
    background: transparent;
    border: 1px solid #555;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-row input::placeholder {
    color: #aaa;
}

.form-row input:focus {
    border-color: #fff;
}

.form-row button {
    width: 100%;
    padding: 8px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-row button:hover {
    background: #fff;
    color: #000;
}

.checkbox-section {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
}

.checkbox-section p {
    font-size: 12px;
    color: #bbb;
    line-height: 1.4;
}

.blur-text {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
}

.moretext {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.moretext.show {
    max-height: 500px; /* increase if content bigger */
}

.pricelist_box {
    text-align: center;
}