/* ================================
   NAVBAR STICKY + DESIGN
================================ */

html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
}
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
body{
    font-family: 'Lora', serif;
}

/* When visible */
.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}
/* ================= TOP BAR ================= */
.top-bar {
  background: linear-gradient(90deg, #ba2da2, #fdfbfc);
  color: #000;
  font-size: 19px;
  font-weight: 450;
  padding: 6px 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  z-index: 99999;
}

.top-bar .contact-left span {
  margin-right: 20px;
}
i.fa-phone {
  color: black;
}

.whatsapp-top {
  background: #090909;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  position: center;
}


.whatsapp-top:hover {
  background: #c91dcf;
}




/* =========================
   TOP BAR MOBILE FIX
========================= */

@media (max-width: 768px) {

  .top-bar {
    height: auto;              /* allow flexible height */
    padding: 5px 10px;
  }

  .top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;         /* keep in one line */
  }

  .top-bar .contact-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    overflow: hidden;
  }

  .top-bar .contact-left span {
    margin-right: 0;
    font-size: 13px;           /* smaller for mobile */
    white-space: nowrap;
  }

  /* WhatsApp button smaller */
  .whatsapp-top {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 15px;
    flex-shrink: 0;
  }
}





/* ===== CLEAN NAVBAR ===== */


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  z-index: 9999;

  background: #ffffff;
  border-bottom: rgba(255,255,255,0.15);

  padding: 12px 20px;
  transition: all 0.3s ease;
}

/* IMPORTANT: proper alignment */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Scroll effect */
.navbar.scrolled {
  /* background: #e1e3e6 !important; */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand {
  color: #fff !important;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #0b5d4f !important;
}

/* Logo FIXED */
.logo {
  height: 80px;   /* 🔥 reduced */
  width: auto;
}

/* Nav links */
.navbar-nav {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link {
  margin: 0 12px;
  font-size: 19px;   /* 🔥 better */
  font-weight: 500;
  color: #333 !important;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #347460 !important;
  transform: translateY(-2px);
}




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

  .navbar {
    padding: 10px 15px !important;
  }

  .navbar-brand {
    font-size: 18px !important;
  }

  .logo {
    height: 60px;
  }

  .navbar-nav .nav-link {
    font-size: 15px !important;
    padding: 8px 0;
  }
}

/* Prevent overlap */
body {
  padding-top: 75px;  /* 🔥 adjusted */
}


/* NAV LINKS FIX */
.navbar-nav .nav-link {
  margin: 0 2px;        /* 🔥 reduced spacing */
  font-size: 17px;      /* 🔥 smaller text */
  font-weight: 600;
  color: #0a0a0a !important;
  white-space: nowrap;  /* prevent breaking */
}

/* Reduce gap */
.navbar-nav {
  gap: 8px;
}

.navbar-nav {
  flex: 1;
  justify-content: center; /* spreads items nicely */
}
.navbar-brand {
  flex-shrink: 0;
}

/* ================= MAIN NAVBAR ================= */
/* .main-navbar {
  top: 38px; 
  background-color: #ffffff;
} */

.main-navbar.scrolled .nav-link,
.main-navbar.scrolled .dropdown-toggle,
.main-navbar.scrolled .navbar-brand,
.main-navbar.scrolled .brand-text {
    color: #000 !important;
}
.main-navbar{
    background:#fff !important;
    transition:all .3s ease;
    box-shadow:none;
}

.main-navbar.scrolled {
    background: rgba(255,255,255,0.15) !important; 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}




.navbar:hover{
    color:black;
}

/* Make navbar bigger */
.navbar {
  padding: 16px 0;
}


/* Fix text cutting */
.navbar-nav .nav-link {
  white-space: nowrap;
}

/* Better spacing */
.navbar-nav {
  gap: 10px;
}

.brand-text{
    color: black;
}
.brand-text:hover{
    color:#9d409a
}
/* Dropdown */
.dropdown-menu {
  min-width: 250px;
  border-radius: 10px;
  border: none;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
/* Fix dropdown width */
.dropdown-menu {
  min-width: 260px;
  background-color: #e4e1e4;
  
}
.dropdown-item {
  transition: 0.3s;
}

.dropdown-item:hover {
  color: white !important;
  background-color: #437d6a;
  padding-left: 20px;
}
/* Prevent overflow */
.navbar .container {
  flex-wrap: nowrap;
}

/* ================= BODY FIX ================= */
body {
  padding-top: 120px; /* top bar + navbar space */
}


/* DESKTOP ONLY */
@media (min-width: 992px) {

  .navbar .dropdown-menu {
    display: block;           /* required */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

}


/* ================= MOBILE NAVBAR FIX ================= */
@media (max-width: 991px) {

  /* Fix navbar collapse panel */
  .navbar-collapse {
    background: #f5f0f5; /* same as your navbar */
    padding: 15px;
    margin-top: 10px;
    border-radius: 10px;
    z-index: 9999;
  }

  /* Make menu full width */
  .navbar-nav {
    width: 100%;
    align-items: flex-start;
    gap: 0;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
  }

  /* 🔥 DROPDOWN FIX */
  .dropdown-menu {
    position: static !important;   /* VERY IMPORTANT */
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    
    background: #ffffff;           /* solid background */
    box-shadow: none;
    border-radius: 8px;
    margin-top: 5px;
    padding-left: 10px;
  }

  .dropdown-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
  }

}
/* ================= MOBILE PERFECT NAVBAR ================= */
@media (max-width: 991px) {

  /* 🔥 STOP TITLE MOVING */
  .navbar .container {
    flex-wrap: nowrap !important;
  }

  .navbar-brand {
    flex: 1;
  }

  .navbar-toggler {
    flex-shrink: 0;
  }

  /* 🔥 CENTER DROPDOWN MENU BOX */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    max-width: 320px;

    background: #f2edf1;
    border-radius: 12px;
    padding: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 9999;
  }

  /* 🔥 MENU ITEMS CENTER */
  .navbar-nav {
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
  }

  /* 🔥 DROPDOWN INSIDE BOX */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;

    background: #ffffff;
    border-radius: 8px;
    margin-top: 8px;
    box-shadow: none;
  }

  .dropdown-item {
    text-align: center;
    padding: 10px;
  }

}





