/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* GLOBAL */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
a,
.tab,
.menu-toggle {
    -webkit-user-select: none;
    user-select: none;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #f8f5f1;
    color: #333;
}

/* NAVBAR */
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo img{
    height: 60px;
}
.logo a{
    display:inline-block;
    text-decoration:none;
}

.logo img{
    cursor:pointer;
}


/* MENU */
nav ul{
    display: flex;
    gap: 35px;
    list-style: none;
}

nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

nav ul li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: #c19a6b;
    transition: 0.3s;
}

nav ul li a:hover{
    color: #c19a6b;
}

nav ul li a:hover::after{
    width: 100%;
}

.menu-toggle{
    display:none;
    font-size:32px;
    font-weight:700;
    color:white;
    cursor:pointer;
    user-select:none;
    transition:0.3s;
}

@media (hover:hover){

    .menu-toggle:hover{
        color:#c19a6b;
    }

}

/* HERO CAROUSEL */
.carousel{
    position: relative;
    width: 100%;
    height:100vh;
    min-height:700px;
    overflow: hidden;
}
.carousel::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:120px;
    background:linear-gradient(
        to bottom,
        rgba(248,245,241,0) 0%,
        rgba(248,245,241,1) 100%
    );
    z-index:5;
    pointer-events:none;
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active{
    opacity: 1;
}

.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.slide-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 90%;
    max-width: 800px;

    text-align: center;
    color: white;
    z-index: 2;
}

.slide-content h2{
    font-size: 72px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.slide-content p{
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.prev,
.next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
}

.prev{
    left: 20px;
}

.next{
    right: 20px;
}

/* MAIN */
main{
    padding: 80px 10%;
}

/* SERVICES */
#services,
#testimonials{
    scroll-margin-top: 120px;
}

.services{
    text-align: center;
    padding-top: 60px;
    margin-bottom: 100px;
}

.services h2{
    font-size:50px;
    color:#222;
    position:relative;
    margin-bottom:0;
}

.services h2::after{
    content: "";
    width: 70px;
    height: 2px;
    background: #c8a97e;
    display: block;
    margin: 12px auto 0;
}
.services p{
    max-width:650px;
    margin:20px auto 20px;
    line-height:1.7;
}
.service-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.service-card{
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    cursor: pointer;

    display: flex;
    flex-direction: column;
}

.service-card:hover{
    transform: translateY(-10px);
}

.service-card h3{
    margin-bottom: 15px;
    color: #c19a6b;
}
.service-card p{
    flex-grow: 1;
    min-height: 130px;
}

.service-note{
    text-align:center;
    margin-bottom:25px;
    color:#666;
    font-size:16px;
    font-weight:500;
}

.enquiry-btn{
    display:inline-block;
    margin-top:auto;
    color:#c19a6b;
    font-weight:600;
}

/* POPUP BACKDROP */
.popup-form{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;

    background: rgba(0,0,0,0.75);

    justify-content: center;
    align-items: center;

    padding: 20px;

    overflow-y: auto;
}

