/*
Theme Name: Flair Glass Child
Theme URI: https://flairglass.com/
Description: Child theme for Flair Glass by GRABWEB
Author: GRABWEB
Author URI: https://grabweb.in/
Template: hello-elementor
Version: 1.0
*/

/*
===============================
Flair Glass Child Theme CSS By GRABWEB
===============================
*/


/* ===========================
   GLOBAL UTILITIES
=========================== */
html{
	scroll-padding-top: 90px;
}


.gw-blur {
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.gw-tab-menu {
    z-index: 1;
}


/* ===========================
   STICKY ELEMENTS
=========================== */

.gw-sticky {
    position: sticky;
    top: 90px;
}

@media (max-width: 767px) {
    .gw-sticky {
        position: static;
        top: auto;
    }
}


/* ===========================
   MEGA MENU FIX
=========================== */

.wpr-sub-mega-menu {
    background: transparent !important;
}


/* ===========================
   CONTACT FORM 7 STYLING
=========================== */

.custom-form {
    max-width: 800px;
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-col {
    width: 50%;
}

.form-col.full {
    width: 100%;
}

/* Inputs */
.custom-form input,
.custom-form select,
.custom-form textarea {
    width: 100%;
    padding: 10px 20px !important;
    border: 1px solid #ddd !important;
    border-radius: 0px !important;
    background: #f7f7f7;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.custom-form select {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f7f7f7;
  font-size: 14px;
  outline: none;

  /* 🔥 IMPORTANT RESET */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Arrow remove */
  background-image: none;
}

.select-field {
  position: relative;
}

.select-field::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  padding-bottom: 8px
}



.custom-form textarea {
    height: 150px;
    resize: none;
}

/* Focus State */
.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
    border-color: #1c6e7d;
    background: #fff;
}

/* Submit Button */
.custom-form input[type="submit"] {
    background: #1c6e7d;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: auto;
    transition: 0.3s ease;
}

.custom-form input[type="submit"]:hover {
    background: #155a66;
}



/* Mobile */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-col {
        width: 100%;
    }
}


/* ===========================
   CUSTOM BUTTON (GW BUTTON)
=========================== */

.gw-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Button Text Animation */
.gw-button .elementor-button-text {
    transition: transform 0.3s ease;
}

/* Icon */
.gw-button::after {
    content: "\f061"; /* Change to \f178 if FA supports */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-size: 15px;
}

/* Hover Effects */
.gw-button:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.gw-button:hover .elementor-button-text {
    transform: translateX(-10px);
}


/* ===========================
   Product Range Slider Blur strip
=========================== */
.product-range-slider .premium-blog-entry-title{
	backdrop-filter: blur(10px);
	padding: 10px;
	background: #11111150;
}
.product-range-slider .premium-blog-content-wrapper {
    bottom: 0 !important;
}

/* ===========================
   Terms & conditions active list
=========================== */
.terms-list .elementor-icon-list-item.active a span {
  color: #111 !important;
  font-size: 18px;
  font-weight: 500;

}

.terms-list .elementor-icon-list-item.active {
  background: transparent;
}

/* ===========================
   About Us Counter css
=========================== */
.experience-counter .elementor-counter-title{
 text-align: center;
}

/* ===========================
   Hero BG Scalling animation
=========================== */
.hero-img-animation {
  position: relative;
  overflow: hidden;
}

.hero-img-animation::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

/* animated layer */
.hero-img-animation .bg-anim {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: smoothZoomMove 35s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 0;
}

/* content upar */
.hero-img-animation > * {
  position: relative;
  z-index: 1;
}

@keyframes smoothZoomMove {
  0% {
    transform: scale(1) translateX(0);
  }
  100% {
    transform: scale(1.12) translateX(-20px);
  }
}