@media (max-width: 991px) {

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%); /* 🔥 CENTER MAGIC */

    width: 92%;
    max-width: 360px; /* control size */

    background: #f2edf1;
    padding: 12px;

    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);

    max-height: 70vh;
    overflow-y: auto;

    z-index: 9999;
  }

  /* Center menu text */
  .navbar-nav {
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }

  /* Dropdown inside */
  .dropdown-menu {
    position: static !important;
    background: #fff;
    border-radius: 6px;
    margin-top: 5px;
  }

}

.top-bar {
  height: 50px;
}

.main-navbar {
  top: 50px;
}








.call-btn{
  background: #090909;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  position: center;

}

/* .call-btn:hover {
  background: #40809d;
} */




/* ================================
   FLOATING SIDE BUTTONS
================================ */


.side-buttons {
  position: fixed;
  top: 70%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.side-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.side-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.side-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .side-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {

  .side-buttons {
    top: auto;              
    bottom: 80px;           
    transform: none;       
  }

}








.hero-location{
  color: white;
  font-size: 20px;
  font-weight: 600;
  
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Slider container */
.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Each slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

/* Active slide */
.slide.active {
  opacity: 1;
}

/* Dark overlay */
.hero-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.hero-content h1 {
  font-size: 37px;
}

.hero-content p {
  font-size: 15px;
}

.hero-location {
  color: rgb(255, 255, 255);
  font-size: 37px !important;
  font-weight: 400;
}



.hero-location {
  text-align: center;
}

/* center buttons together */
.hero-buttons {
  text-align: center;
  margin-top: 15px;
}
.hero-buttons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* BUTTON STYLE */
.hero-buttons a{
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: 0.4s ease;
}

/* CALL BUTTON */
.hero-buttons .call-btn{
  background: linear-gradient(45deg, #ff2f92, #ff6a00);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 47, 146, 0.25);
}

.hero-buttons .call-btn:hover{
  transform: translateY(-4px);
  color: #fff;
}

/* WHATSAPP BUTTON */
.hero-buttons .whatsapp-btn{
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.hero-buttons .whatsapp-btn:hover{
  transform: translateY(-4px);
  color: #fff;
}

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

  .hero-buttons{
    gap: 15px;
  }

  .hero-buttons a{
    width: 100%;
    text-align: center;
  }

}

/* call button below and centered */
.call-center-btn {
  display: block;
  margin: 20px auto 0;
  width: fit-content;

  background-color: pink;
  color: black;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;

  animation: blinkBg 3s infinite;
  transition: 0.3s;
}

/* blinking */
@keyframes blinkBg {
  0%   { background-color: rgb(218, 200, 203); }
  50%  { background-color: #975375; }
  100% { background-color: pink; }
}

/* hover */
.call-center-btn:hover {
  background-color: white;
}

@media (max-width: 768px) {

  .hero-section {
    height: 80vh;
  }

  .hero-content {
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
  }

  .hero-content h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-location {
    color: white;
    font-size: 14px;
  }

  .hero-content h5 {
    font-size: 16px;
  }

  /* Buttons */
  .hero-content .btn {
    font-size: 14px;
    padding: 8px 14px;
    margin-top: 8px;
  }

  /* Stack buttons */
  .hero-content .btn {
    display: block;
    width: 80%;
    margin: 8px auto;
  }
}



/* Remove navbar offset */
.main-navbar {
  top: 0 !important;
}

/* Fix body offset for fixed navbar */
body {
  padding-top: 90px !important;
}

/* Remove any spacing */
.hero-section {
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove slide spacing */
.hero-slider, .slide {
  margin: 0;
  padding: 0;
}

/* Ensure hero fits correctly */
.hero-section {
  min-height: calc(100vh - 90px);
}




/* ==========================
   GLOBAL STYLES
========================== */




/* ==========================
   HERO SECTION
========================== */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}


/* ==========================
   SLIDES
========================== */

.slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:all 1s ease;
}

.slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}


/* ==========================
   HERO CONTENT
========================== */

.hero-content{
    max-width:650px;
    color:#ffffff;

    margin-left:9%;
    padding:0 20px;
transform: translateY(-350px);
}

.subtitle{
    display:inline-block;

    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:20px;

    color:#ffffff;

    border-left:4px solid #ff6c32;
    padding-left:14px;
}

.hero-content h1{
    font-size:64px;
    font-weight:800;
    line-height:1.1;

    margin-bottom:25px;
}

.hero-content p{
    font-size:17px;
    line-height:1.9;

    color:rgba(255,255,255,0.92);

    margin-bottom:40px;
}
 .hero-content h1 span{
    color: #ff6c32;   /* Orange color */
}

/* ==========================
   BUTTONS
========================== */

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    font-size:15px;
    font-weight:600;

    transition:0.4s ease;
}


.btn.primary{
    background:#ff6c32;
    color:#ffffff;
}

.btn.primary:hover{
    background:#df0000;
    transform:translateY(-4px);
}


.btn.secondary{
    background:transparent;
    color:#ffffff;

    border:2px solid rgba(255,255,255,0.7);
}

.btn.secondary:hover{
    background:#ffffff;
    color:#111111;

    transform:translateY(-4px);
}


/* ==========================
   SLIDER DOTS
========================== */

.slider-dots{
    position:absolute;

    left:50%;
    bottom:40px;

    transform:translateX(-50%);

    display:flex;
    gap:12px;

    z-index:10;
}

.dot{
    width:12px;
    height:12px;

    border-radius:50%;

    background:rgba(255,255,255,0.45);

    cursor:pointer;

    transition:0.4s;
}

.dot.active{
    background:#ff6c32;
    transform:scale(1.3);
}


/* ==========================
   LARGE LAPTOPS
========================== */

@media(max-width:1200px){

    .hero-content h1{
        font-size:56px;
    }

    .hero-content{
        max-width:600px;
    }

}


/* ==========================
   TABLETS
========================== */

@media(max-width:992px){

    .hero-content{
        margin-left:6%;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:16px;
    }

}


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

@media(max-width:768px){

    .hero{
        height:100vh;
    }

    .hero-content{
        margin:0;
        padding:0 25px;
        max-width:100%;
    }

    .subtitle{
        font-size:12px;
        letter-spacing:1.5px;
    }

    .hero-content h1{
        font-size:36px;
        line-height:1.25;

        margin-bottom:20px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.8;

        margin-bottom:30px;
    }

    .hero-buttons{
        gap:15px;
    }

    .btn{
        width:100%;
        padding:15px 20px;
    }

    .slider-dots{
        bottom:25px;
    }
}


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

@media(max-width:480px){

    .hero-content{
        padding:0 20px;
    }

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:14px;
    }

    .btn{
        font-size:14px;
    }

    .dot{
        width:10px;
        height:10px;
    }
}