/* FORM CONTAINER */
.form-box{
    position: relative;
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    scrollbar-width: thin;
}
@keyframes popupFade{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= TITLE ================= */

.form-box h2{
    text-align:center;
    font-size:2rem;
    margin-bottom:35px;
    color:#222;
    position:relative;
}

/* .form-box h2::after{
    content:"";
    width:70px;
    height:2px;
    background:#c19a6b;
    display:block;
    margin:12px auto 0;
} */

/* ================= CLOSE BUTTON ================= */

.close-btn{
    position:absolute;
    top:15px;
    right:20px;
    font-size:34px;
    cursor:pointer;
    color:#555;
    transition:.3s;
}

.close-btn:hover{
    color:#c19a6b;
}

/* ================= FORM ================= */

.form-box form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* ================= INPUT BOX ================= */

.input-box{
    display:flex;
    flex-direction:column;
}

.input-box label{
    margin-bottom:8px;
}

/* ================= LABEL ================= */

.form-box label{
    font-size:15px;
    font-weight:600;
    color:#444;
}
.rupee-icon{
    color:#c19a6b;
    font-size:20px;
    font-weight:700;
    font-family: Georgia, serif;
    vertical-align:middle;
}
/* ================= INPUTS ================= */

.form-box input,
.form-box select,
.form-box textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:15px;
    background:#fafafa;
    transition:.3s;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus{
    border-color:#c19a6b;
    background:#fff;
    box-shadow:0 0 0 3px rgba(193,154,107,.15);
    outline:none;
}

.form-box textarea{
    resize:vertical;
    min-height:120px;
}

/* ================= NOTE ================= */

.budget-note{
    display:block;
    margin-top:10px;
    padding:12px 14px;

    background:#faf7f2;
    border-left:3px solid #c19a6b;
    border-radius:8px;

    color:#666;
    font-size:13px;
    line-height:1.6;
    font-weight:400;
}

/* ================= RADIO ================= */

.radio-group{
    display:flex;
    gap:20px;
    margin-top:10px;
    flex-wrap:wrap;
}

.radio-group label{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    font-weight:500;
}

.radio-group input{
    width:auto;
}


/* ================= TERMS ================= */

.terms-box{
    border:1px solid #e5e5e5;
    background:#fafafa;
    border-radius:16px;
    padding:20px;
    max-height:320px;
    overflow-y:auto;
}

.terms-box h3{
    margin-bottom:12px;
    color:#222;
    font-size:17px;
}

.terms-box ul{
    padding-left:18px;
    margin-bottom:20px;
}

.terms-box li{
    color:#555;
    font-size:14px;
    line-height:1.7;
    margin-bottom:8px;
}

/* ================= CHECKBOX ================= */

.checkbox-label{
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    font-size:14px;
    font-weight:500;
    line-height:1.5;
    width:auto;
}

.checkbox-label input[type="checkbox"]{
    width:18px;
    height:18px;
    min-width:18px;
    margin:0;
    padding:0;
    border:none;
    border-radius:0;
    box-shadow:none;
    cursor:pointer;
    accent-color:#c19a6b;
}
/* ================= SUBMIT BUTTON ================= */

.form-box button[type="submit"]{
    width:100%;
    padding:16px;
    border:none;
    border-radius:14px;
    background:#c19a6b;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.form-box button[type="submit"]:hover{
    background:#a67c52;
    transform:translateY(-2px);
}

.btn-loader{
    width:16px;
    height:16px;
    border:2px solid rgba(255,255,255,.3);
    border-top-color:#fff;
    border-radius:50%;
    display:inline-block;
    margin-right:8px;
    animation:spin .8s linear infinite;
    vertical-align:middle;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

/* ================= SCROLLBAR ================= */

.terms-box::-webkit-scrollbar{
    width:6px;
}

.terms-box::-webkit-scrollbar-thumb{
    background:#c19a6b;
    border-radius:10px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

    .popup-form{
        padding:12px;
    }

    .form-box{
    padding:20px 16px;
    border-radius:18px;
    max-height:92vh;
}

     .form-box h2{
        font-size:1.5rem;
        padding-right:50px;
        margin-bottom:25px;
        text-align:left;
    }

        .budget-note{
        font-size:12px;
        padding:10px 12px;
        line-height:1.5;
    }

    .close-btn{
        position:absolute;
        top:15px;
        right:15px;
        z-index:9999;
        width:36px;
        height:36px;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:28px;
        line-height:1;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:16px;
    }


    .form-box input,
    .form-box select,
    .form-box textarea{
        font-size:16px;
    }

    

    .radio-group{
        flex-direction:column;
        gap:10px;
    }

    .terms-box{
        max-height:250px;
    }
}

/* =========================
   SKELETON LOADER
========================= */

.reel-skeleton,
.testimonial-skeleton{
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e5e5;
}

.reel-skeleton{
    width: 280px;
    height: 500px;
    border-radius: 20px;
}

.testimonial-skeleton{
    width: 320px;
    height: 260px;
    border-radius: 20px;
}

/* Shimmer Animation */

.reel-skeleton::before,
.testimonial-skeleton::before{
    content:"";
    position:absolute;
    top:0;
    left:-150%;
    width:150%;
    height:100%;
    background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.7),
      transparent
    );
    animation:skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer{
    100%{
        left:150%;
    }
}

/* =========================
   REELS SECTION
========================= */

.reels-section {
  padding: 80px 0;
}

.reels-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #222;
  position: relative;
}

.reels-section h2::after {
  content: "";
  width: 70px;
  height: 2px;
  background: #c8a97e;
  display: block;
  margin: 12px auto 0;
}

/* =========================
   REELS WRAPPER
========================= */

.reels-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.reels-wrapper::before,
.reels-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 40px;
  z-index: 10;
  pointer-events: none;
}

.reels-wrapper::before {
  left: 0;
  background: linear-gradient(
    to right,
    #f8f5f1 0%,
    rgba(248,245,241,0) 100%
  );
}

.reels-wrapper::after {
  right: 0;
  background: linear-gradient(
    to left,
    #f8f5f1 0%,
    rgba(248,245,241,0) 100%
  );
}

/* =========================
   REELS TRACK
========================= */


.reels-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);

    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
}

/* =========================
   REEL CARD
========================= */

.reel-card {
  width: 250px;
  height: 450px;

  flex-shrink: 0;

  border-radius: 20px;
  overflow: hidden;

  background: #000;

  position: relative;
  transform:translateZ(0);
}

