*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

/* NAVBAR */
.navbar{
position:fixed;
width:100%;
top:0;
display:flex;
justify-content:space-between;
padding:15px 40px;
background:rgba(255,255,255,0.7);
backdrop-filter:blur(10px);
z-index:1000;
}

.logo img{
height:40px;
}

/* NAV LINKS */
.nav-links{
display:flex;
gap:20px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#333;
}

/* DROPDOWN */
.dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;
top:100%;
background:white;
display:none;
min-width:220px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu{
display:block;
}

.scroll{
max-height:300px;
overflow-y:auto;
}

/* HERO */
.hero{
height:100vh;
margin-top:70px;
position:relative;
}

.slider{
position:absolute;
width:100%;
height:100%;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:1s;
}

.slide.active{
opacity:1;
}

/* HERO CONTENT */
.hero-content{
position:relative;
z-index:2;
color:white;
text-align:center;
top:50%;
transform:translateY(-50%);
}

.hero-form{
margin-top:20px;
}

.hero-form input,
.hero-form select{
padding:10px;
margin:5px;
border-radius:5px;
border:none;
}

/* BUTTON */
.btn{
background:linear-gradient(45deg,#ff6b00,#ff3c00);
color:white;
padding:12px 25px;
border-radius:30px;
border:none;
cursor:pointer;
}

.whatsapp{
background:#25d366;
}


/* TRUST PREMIUM */
.trust{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

/* CARD */
.trust-card{
background:linear-gradient(135deg,#ffffff,#f1f5f9);
padding:30px 20px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all 0.3s ease;
position:relative;
overflow:hidden;
}

/* ICON */
.trust-card .icon{
font-size:35px;
margin-bottom:10px;
}

/* TEXT */
.trust-card h3{
font-size:22px;
font-weight:600;
margin-bottom:5px;
color:#007bff;
}

.trust-card p{
font-size:14px;
color:#555;
}

/* HOVER EFFECT */
.trust-card:hover{
transform:translateY(-10px) scale(1.03);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* GLOW EFFECT */
.trust-card::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,0.6),transparent);
transition:0.5s;
}

.trust-card:hover::before{
left:100%;
}

/* CTA */
.cta{
background:linear-gradient(135deg,#007bff,#00c6ff);
color:white;
padding:80px;
text-align:center;
}

footer{
background:#222;
color:white;
padding:20px;
text-align:center;
}

/* SLIDER CONTAINER */
.slider-container{
position:relative;
display:flex;
align-items:center;
}

/* SLIDER */
.card-slider{
display:flex;
gap:20px;
overflow:hidden;
scroll-behavior:smooth;
width:100%;
}

/* CARD */
.package-card{
min-width:280px;
border-radius:15px;
overflow:hidden;
position:relative;
}

.package-card img{
width:100%;
height:200px;
object-fit:cover;
transition:0.5s;
}

.overlay{
position:absolute;
bottom:0;
width:100%;
padding:15px;
background:linear-gradient(to top,rgba(0,0,0,0.7),transparent);
color:white;
}

/* BUTTONS */
.prev,.next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:#fff;
border:none;
padding:10px;
cursor:pointer;
border-radius:50%;
box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

.prev{left:-10px;}
.next{right:-10px;}

/* TOP DESTINATION */
.top-destinations h2{
font-size:28px;
margin-bottom:10px;
}

.subtext{
font-size:14px;
color:#666;
margin-bottom:30px;
}

/* GRID */
.grid-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

/* ITEMS */
.grid-item{
position:relative;
border-radius:15px;
overflow:hidden;
cursor:pointer;
}

.grid-item img{
width:100%;
height:100%;
object-fit:cover;
transition:0.5s;
}

/* SIZES */
.large{
grid-column:span 2;
height:250px;
}

.tall{
grid-row:span 2;
height:520px;
}

.wide{
grid-column:span 2;
height:250px;
}

.grid-item:not(.large):not(.tall):not(.wide){
height:250px;
}

/* TEXT OVERLAY */
.grid-item span{
position:absolute;
bottom:15px;
left:15px;
color:white;
font-size:20px;
font-weight:600;
text-shadow:0 2px 10px rgba(0,0,0,0.5);
}

/* HOVER */
.grid-item:hover img{
transform:scale(1.1);
}

/* MOBILE */
@media(max-width:768px){
.grid-container{
grid-template-columns:1fr;
}

.tall,.large,.wide{
grid-column:span 1;
grid-row:span 1;
height:200px;
}
}

/* AMAZING PLACES */
.amazing h2{
font-size:28px;
margin-bottom:10px;
}

.places-slider{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
padding:10px 0;
}

.places-slider::-webkit-scrollbar{
display:none;
}

/* CARD */
.place-card{
min-width:220px;
height:250px;
border-radius:15px;
overflow:hidden;
position:relative;
cursor:pointer;
flex-shrink:0;
}

.place-card img{
width:100%;
height:100%;
object-fit:cover;
transition:0.5s;
}

/* TEXT */
.place-card span{
position:absolute;
bottom:15px;
left:15px;
color:white;
font-weight:600;
font-size:16px;
text-shadow:0 2px 10px rgba(0,0,0,0.5);
}

/* HOVER */
.place-card:hover img{
transform:scale(1.1);
}

/* WHY SECTION */
.why h2{
font-size:30px;
margin-bottom:30px;
}

/* GRID */
.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

/* CARD */
.why-card{
background:#fff;
padding:30px 20px;
border-radius:15px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
border:1px solid #eee;
}

/* ICON */
.icon{
font-size:40px;
margin-bottom:15px;
}

/* TEXT */
.why-card h3{
font-size:18px;
margin-bottom:10px;
}

.why-card p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* HOVER */
.why-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* TESTIMONIALS */
.testimonials h2{
margin-bottom:30px;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.testimonial-card{
background:#fff;
padding:30px 20px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.testimonial-card img{
width:80px;
height:80px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

.testimonial-card h3{
font-size:16px;
margin-bottom:10px;
color:#007bff;
}

.testimonial-card p{
font-size:14px;
color:#666;
}

.testimonial-card:hover{
transform:translateY(-10px);
}

/* BLOGS */
.blogs h2{
margin-bottom:10px;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:20px;
}

.blog-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.blog-card img{
width:100%;
height:180px;
object-fit:cover;
}

.blog-card h4{
padding:15px;
font-size:15px;
}

.blog-card:hover{
transform:translateY(-8px);
}

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
z-index:1;
}

.hero-content{
z-index:2;
position:relative;
}

.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
}

@media(max-width:768px){
.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:#fff;
flex-direction:column;
display:none;
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
}
}

body{
background:#f5f7fa;
}

.section{
padding:80px 40px;
}

h2{
font-weight:600;
letter-spacing:0.5px;
}

.package-card:hover,
.blog-card:hover,
.place-card:hover{
transform:translateY(-10px) scale(1.02);
}

.hero-content{
background:rgba(255,255,255,0.1);
backdrop-filter:blur(10px);
padding:30px;
border-radius:20px;
display:inline-block;
box-shadow:0 10px 40px rgba(0,0,0,0.2);
}

.btn{
position:relative;
overflow:hidden;
transition:0.3s;
}

.btn::after{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,0.5),transparent);
transition:0.5s;
}