/*==========================
        ABOUT
==========================*/

.about{

    padding:100px 0;

    background:#daddde;

}

.about-container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.section-subtitle{

    color:#B0416F;

    letter-spacing:4px;

    font-size:15px;

    font-weight:600;

    text-transform:uppercase;

}

.section-title{

    margin:20px 0;

    font-size:58px;

    line-height:1.15;

    color:#1F2937;

    font-family:'Playfair Display',serif;

}

.section-title span{

    color:#ef4444;

}

.about-text{

    font-size:17px;

    line-height:1.9;

    color:#010101;

    margin-bottom:22px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:35px 0;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px;

    background:#F8FAFC;

    border-radius:14px;

    transition:.35s;

}

.feature:hover{

    transform:translateY(-5px);

}

.feature i{

    color:#0EA5A4;

    font-size:20px;

}

.feature span{

    font-weight:600;

}

.about-buttons{

    display:flex;

    gap:18px;

    margin-top:35px;

}

.about-image{

    overflow:hidden;

    border-radius:28px;

}

.about-image img{

    width:100%;

    transition:1s;

}

.about-image:hover img{

    transform:scale(1.05);

}

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

@media(max-width:991px){

.about-container{

grid-template-columns:1fr;

}

.section-title{

font-size:42px;

}

.about-image{

order:-1;

}

}

@media(max-width:768px){

.about{

padding:70px 0;

}

.section-title{

font-size:34px;

}

.about-features{

grid-template-columns:1fr;

}

.about-buttons{

flex-direction:column;

}
/*=========================================
        TABLET
=========================================*/

@media (max-width:991px){

.about{
    padding:80px 0;
}

.about-container{
    grid-template-columns:1fr;
    gap:45px;
}

.about-image{
    order:-1;
}

.about-image img{
    max-width:550px;
    margin:auto;
}

.section-title{
    font-size:42px;
}

.about-text{
    font-size:16px;
    line-height:1.8;
}

.about-features{
    gap:15px;
}

.feature{
    padding:16px;
}

.about-buttons{
    gap:15px;
}

}


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

@media (max-width:768px){

.about{
    padding:60px 0;
}

.about-container{
    gap:30px;
}

.section-subtitle{
    font-size:12px;
    letter-spacing:2px;
}

.section-title{
    font-size:30px;
    line-height:1.25;
    margin:15px 0;
}

.about-text{
    font-size:15px;
    line-height:1.7;
    margin-bottom:18px;
}

.about-features{
    grid-template-columns:1fr;
    gap:12px;
    margin:25px 0;
}

.feature{
    padding:14px 16px;
    border-radius:12px;
}

.feature i{
    font-size:18px;
}

.feature span{
    font-size:15px;
}

.about-buttons{
    flex-direction:column;
    gap:12px;
}

.about-buttons a{
    width:100%;
    justify-content:center;
    padding:14px;
}

.about-image{
    border-radius:20px;
}

.about-image img{
    border-radius:20px;
}

}

.about-image{
    width:100%;
    max-width:300px;
    margin:0 auto;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.about-image img{
    width:100%;
    height:200px;
    object-fit:cover;
    transition:.5s ease;
}

.about-image:hover img{
    transform:scale(1.05);
}
/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width:480px){

.about{
    padding:50px 0;
}

.section-subtitle{
    font-size:11px;
    letter-spacing:1.5px;
}

.section-title{
    font-size:25px;
    line-height:1.3;
}

.about-text{
    font-size:14px;
    line-height:1.65;
}

.about-features{
    margin:20px 0;
}

.feature{
    padding:12px 14px;
}

.feature i{
    font-size:16px;
}

.feature span{
    font-size:14px;
}

.about-buttons a{
    font-size:14px;
    padding:13px;
}

.about-image{
    border-radius:18px;
}

.about-image img{
    border-radius:18px;
}

}

}/*=====================================
        SERVICES SECTION
======================================*/