.yt-frame {
  width: 100%;
  height: 100%;
}


/* TESTIMONIALS */
.testimonial-section{
    overflow: hidden;
    padding: 80px 0;
}

.testimonial-section h2{
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #222;
    position: relative;
}

.testimonial-section h2::after {
  content: "";
  width: 70px;
  height: 2px;
  background: #c8a97e;
  display: block;
  margin: 12px auto 0;
}

/* =========================
   TESTIMONIAL FADE WALLS
========================= */
.testimonial-skeleton{
    width: 320px;
    height: 220px;
    border-radius: 18px;
    background: linear-gradient(
        90deg,
        #f4f4f4 25%,
        #e9e9e9 50%,
        #f4f4f4 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.testimonial-slider{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-slider::before,
.testimonial-slider::after{
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50px;
    z-index: 5;
    pointer-events: none;
}

.testimonial-slider::before{
    left: 0;
    background: linear-gradient(
        to right,
        #f8f5f1 0%,
        rgba(248,245,241,0) 100%
    );
}

.testimonial-slider::after{
    right: 0;
    background: linear-gradient(
        to left,
        #f8f5f1 0%,
        rgba(248,245,241,0) 100%
    );
}

.testimonial-track{
    display:flex;
    width:max-content;
    animation:scroll 40s linear infinite;
}

.testimonial-card{
    width: 320px;
    min-width: 320px;
    background: white;
    margin: 0 15px;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    display:flex;
    flex-direction:column;
    justify-content:center;

    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-5px);
}

.quote-icon{
    font-size:3rem;
    line-height:1;
    color:#c8a97e;
    margin-bottom:10px;
}

.testimonial-rating{
    font-size:1.1rem;
    margin-bottom:15px;
}

.testimonial-review{
    color:#666;
    line-height:1.8;
    font-style:italic;
    margin-bottom:20px;

    min-height:100px;
}

.testimonial-card h3{
    margin:0;
    color:#222;
    font-size:1rem;
}

.testimonial-card h3::before{
    content:"— ";
    color:#c8a97e;
}
.testimonial-track:hover{
    animation-play-state: paused;
}
@keyframes scroll{

    from{
        transform: translateX(0);
    }

    to{
        transform: translateX(
          calc(-1 * var(--scroll-distance))
        );
    }
}
/* FAQ SECTION */

.faq-section {
  padding: 80px 8%;
  background: #fafafa;
}

.faq-section .section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #222;
  position: relative;
}

.faq-section .section-title::after {
  content: "";
  width: 70px;
  height: 2px;
  background: #c8a97e;
  display: block;
  margin: 12px auto 0;
}

/* FAQ GRID */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  height: fit-content;
  border: 1px solid rgba(200,169,126,0.15);
  transition: 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  border: none;
  background: #fff;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 1.4rem;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faq-answer p {
  padding: 0 22px 18px;
  color: #555;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}
/* Floating Social Icons */

.social-float {
  position: fixed;
  right: 25px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-float a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  font-size: 22px;
  transition: all 0.3s ease;
}

.social-float a:hover {
  transform: translateY(-4px) scale(1.08);
}

.social-float a:nth-child(1):hover {
  color: #e1306c;
}

.social-float a:nth-child(2):hover {
  color: #1877f2;
}

.social-float a:nth-child(3):hover {
  color: #ff0000;
}
.social-float a {
  position: relative;
}

.follow-label {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);

  width: 160px; /* Same width for all */
  text-align: center;

  background: #c8a97e;
  color: #fff;
  padding: 8px 14px;
  border-radius: 25px;

  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.social-float a:hover .follow-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.social-float a:nth-child(1) .follow-label {
  background: #E1306C;
}

.social-float a:nth-child(2) .follow-label {
  background: #1877F2;
}

.social-float a:nth-child(3) .follow-label {
  background: #FF0000;
}

/*  FOOTER */