.btn:hover::after{
left:100%;
}

.section:nth-child(even){
background:#ffffff;
}

.section:nth-child(odd){
background:#f8fafc;
}

.package-card,
.blog-card,
.place-card,
.why-card,
.testimonial-card{
border:1px solid rgba(0,0,0,0.05);
}

.package-card:hover{
transform:translateY(-12px) scale(1.03);
box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

h2{
font-size:32px;
margin-bottom:20px;
position:relative;
}

h2::after{
content:"";
width:60px;
height:3px;
background:#007bff;
display:block;
margin:10px auto;
border-radius:10px;
}

.animate{
opacity:0;
transform:translateY(50px);
transition:0.6s;
}

.animate.show{
opacity:1;
transform:translateY(0);
}

.nav-links{
list-style: none;   /* 🔥 ye main fix hai */
margin: 0;
padding: 0;
display: flex;
gap: 20px;
}

.nav-links li{
list-style: none;
}

.nav-links ul{
list-style: none;
padding: 0;
margin: 0;
}

.nav-links li{
position: relative;
cursor: pointer;
}

.nav-links li::after{
content:"";
position:absolute;
bottom:-5px;
left:0;
width:0;
height:2px;
background:#007bff;
transition:0.3s;
}

.nav-links li:hover::after{
width:100%;
}

.grid-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
grid-auto-flow:dense; /* 🔥 important */
}