.services{
    padding:90px 0;
    background:#ffffff;
    overflow:hidden;
}

.services .container{
    width:min(1320px,92%);
    margin:auto;
}

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

.section-heading{
    text-align:center;
    margin-bottom:65px;
}

.section-subtitle{
    display:inline-block;
    padding:10px 26px;
    border-radius:50px;
    background:#ef4444;
    color:#fff;
    font-size:.88rem;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-title{
    font-family:'Playfair Display',serif;
    font-size:3.2rem;
    font-weight:700;
    color:#1F2937;
    margin-bottom:18px;
    line-height:1.2;
}

.section-title span{
    color:#0EA5A4;
}

.section-heading p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:1.03rem;
}

/*=====================================
        GRID
======================================*/

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:32px;
}

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

.service-card{

    background:#fff;
    border-radius:30px;

    overflow:hidden;

    transition:.45s;

    border:1px solid #e8ecef;

    display:flex;
    flex-direction:column;

    height:100%;
}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 22px 55px rgba(0,0,0,.08);

    border-color:#0EA5A4;
}

/*=====================================
        IMAGE
======================================*/

.service-image{

    overflow:hidden;
    height:260px;
}

.service-image img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:1s;
}

.service-card:hover img{

    transform:scale(1.08);
}

/*=====================================
        CONTENT
======================================*/

.service-content{

    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.service-content h3{

    font-family:'Playfair Display',serif;

    font-size:2rem;

    color:#1F2937;

    margin-bottom:16px;

    line-height:1.2;
}

.service-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:28px;

    flex:1;
}

/*=====================================
        BUTTONS
======================================*/

.service-buttons{

    display:flex;
    gap:12px;
}

.btn-whatsapp,
.btn-call{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    padding:13px 12px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    font-size:.95rem;
}

.btn-whatsapp{

    background:#0EA5A4;

    color:#fff;
}

.btn-whatsapp:hover{

    background:#087977;

    transform:translateY(-3px);
}

.btn-call{

    background:#1F2937;

    color:#fff;
}

.btn-call:hover{

    background:#111827;

    transform:translateY(-3px);
}

/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:1200px){

.service-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.section-title{

font-size:2.6rem;

}

.service-grid{

grid-template-columns:repeat(2,1fr);

gap:25px;

}

}

@media(max-width:768px){

.services{

padding:70px 0;

}

.section-title{

font-size:2.2rem;

}

.service-content h3{

font-size:1.8rem;

}

}

@media(max-width:576px){

.service-grid{

grid-template-columns:1fr;

}

.service-image{

height:240px;

}

.service-content{

padding:24px;

}

.section-title{

font-size:1.9rem;

}

.section-heading{

margin-bottom:45px;

}

.service-buttons{

flex-direction:row;

}

.btn-whatsapp,
.btn-call{

font-size:.9rem;

padding:12px;

}

}

/*=========================================
        PREMIUM MOBILE VIEW
=========================================*/

@media (max-width:768px){

.services{
    padding:55px 0;
}

.services .container{
    width:94%;
}

/* Heading */

.section-heading{
    margin-bottom:35px;
}

.section-subtitle{
    padding:8px 20px;
    font-size:.75rem;
}

.section-title{
    font-size:2rem;
    line-height:1.2;
    margin-bottom:12px;
}

.section-heading p{
    font-size:.92rem;
    line-height:1.7;
}

/* Cards */

.service-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.service-card{
    border-radius:20px;
}

.service-image{
    height:180px;
}

.service-content{
    padding:18px;
}

.service-content h3{
    font-size:1.35rem;
    margin-bottom:10px;
    line-height:1.3;
}

.service-content p{
    font-size:.90rem;
    line-height:1.6;
    margin-bottom:18px;
}

/* Buttons */

.service-buttons{
    gap:10px;
}

.btn-whatsapp,
.btn-call{

    padding:11px 14px;

    font-size:.88rem;

    border-radius:40px;
}

.btn-whatsapp i,
.btn-call i{

    font-size:.9rem;
}

}


@media (max-width:480px){

.services{
    padding:45px 0;
}

.section-title{
    font-size:1.7rem;
}

.section-heading p{
    font-size:.85rem;
}

.service-grid{
    gap:16px;
}

.service-card{
    border-radius:18px;
}

.service-image{
    height:160px;
}

.service-content{
    padding:16px;
}

.service-content h3{
    font-size:1.18rem;
}

.service-content p{
    font-size:.82rem;
    margin-bottom:15px;
}

.btn-whatsapp,
.btn-call{

    padding:10px;

    font-size:.80rem;
}

.btn-whatsapp i,
.btn-call i{
    font-size:.85rem;
}

}



/*=========================================
        WHY CHOOSE US
=========================================*/

.why-us{
    padding:100px 0;
    background:#f4f3f4;
    overflow:hidden;
}

.why-container{
    width:min(1320px,92%);
    margin:auto;

    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:70px;
    align-items:center;
}

/*=============================
        LEFT SIDE
=============================*/