footer{
    background: linear-gradient(135deg,#181818,#222);
    border-top:3px solid #c19a6b;
    color:#ddd;
    margin-top:80px;
}

.footer-container{
    max-width:none;
    width:90%;
    margin:auto;
    padding:70px 5%;
    display:grid;
    grid-template-columns:1.2fr 1fr 1.2fr 1fr;
    gap:50px;
    align-items:start;
}

.footer-logo{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-logo img{
    width:110px;
    margin-bottom:15px;
}

.footer-note{
    max-width:280px;
    line-height:1.8;
    color:#aaa;
}

.footer-column h3{
    color:#c19a6b;
    margin-bottom:25px;
    font-size:22px;
    position:relative;
}

.footer-column h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:40px;
    height:2px;
    background:#c19a6b;
}

.footer-column{
    display:flex;
    flex-direction:column;
}

.footer-column a,
.footer-form-link{
    display:inline-block;
    width:fit-content;
    color:#cfcfcf;
    text-decoration:none;
    margin-bottom:14px;
    transition:.3s ease;
}

.footer-column a:hover,
.footer-form-link:hover{
    color:#c19a6b;
    transform:translateX(5px);
}

.footer-social{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.footer-social a{
    display:inline-flex;
    align-items:center;
    gap:12px;
    width:fit-content;
}

.footer-social i{
    width:20px;
    text-align:center;
    color:#c19a6b;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:25px;
}

.footer-bottom p:first-child{
    margin-bottom:8px;
    color:#fff;
}

.footer-bottom p:last-child{
    color:#999;
    font-size:14px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .reels-section {
    padding: 60px 0;
  }

  .reel-card {
    width: 200px;
    height: 360px;
  }
  .reels-wrapper::before,
  .reels-wrapper::after {
    width: 25px;
  }
  
}

@media (max-width:768px){

    .testimonial-card{
        width:240px;
        min-width:240px;
        padding:20px;
        border-radius:16px;
    }

    .quote-icon{
        font-size:2.2rem;
        margin-bottom:8px;
    }

    .testimonial-rating{
        font-size:1rem;
        margin-bottom:10px;
    }

    .testimonial-review{
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size:.9rem;
        line-height:1.6;
        min-height:80px;
        margin-bottom:15px;
    }

    .testimonial-card h3{
        font-size:.95rem;
    }

    .testimonial-slider::before,
    .testimonial-slider::after{
        width:25px;
    }
}

/* RESPONSIVE */
@media(max-width:768px){

    /* NAVBAR MOBILE */
    nav{
        padding:10px 20px;
    }

    .logo img{
        height:45px;
    }

    .menu-toggle{
        display:block;
        font-size:28px;
        font-weight:700;
        cursor:pointer;
        color:white;
    }

    nav ul{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:rgba(0,0,0,0.95);
        flex-direction:column;
        text-align:center;
        gap:0;
        padding:20px 0;
    }

    nav ul.active{
        display:flex;
    }

    nav ul li{
        margin:12px 0;
    }

    nav ul li a{
        font-size:17px;
        display:inline-block;
        padding:8px 0;
    }

    /* HERO */
    .carousel{
    height: 85vh;
    min-height: 550px;
    }
    .slide-content{
        width:90%;
        padding:0 10px;
    }

    .slide-content h2{
        font-size:32px;
        line-height:1.2;
    }

    .slide-content p{
        font-size:15px;
        line-height:1.6;
    }
    .prev,
    .next{
        top: auto;
        bottom: 200px;
        transform: none;

        padding: 10px 14px;
        font-size: 22px;
    }

    .prev{
        left: 15px;
    }

    .next{
        right: 15px;
    }
    /* SECTION HEADINGS */
    .services h2,
    .testimonial-section h2{
    font-size:28px;
}

/* SERVICES */
.service-container{
    grid-template-columns:1fr;
    gap:20px;
}

.service-card{
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-card h3{
    font-size:20px;
    min-height:auto;
    margin-bottom:10px;
}

.service-card p{
    min-height:auto;
    flex-grow:0;
    margin-bottom:20px;
}

.enquiry-btn{
    display: inline-block;
    margin-top: auto;
    color: #c19a6b;
    font-weight: 600;
}  

.testimonial-slider{
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: auto; /* IMPORTANT: not smooth */
}

.testimonial-slider::-webkit-scrollbar{
    display: none;
}

.testimonial-track{
    display: flex;
    width: max-content;
}

.testimonial-card{
    width: 280px;
    min-width: 280px;
}

    .testimonial-card h3{
        font-size:18px;
    }

    .testimonial-card p{
        font-size:14px;
    }

  .faq-grid{
    grid-template-columns: 1fr;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

  .faq-grid::-webkit-scrollbar{
    width:4px;
  }

  .faq-grid::-webkit-scrollbar-thumb{
    background:#c8a97e;
    border-radius:10px;
  }
  .social-float {
    right: 15px;
    bottom: 80px;
  }

  .social-float a {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

    /* FOOTER */

    .footer-container{
        max-width:1100px;
        grid-template-columns:1fr;
        gap:40px;
        padding:50px 25px;
        text-align:center;
    }

    .footer-logo{
        align-items:center;
    }

    .footer-logo img{
        width:90px;
    }

    .footer-note{
        max-width:320px;
        margin:auto;
    }

    .footer-column{
        align-items:center;
    }

    .footer-column h3{
        font-size:20px;
        margin-bottom:20px;
    }

    .footer-column h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-column a,
    .footer-form-link{
        font-size:16px;
        margin-bottom:12px;
    }

    .footer-social{
        align-items:center;
    }

    .footer-bottom{
        padding:20px 15px;
    }

}