.section:nth-child(even){
background:url("https://www.transparenttextures.com/patterns/cubes.png");
background-color:#f9fbfd;
}

.section:nth-child(odd){
background:#ffffff;

/* ========================= */
/* ZIO FORM FINAL CLEAN CSS */
/* ========================= */

.container{
max-width:900px;
margin:50px auto;
padding:20px;
}

/* HERO STRIP */
.hero-strip{
background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
color:#fff;
padding:40px;
border-radius:15px;
margin-bottom:30px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.hero-left h1{
font-size:28px;
margin-bottom:10px;
font-weight:700;
}

.hero-left p{
font-size:15px;
opacity:0.9;
margin-bottom:15px;
}

.hero-badges{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.hero-badges span{
background:rgba(255,255,255,0.15);
padding:8px 14px;
border-radius:20px;
font-size:13px;
}

/* FORM */
.quote-form{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.form-title{
font-size:22px;
font-weight:700;
margin-bottom:20px;
color:#0f2027;
}

/* INPUT */
.form-group{
margin-bottom:15px;
}

label{
display:block;
margin-bottom:5px;
font-size:14px;
font-weight:600;
color:#333;
}

input,select,textarea{
width:100%;
padding:12px;
border-radius:8px;
border:1px solid #ddd;
font-size:14px;
transition:0.3s;
}

input:focus,select:focus,textarea:focus{
border-color:#0072ff;
outline:none;
box-shadow:0 0 5px rgba(0,114,255,0.2);
}

textarea{
height:100px;
resize:none;
}

/* ROW */
.row{
display:flex;
gap:15px;
}

.row .form-group{
flex:1;
}

/* BUTTON */
.submit-btn{
width:100%;
padding:14px;
background:linear-gradient(135deg,#00c6ff,#0072ff);
border:none;
color:#fff;
font-size:16px;
font-weight:600;
border-radius:10px;
cursor:pointer;
transition:0.3s;
}

.submit-btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,114,255,0.3);
}

/* CHECKBOX */
.checkbox{
display:flex;
align-items:center;
gap:10px;
margin:15px 0;
font-size:14px;
}

/* MOBILE */
@media(max-width:768px){
.row{
flex-direction:column;
}
}
}
/* FONT */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #f4f7fb;
}

/* HERO STRIP */
.hero-strip {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  padding: 35px;
  border-radius: 12px;
  color: #fff;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 28px;
  font-weight: 700;
}

.hero-left p {
  margin-top: 8px;
  opacity: 0.9;
}

/* BADGES */
.hero-badges {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badges span {
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  backdrop-filter: blur(8px);
}

/* FORM */
.quote-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* TITLE */
.form-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* GROUP */
.form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
}

/* INPUT */
input, select, textarea {
  padding: 11px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  transition: 0.3s;
  background: #f9fafb;
}

/* FOCUS */
input:focus, select:focus, textarea:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
  outline: none;
}

/* NOTE */
.note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 5px;
}

/* ROW */
.row {
  display: flex;
  gap: 12px;
}

.row .form-group {
  flex: 1;
}

/* TEXTAREA */
textarea {
  height: 90px;
  resize: none;
}

/* CHECKBOX */
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
  font-size: 13px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

/* MOBILE */
@media(max-width:768px){
  .row {
    flex-direction: column;
  }

  .hero-left h1 {
    font-size: 22px;
  }
}