.why-left .section-subtitle{
    display:inline-block;
    padding:10px 24px;
    background:#d6204e;
    color:#fff;
    border-radius:50px;
    font-size:.82rem;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.why-left .section-title{
    font-family:"Playfair Display",serif;
    font-size:3.2rem;
    color:#1F2937;
    line-height:1.2;
    margin-bottom:25px;
}

.why-left .section-title span{
    color:#d6204e;
}

.why-left p{
    color:#02040f;
    font-size:17px;
    line-height:1.9;
    margin-bottom:22px;
}

/*=============================
        BUTTONS
=============================*/

.why-buttons{
    display:flex;
    gap:18px;
    margin-top:35px;
}

.why-buttons .btn{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:15px 30px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    min-width:190px;

    font-size:16px;
}

.primary{
    background:#090909;
    color:#fff;
}

.primary:hover{

    background:#111827;

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.secondary{

    background:#d6204e;

    color:#fff;
}

.secondary:hover{

    background:#098d8b;

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(14,165,164,.25);
}

.why-buttons i{

    font-size:18px;
}

/*=============================
        IMAGE
=============================*/

.why-image{

    display:flex;
    justify-content:center;
    align-items:center;
}

.why-image img{

    width:100%;
    max-width:540px;

    border-radius:28px;

    box-shadow:
    0 25px 55px rgba(0,0,0,.10);

    transition:.45s;

    animation:floating 5s ease-in-out infinite;
}

.why-image img:hover{

    transform:scale(1.03);
}

/*=============================
        FLOATING
=============================*/

@keyframes floating{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0px);

}

}

/*=============================
        TABLET
=============================*/

@media(max-width:991px){

.why-us{

padding:80px 0;

}

.why-container{

grid-template-columns:1fr;

gap:45px;

text-align:center;

}

.why-image{

order:-1;

}

.why-image img{

max-width:430px;

}

.why-buttons{

justify-content:center;

}

.why-left .section-title{

font-size:2.6rem;

}

}

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

@media(max-width:768px){

.why-us{

padding:60px 0;

}

.why-container{

gap:30px;

}

.why-image img{

max-width:280px;

border-radius:20px;

}

.why-left .section-subtitle{

font-size:11px;

padding:8px 18px;

}

.why-left .section-title{

font-size:2rem;

margin-bottom:15px;

}

.why-left p{

font-size:14px;

line-height:1.7;

margin-bottom:15px;

}

.why-buttons{

flex-direction:column;

gap:12px;

margin-top:25px;

}

.why-buttons .btn{

width:100%;

padding:13px;

font-size:15px;

min-width:100%;

border-radius:50px;

}

}

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

@media(max-width:480px){

.why-us{

padding:50px 0;

}

.why-image img{

max-width:230px;

border-radius:18px;

}

.why-left .section-title{

font-size:1.7rem;

}

.why-left p{

font-size:13px;

}

.why-buttons .btn{

font-size:14px;

padding:12px;

}

}

/*====================================
        WHY SECTION BUTTONS
=====================================*/

.why-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:35px;
    flex-wrap:wrap;
}

.why-buttons .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:190px;
    height:56px;

    padding:0 28px;

    border-radius:50px;

    text-decoration:none;

    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:600;

    transition:all .35s ease;

    position:relative;
    overflow:hidden;

    border:none;
}

/*==========================
        CALL BUTTON
==========================*/

.why-buttons .primary{

    background:#1F2937;
    color:#fff;

    box-shadow:0 10px 25px rgba(31,41,55,.15);

}

.why-buttons .primary:hover{

    background:#111827;

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(31,41,55,.25);

}

/*==========================
      WHATSAPP BUTTON
==========================*/

.why-buttons .secondary{

    background:#d6204e;
    color:#fff;

    box-shadow:0 10px 25px rgba(214, 32, 78, 0.18);

}

.why-buttons .secondary:hover{

    background:#0B8C8A;

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(14,165,164,.30);

}

/*==========================
          ICON
==========================*/

.why-buttons .btn i{

    font-size:18px;

    transition:.3s;

}

.why-buttons .btn:hover i{

    transform:scale(1.15);

}

/*==========================
      SHINE EFFECT
==========================*/

.why-buttons .btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:.8s;

}

.why-buttons .btn:hover::before{

    left:130%;

}

.why-buttons .btn:active{

    transform:scale(.96);

}
/*====================================
        MOBILE BUTTONS
=====================================*/

@media (max-width:768px){

.why-buttons{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:20px;
}

.why-buttons .btn{

    width:170px;          /* Smaller width */
    min-width:170px;

    height:42px;          /* Smaller height */

    margin:auto;

    padding:0 16px;

    font-size:13px;

    border-radius:30px;

    gap:8px;
}

.why-buttons .btn i{

    font-size:14px;
}

}



/*==========================
        FAQ SECTION
===========================*/

.faq-section{

padding:100px 0;

background:#f8fafc;

}

.faq-container{

width:min(1320px,92%);
margin:auto;

display:grid;

grid-template-columns:1.1fr .9fr;

gap:70px;

align-items:center;

}

/*==========================*/

.faq-text{

margin:25px 0 40px;

font-size:17px;

line-height:1.9;

color:#555;

}




/*==================================
        GALLERY SECTION
==================================*/

.gallery-section{
    padding:100px 8%;
    background:#fff;
}

.gallery-subtitle{
    display:block;
    text-align:center;
    letter-spacing:5px;
    color:#d6204e;
    text-transform:uppercase;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:18px;
}

.gallery-title{
    text-align:center;
    font-size:58px;
    font-family:'Playfair Display',serif;
    color:#1F2937;
    line-height:1.1;
}

.gallery-title span{
    color:#d6204e;
    font-style:italic;
}

.gallery-text{
    width:min(760px,100%);
    margin:25px auto 55px;
    text-align:center;
    color:#010101;
    line-height:1.9;
    font-size:17px;
}

/* FILTER */

.gallery-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:60px;
}

.gallery-filter button{

    border:1px solid #ddd;
    background:#fff;
    border-radius:50px;
    padding:13px 28px;
    cursor:pointer;
    transition:.35s;
    font-size:15px;
    font-weight:500;
}

.gallery-filter button:hover,
.gallery-filter .active{

    background:#1F2937;
    color:#fff;
    border-color:#1F2937;
}

/* GRID */

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;
}

.gallery-item{

    position:relative;
    overflow:hidden;
    border-radius:26px;
    cursor:pointer;
}

.gallery-item.large{

    grid-row:span 2;
}

.gallery-item img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.gallery-item:hover img{

    transform:scale(1.08);
}

.gallery-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(transparent,rgba(0,0,0,.65));

    display:flex;
    align-items:flex-end;
    padding:30px;
}

.gallery-overlay h4{

    color:#fff;
    font-size:24px;
    font-family:'Playfair Display',serif;
}



/*====================================
      MOBILE GALLERY (768px)
====================================*/

@media (max-width:768px){

.gallery-section{
    padding:60px 16px;
}

.gallery-subtitle{
    font-size:12px;
    letter-spacing:3px;
    margin-bottom:10px;
}

.gallery-title{
    font-size:32px;
    line-height:1.2;
}

.gallery-text{
    font-size:14px;
    line-height:1.7;
    margin:15px auto 30px;
}

.gallery-filter{
    gap:8px;
    margin-bottom:25px;
    justify-content:center;
}

.gallery-filter button{
    padding:8px 16px;
    font-size:12px;
    border-radius:30px;
}

/* 2 columns on mobile */

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

/* Remove large cards */

.gallery-item.large{
    grid-row:span 1;
}

.gallery-item{
    border-radius:14px;
    overflow:hidden;
}

/* Small image size */

.gallery-item img{
    width:100%;
    height:160px;
    object-fit:cover;
    transition:.45s;
}

.gallery-overlay{
    padding:10px;
}

.gallery-overlay h4{
    font-size:14px;
    line-height:1.3;
}

}


/*====================================
      EXTRA SMALL MOBILE (480px)
====================================*/

@media (max-width:480px){

.gallery-section{
    padding:50px 14px;
}

.gallery-title{
    font-size:28px;
}

.gallery-text{
    font-size:13px;
}

.gallery-filter{
    gap:6px;
}

.gallery-filter button{
    padding:7px 12px;
    font-size:11px;
}

.gallery-grid{
    gap:10px;
}

/* Even smaller images */

.gallery-item img{
    height:125px;
}

.gallery-overlay{
    padding:8px;
}

.gallery-overlay h4{
    font-size:12px;
}

}

/*==========================
        FAQ
===========================*/

.faq-list{

display:flex;

flex-direction:column;

gap:18px;

}

.faq-item{

background:#fff;

border-radius:18px;

border:1px solid #E7ECEF;

overflow:hidden;

transition:.35s;

}

.faq-item:hover{

border-color:#0EA5A4;

}

.faq-question{

width:100%;

background:none;

border:none;

padding:22px 25px;

display:flex;

justify-content:space-between;

align-items:center;

font-size:17px;

font-weight:600;

cursor:pointer;

}

.faq-question i{

width:42px;

height:42px;

border-radius:50%;

background:#0EA5A4;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

}

.faq-answer{

display:none;

padding:0 25px 22px;

font-size:15px;

line-height:1.8;

color:#010101;

}

/*==========================
        IMAGE
===========================*/

.faq-image{

position:relative;

}