/* HERO NEW */
.quote-hero-new {
  background: linear-gradient(135deg, #1e3a8a, #06b6d4);
  padding: 60px 20px 100px;
  text-align: center;
  color: #fff;
  border-radius: 0 0 40px 40px;
}

.hero-content-new h1 {
  font-size: 34px;
  font-weight: 700;
}

.hero-content-new p {
  margin-top: 10px;
  opacity: 0.9;
}

/* BADGES */
.hero-badges-new {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges-new span {
  background: rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

<section class="quote-hero-new"></section>

<section class="form-wrapper">
  <div class="container">

    <form class="quote-form">
      <!-- full form -->
    </form>

  </div>
</section>

/* FORM BOX */
.quote-form {
  width: 100%;
  max-width: 850px;   /* IMPORTANT: not full width */
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* TITLE */
.form-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* INPUT */
input, select, textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f9fafb;
  transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

/* ROW */
.row {
  display: flex;
  gap: 15px;
}

.row .form-group {
  flex: 1;
}

/* BUTTON */
.submit-btn {
  background: linear-gradient(135deg,#2563eb,#06b6d4);
  padding: 14px;
  border-radius: 12px;
  border: none;
  color: #fff;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

/* MOBILE */
@media(max-width:768px){
  .row {
    flex-direction: column;
  }

  .hero-content-new h1 {
    font-size: 24px;
  }
}

/* HERO CONTENT CENTER */
.hero {
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45); /* dark overlay */
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

/* HEADING */
.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* PARAGRAPH */
.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

/* PRIMARY */
.primary-btn {
    background: #ff5a5f;
    color: #fff;
}

.primary-btn:hover {
    background: #e04848;
}

/* SECONDARY */
.secondary-btn {
    border: 2px solid #fff;
    color: #fff;
}

.secondary-btn:hover {
    background: #fff;
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* FLOATING BUTTONS */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s;
}

/* WHATSAPP */
.whatsapp {
    background: #25D366;
}

.whatsapp:hover {
    transform: scale(1.1);
}

/* CALL */
.call {
    background: #ff5a5f;
}

.call:hover {
    transform: scale(1.1);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* GLOBAL FIX */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* CONTAINER WIDTH */
.section {
    padding: 60px 20px;
}

/* ================= NAVBAR ================= */

.navbar {
    flex-wrap: wrap;
}

.nav-links {
    flex-wrap: wrap;
}

/* MOBILE NAV */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 15px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: relative;
        width: 100%;
    }
}

/* ================= HERO ================= */

.hero {
    height: 100vh;
}

.hero-content {
    width: 90%;
}

/* MOBILE HERO */
@media (max-width: 768px) {

    .hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* ================= TRUST ================= */

.trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================= SLIDERS ================= */

.card-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.package-card {
    min-width: 250px;
}

/* ================= GRID SECTION ================= */

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* TABLET */
@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

/* ================= PLACES ================= */

.places-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.place-card {
    min-width: 220px;
}

/* ================= WHY CHOOSE ================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= TESTIMONIAL ================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= BLOG ================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= FORM ================= */

.quote-form {
    width: 100%;
}

.row {
    display: flex;
    gap: 15px;
}

/* MOBILE FORM STACK */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}

/* ================= FLOATING BUTTON ================= */

.floating-buttons {
    right: 15px;
    bottom: 15px;
}

/* ================= BUTTON ================= */

.btn {
    text-align: center;
}

/* ================= TEXT FIX ================= */

h1, h2, h3 {
    word-wrap: break-word;
}


.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .nav-links li {
        width: 100%;
    }
}
.navbar {
    position: relative;
    z-index: 9999;
}

.card-slider {
    scroll-behavior: smooth;
}

.bottom-menu {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: none;
}

.bottom-menu.active {
    display: block;
}

document.addEventListener("DOMContentLoaded", function () {

    const toggle = document.getElementById("menu-toggle");
    const navLinks = document.querySelector(".nav-links");
    const bottomMenu = document.getElementById("bottom-menu");

    toggle.addEventListener("click", function () {

        // NAVBAR TOGGLE
        navLinks.classList.toggle("active");

        // BOTTOM MENU TOGGLE
        if(bottomMenu){
            bottomMenu.classList.toggle("active");
        }

    });

});