.faq-image img{

width:100%;

border-radius:30px;

display:block;

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

/*==========================
      FLOATING CARD
===========================*/

.faq-card{

position:absolute;

left:-35px;

bottom:40px;

background:#fff;

padding:24px;

width:210px;

border-radius:24px;

box-shadow:0 20px 45px rgba(0,0,0,.12);

animation:floatCard 4s ease-in-out infinite;

}

.faq-card h3{

font-size:38px;

color:#0EA5A4;

margin-bottom:8px;

font-family:"Playfair Display",serif;

}

.faq-card p{

font-size:15px;

line-height:1.6;

color:#000000;

}

/*==========================*/

@keyframes floatCard{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}

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

@media(max-width:991px){

.faq-container{

grid-template-columns:1fr;

gap:40px;

}

.faq-image{

order:-1;

}

.faq-card{

left:20px;

bottom:20px;

width:180px;

padding:18px;

}

}

@media(max-width:768px){

.faq-section{

padding:70px 0;

}

.faq-question{

font-size:15px;

padding:18px;

}

.faq-question i{

width:34px;

height:34px;

font-size:14px;

}

.faq-answer{

font-size:14px;

padding:0 18px 18px;

}

.faq-card{

width:150px;

padding:15px;

}

.faq-card h3{

font-size:28px;

}

.faq-card p{

font-size:12px;

}

}







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

.og-trusted-section{
    padding:100px 0;
    background:#f5f3f3;
    overflow:hidden;
    font-family:'Lora',serif;
    position:relative;
}

/* Circle */

.og-trusted-section::before{
    content:'';
    position:absolute;
    top:-80px;
    right:-80px;

    width:220px;
    height:220px;

    border-radius:50%;
    background:rgba(239,68,68,.05);
}

/* Header */

.og-trusted-header{
    text-align:center;
    max-width:750px;
    margin:auto;
    padding:0 20px;
}

.og-trusted-tag{
    display:inline-block;
    background:#fdeded;
    color:#ef4444;
    padding:10px 20px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

.og-trusted-header h2{
    margin-top:20px;
    font-size:58px;
    color:#111;
}

.og-trusted-header h2 span{
    color:#ef4444;
}

.og-trusted-line{
    width:70px;
    height:4px;
    background:#ef4444;
    margin:18px auto;
    border-radius:20px;
}

.og-trusted-header p{
    color:#161616;
    line-height:1.8;
    font-size:16px;
}

/* Slider */

.og-trusted-slider{
    margin-top:60px;
    overflow:hidden;
    width:100%;
}

.og-trusted-track{
    display:flex;
    width:max-content;
    animation:ogMarquee 30s linear infinite;
}

/* Cards */

.og-brand-card{
    min-width:240px;
    margin:0 12px;
    padding:24px 30px;

    background:#bec5c2;
    border:1px solid rgba(239,68,68,.12);

    border-radius:18px;

    font-size:24px;
    font-weight:600;
    color:#222;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.4s;
}

.og-brand-card:hover{
    transform:translateY(-6px);
    border-color:#ef4444;
}

@keyframes ogMarquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}




/*===================================
        AREAS WE SERVE
====================================*/

.areas{

    padding:100px 8%;
    background:#F8FAFC;

}

.areas .section-subtitle{

    display:block;
    text-align:center;
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    margin-bottom:15px;
    text-transform:uppercase;

}

.areas .section-title{

    text-align:center;
    font-size:52px;
    font-family:'Playfair Display',serif;
    color:#1F2937;
    margin-bottom:20px;

}

.areas .section-title span{

    color:#d6204e;

}

.areas .section-description{

    max-width:820px;
    margin:0 auto 60px;
    text-align:center;
    color:#000000;
    line-height:1.9;
    font-size:17px;

}

/* Grid */

.areas-grid{

    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;

}

.area-card{

    background:#fff;
    border-radius:18px;
    padding:22px 15px;
    text-align:center;
    transition:.35s;
    border:1px solid #e8e8e8;

}

.area-card i{

    font-size:28px;
    color:#d6204e;
    margin-bottom:12px;

}

.area-card span{

    display:block;
    font-weight:600;
    color:#1F2937;
    font-size:16px;

}

.area-card:hover{

    transform:translateY(-8px);
    border-color:#0EA5A4;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/* Bottom */

.areas-bottom{

    margin-top:60px;
    text-align:center;

}

.areas-bottom p{

    max-width:850px;
    margin:auto;
    line-height:1.9;
    color:#000000;
    font-size:17px;

}

.areas-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:30px;
    background:#0EA5A4;
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.areas-btn:hover{

    background:#1F2937;
    transform:translateY(-3px);

}



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

@media(max-width:768px){

.areas{

    padding:70px 20px;

}

.areas .section-title{

    font-size:34px;

}

.areas .section-description{

    font-size:15px;
    margin-bottom:35px;

}

.areas-grid{

    grid-template-columns:repeat(2,1fr);
    gap:12px;

}

.area-card{

    padding:15px 10px;
    border-radius:14px;

}

.area-card i{

    font-size:20px;
    margin-bottom:8px;

}

.area-card span{

    font-size:13px;

}

.areas-bottom{

    margin-top:35px;

}

.areas-bottom p{

    font-size:14px;
    line-height:1.7;

}

.areas-btn{

    padding:12px 22px;
    font-size:14px;

}

}




.quote-section{
    padding:90px 8%;
    background:#ffffff;
}

.quote-heading{
    text-align:center;
    margin-bottom:60px;
}

.quote-heading span{
    display:inline-block;
    background:#f6dbe5;
    color:#A63D66;
    padding:10px 28px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.quote-heading h2{
    font-size:55px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:20px;
}

.quote-heading h2 span{
    background:none;
    padding:0;
    color:#A63D66;
}

.quote-heading p{
    max-width:760px;
    margin:auto;
    color:#060606;
    line-height:1.9;
    font-size:18px;
}

.quote-form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:50px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group.full{
    grid-column:1/-1;
}

.form-group label{
    font-weight:700;
    margin-bottom:12px;
    color:#A63D66;
    letter-spacing:.5px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{

    width:100%;
    padding:18px 20px;
    border:1px solid #ddd;
    border-radius:15px;
    font-size:16px;
    outline:none;
    transition:.35s;
    font-family:inherit;
    background:#fff;

}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{

    border-color:#A63D66;
    box-shadow:0 0 0 4px rgba(166, 61, 102, 0.15);

}

.quote-form textarea{

    resize:none;

}

.submit-btn{

    grid-column:1/-1;

    width:280px;

    justify-self:center;

    border:none;

    padding:18px;

    border-radius:50px;

    background:#A63D66;

    color:#fff;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.4s;

}

.submit-btn:hover{

    background:#A63D66;

    transform:translateY(-3px);

}

.submit-btn i{

    margin-right:10px;

}

@media(max-width:768px){

.quote-section{

padding:70px 20px;

}

.quote-heading h2{

font-size:34px;

}

.quote-heading p{

font-size:15px;

}

.quote-form{

grid-template-columns:1fr;

gap:18px;

}

.submit-btn{

width:100%;

font-size:16px;

padding:16px;

}

}

/*====================================
      MOBILE VIEW - QUOTE FORM
====================================*/

@media (max-width:768px){

.quote-section{
    padding:60px 18px;
}

.quote-heading{
    margin-bottom:35px;
}

.quote-heading span{
    font-size:11px;
    padding:8px 18px;
    letter-spacing:1px;
}

.quote-heading h2{
    font-size:32px;
    line-height:1.2;
    margin-top:15px;
    margin-bottom:15px;
}

.quote-heading p{
    font-size:14px;
    line-height:1.8;
}

.quote-form{
    grid-template-columns:1fr;
    gap:18px;
}

.form-group label{
    font-size:14px;
    margin-bottom:8px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{

    font-size:14px;
    padding:14px 16px;
    border-radius:12px;

}

.quote-form textarea{
    min-height:120px;
}

.submit-btn{

    width:100%;
    padding:15px;
    font-size:15px;
    border-radius:50px;
    margin-top:5px;

}

.submit-btn i{
    margin-right:8px;
}

}

.footer{

background:#101012;
padding:80px 0 25px;
color:#fff;

}

.footer .container{

width:min(1200px,92%);
margin:auto;

}

.footer-grid{

display:grid;
grid-template-columns:2fr 1fr 1fr 1.4fr;
gap:50px;

}

.footer-logo{

width:90px;
margin-bottom:20px;

}

.footer h3{

font-size:32px;
margin-bottom:18px;
font-family:"Playfair Display",serif;

}

.footer h4{

font-size:24px;
margin-bottom:28px;
position:relative;
font-family:"Playfair Display",serif;

}

.footer h4::after{

content:'';
position:absolute;
left:0;
bottom:-10px;
width:55px;
height:3px;
background:#A63D66;
border-radius:50px;

}

.footer p{

line-height:2;
color:#d3d3d3;
font-size:16px;

}

.footer ul{

list-style:none;
padding:0;
margin:0;

}

.footer ul li{

margin-bottom:15px;

}

.footer ul li a{

text-decoration:none;
color:#d8d8d8;
transition:.3s;

}

.footer ul li a:hover{

color:#A63D66;
padding-left:8px;

}

.footer-social{

display:flex;
gap:15px;
margin-top:30px;

}

.footer-social a{

width:48px;
height:48px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#1d1d1f;
color:#fff;
font-size:18px;
transition:.4s;

}

.footer-social a:hover{

background:#A63D66;
transform:translateY(-6px);

}

.contact-list li{

display:flex;
align-items:flex-start;
gap:15px;
line-height:1.8;

}

.contact-list i{

color:#A63D66;
font-size:18px;
margin-top:5px;

}

.footer-map{

display:inline-flex;
align-items:center;
gap:10px;
margin-top:30px;
padding:15px 28px;
border:2px solid #A63D66;
border-radius:50px;
text-decoration:none;
color:#fff;
transition:.4s;

}

.footer-map:hover{

background:#A63D66;

}

.footer hr{

margin:60px 0 25px;
border:none;
height:1px;
background:#2f2f2f;

}

.footer-bottom{

text-align:center;

}

.footer-bottom p{

font-size:15px;
color:#bbb;

}

.footer-bottom a{

color:#A63D66;
text-decoration:none;
font-weight:700;

}


.scroll-top-btn{
    position: fixed !important;
    bottom: 15px !important;
    right: 25px !important;
    width: 30px !important;
    height: 35px !important;
    background: #A63D66 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: bold !important;
    z-index: 999999 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.scroll-top-btn:hover{
    transform: scale(1.1) !important;
    background: #A63D66 !important;
}


/*=====================================
        FOOTER MOBILE VIEW
======================================*/

@media (max-width:991px){

.footer{
    padding:60px 20px 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:35px;
}

.footer-col{
    text-align:left;
}

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

.footer h3{
    font-size:28px;
    margin-bottom:15px;
}

.footer h4{
    font-size:22px;
    margin-bottom:22px;
}

.footer h4::after{
    width:45px;
    height:3px;
}

.footer p{
    font-size:15px;
    line-height:1.8;
}

.footer ul li{
    margin-bottom:10px;
}

.footer ul li a{
    font-size:15px;
}

.contact-list li{
    gap:12px;
    font-size:15px;
}

.contact-list i{
    font-size:17px;
}

.footer-social{
    justify-content:flex-start;
    gap:12px;
    flex-wrap:wrap;
}

.footer-social a{
    width:42px;
    height:42px;
    font-size:16px;
}

.footer-map{
    width:100%;
    justify-content:center;
    padding:14px 18px;
    font-size:15px;
}

.footer hr{
    margin:40px 0 20px;
}

.footer-bottom p{
    font-size:14px;
    line-height:1.7;
    text-align:center;
}

}

.side-btn.call{
    border-radius:50%;
    animation:callAttention 1.5s infinite;
}

.side-btn.call img{
    display:block;
    border-radius:50%;
    width:100%;
    height:100%;
}

@keyframes callAttention{

    0%{
        transform:scale(1) rotate(0deg);
        box-shadow:0 0 0 0 rgba(8, 87, 178, 0.7);
    }

    10%{
        transform:scale(1.08) rotate(-10deg);
    }

    20%{
        transform:scale(1.08) rotate(10deg);
    }

    30%{
        transform:scale(1.08) rotate(-10deg);
    }

    40%{
        transform:scale(1.08) rotate(10deg);
    }

    50%{
        transform:scale(1.12);
        box-shadow:0 0 0 20px rgba(166, 61, 102, 0.4);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(255,0,0,0);
    }
}


/* ==========================
   FORCE LORA FONT SITEWIDE
========================== */

html,
body,
h1,h2,h3,h4,h5,h6,
p,
span,
a,
li,
ul,
ol,
div,
section,
article,
button,
input,
textarea,
select,
label,
strong,
b,
small{
    font-family:'PT', serif !important;
}





