* {
  box-sizing: border-box;
  margin:0;
  padding:0;
  
}


:root {  
--pink: #8b1e3f;
--white : #fff;
--black : #000;
--dark-gold:#CEAA56;
--gold:#FAF2E7;
--body-bg: #FAF2E6;
--green: #0f8b8d;
--heading-font: "Cormorant Garamond", serif;
--text: #6b5c56b5;
--light-gold: #FFFDF9;
  --maroon: #8B1E3F;
  --emerald: #0F8B8D;
  --cream: #FDF8F2;
  --light: #FFFDF9;
  --dark-text: #3B2F2F;
  --border-color: #E8D7B7;
  --shadow-soft: 0 10px 40px rgba(139, 30, 63, 0.08);
  --shadow-gold: 0 8px 24px rgba(200, 162, 76, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --transition-base: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cormorant {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
}



body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--body-bg);
  color: #222;
  scroll-behavior: smooth;
  font-size: 18px;

}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 40px;

}

h3 {
  font-size: 35px;
}

p{
    color: var(--text);
    font-family: Poppins;
}

/* TOPBAR BASE */
.topbar {
  background-color: var(--gold);
  color: var(--dark-gold);
  font-size: 0.92rem;
  overflow: hidden;
  max-height: 100px;
  opacity: 1;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}

/* Hidden state, toggled by JS on scroll */
.topbar.topbar-hidden {
  max-height: 0;
  opacity: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Social Icons */
.topbar-social-link {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: #fff;
  transition: 0.25s;
  text-decoration: none;
}

.topbar-social-link:hover {
  background: #fff;
  color: var(--pink);
  box-shadow: 0 0 0 1px var(--pink) inset;
}

/* Right side items (icon + label) */
.topbar-item {
  display: none;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.topbar-item a {
  color: var(--pink);
  transition: color 0.2s ease;
}

.topbar-item a:hover {
  color: var(--dark-gold);
}



.main-logo {
    width: 200px;
    height: auto;
    transform: scale(1.15);
    transform-origin: left center;
}

/* Nav bar */


/* Sticky website header */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
  background-color: var(--white);
}

.navbar {
  background-color: var(--white);
  padding-top: 12px;
  padding-bottom: 12px;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

/* Once topbar is hidden, tighten things up a bit and add depth */
header.is-stuck .navbar {
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

header.is-stuck .main-logo {
  height: 70px;
  width: 70px;
}

.navbar-nav {
  gap: 6px;
}

.navbar-nav .nav-link {
  color: var(--black);
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 10px 16px !important;
  position: relative;
  transition: color 0.25s ease;
}

/* 1) Move the hover-underline to ::before so it stops
      fighting with Bootstrap's caret (::after) */
.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background-color: var(--dark-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:focus-visible::before {
  transform: scaleX(1);
}

.navbar-nav .nav-link.active::before {
  transform: scaleX(1);
}

/* remove the old ::after underline rules you had before —
   delete these two blocks entirely: */
/*
.navbar-nav .nav-link::after { ... }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link:focus-visible::after { ... }
.navbar-nav .nav-link.active::after { ... }
*/

/* 2) Give the caret proper spacing/color now that it's visible again */
.dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: 2px;
  color: var(--pink);
  transition: transform 0.25s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after,
.nav-item.dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* 3) Open the dropdown on hover (desktop only) instead of click */
@media (min-width: 992px) {
  .nav-item.dropdown {
    position: relative;
  }

  .nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    margin-top: 0;
    pointer-events: none;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Dropdown (Services) */
.navbar-nav .dropdown-menu {
  border: none;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  margin-top: 6px;
  background-color: var(--white);
  border-top: 2px solid var(--dark-gold);
}

.dropdown-item {
  color: var(--black);
  padding: 8px 20px;
  font-size: 0.92rem;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--gold);
  color: var(--pink);
  padding-left: 26px;
}

.dropdown-toggle::after {
  vertical-align: 2px;
  transition: transform 0.25s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.navbar-buttons {
  display: flex;
  align-items: center;
  margin-left: 10px;
}


 /* button*/
    .btn {
        position: relative;
        /* display: inline-flex; */
        margin: 15px;
        padding: 8px 27px;
        text-align: center;
        font-size: 16px;
        letter-spacing: 1px;
        text-decoration: none;
        color: var(--white);
        border: 1px solid var(--pink);
        background: var(--pink);
        border-radius: var(--radius);
        cursor: pointer;
        transition: ease-out 0.5s;
        -webkit-transition: ease-out 0.5s;
        -moz-transition: ease-out 0.5s;
        /*    font-weight: 700;*/
        text-transform: uppercase;
        transition: background linear 0.2s;
        border: 2px solid transparent;
        white-space: nowrap;
        letter-spacing: 0.2px;
    }

        .btn.btn-custom::after,
        .btn.btn-custom::before {
            position: absolute;
            content: "";
            width: 0;
            height: 0;
            transition: .5s;
        }

        .btn.btn-custom::after {
            top: -5px;
            left: -5px;
            border-top: 1px solid transparent;
            border-left: 1px solid transparent;
        }

        .btn.btn-custom::before {
            bottom: -5px;
            right: -5px;
            border-bottom: 1px solid transparent;
            border-right: 1px solid transparent;
        }

        .btn.btn-custom:hover {
            background: var(--white);
            color: var(--pink);
        }

            .btn.btn-custom:hover::after,
            .btn.btn-custom:hover::before {
                width: calc(100% + 10px);
                height: calc(100% + 10px);
                border-color: var(--pink);
                border-radius: var(--radius);
            }

        .btn.btn-custom.btn-read-more {
            background: var(--pink);
            color: #fff;
            border-color: var(--pink);
        }

            .btn.btn-custom.btn-read-more:hover {
                background: var(--white);
                color: var(--pink);
            }

                .btn.btn-custom.btn-read-more:hover::after,
                .btn.btn-custom.btn-read-more:hover::before {
                    border-color: var(--pink);
                }
        .btn.btn-custom.btn-abt {
            background: var(--pink);
            color: #fff;
            border-color: var(--pink);
        }

            .btn.btn-custom.btn-abt:hover {
                background: var(--dark-gold);
                color: var(--white);
            }

                .btn.btn-custom.btn-abt:hover::after,
                .btn.btn-custom.btn-abt:hover::before {
                    border-color: var(--dark-gold);
                }


        .btn.btn-custom.btn-abt2 {
            background: var(--white);
            color: var(--pink);
            border-color: var(--pink);
        }

            .btn.btn-custom.btn-abt2:hover {
                background: var(--dark-gold);
                color: var(--white);
            }

                .btn.btn-custom.btn-abt2:hover::after,
                .btn.btn-custom.btn-abt2:hover::before {
                    border-color: var(--pink);
                }

/* Floating Flowers */
.floating-flowers { 
    position: absolute; inset: 0; pointer-events: none; }
    .ff { position: absolute; color: var(--gold); z-index: 200; opacity: 0.55; font-size: 1.6rem; animation: floatFlower 8s ease-in-out infinite; }
    .ff1 { top: 35%; left: 8%; animation-delay: 0s; color: var(--pink); }
    .ff2 { top: 65%; left: 4%; animation-delay: 1.5s; font-size: 1.2rem; color: var(--pink);}
    .ff3 { top: 25%; left: 92%; animation-delay: 0.7s; color: var(--dark-gold); }
    .ff4 { top: 75%; left: 88%; animation-delay: 2.2s; font-size: 1.9rem; color: var(--pink);}
    .ff5 { top: 45%; left: 50%; animation-delay: 3s; font-size: 1.1rem; opacity: 0.35;color: var(--pink); }
    @keyframes floatFlower {  
        0%,100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-24px) rotate(15deg); }}


.super-text{
    color:var(--green);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.hero-heading {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
    border-right: 2px solid transparent;
    
}
.sub-text{
    font-style: italic;
    color: var(--pink);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin-bottom: 1.2rem;
}

.hero-art-frame { 
    position: relative; 
    display: inline-block; 
    max-width: 420px; 
}
.hero-frame-ring {
  position: absolute; 
  top: 18px; 
  left: 18px; 
  right: -18px; 
  bottom: -18px;
  border: 1.5px solid var(--pink); 
  border-radius: 5px; 
  z-index: -1;
}

.hero-art-img {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.hero{
    /* min-height: 100vh;       */
    position: relative;

    display: flex;
    justify-content: center;
    align-items: flex-end;  /* Pushes indicator to bottom */

    padding-bottom: 40px;
}

.scroll-indicator{
    width: 40px;
    height: 65px;
    border: 2px solid #8b1e3f;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    
}

.scroll-indicator i{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #8b1e3f;
    font-size: 10px;
}

.first{
    animation: arrowDown 1.5s infinite;
}

.second{
    animation: arrowDown 1.5s infinite .4s;
}

@keyframes arrowDown{
    0%{
        top: 12px;
        opacity: 0;
    }
    30%{
        opacity: 1;
    }
    100%{
        top: 38px;
        opacity: 0;
    }
}          


/* ---------------------------------------------------------------
   9. ABOUT SECTION
--------------------------------------------------------------- */
.about-section { 
    padding: 6rem 0;
     background: var(--light-gold); 
    }
.about-img-wrap { 
    position: relative; 
}
.about-main-img { 
    border-radius: 5px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); 
}
.about-stat-badge {
  position: absolute; 
  bottom: -20px; 
  right: -10px;
  background: var(--pink); 
  color: var(--white);
  padding: 1.0rem 1.2rem; 
  border-radius: 10px;
  text-align: center; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.about-stat-badge .stat-num { 
    font-family: var(--heading-font); 
    font-size: 2rem; 
    font-weight: 700; 
}
.about-stat-badge small { 
    display: block; 
    font-size: 0.7rem; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    margin-top: 0.2rem; 
}

.about-checklist { 
    margin: 1.6rem 0; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 0.6rem 1rem; 
}
.about-checklist li { 
    color: var(--text); 
    font-weight: 400; 
}
.about-checklist i { 
    color: var(--green); 
    margin-right: 0.5rem; 
}

.about-counters { 
    margin-top: 2rem; 
}
.counter-card {
  background: #ceaa5699; 
  border: 1px solid var(--dark-gold); 
  border-radius: 10px;
  padding: 1.2rem 0.5rem; transition: 
  transform var(--transition-base);
}
.counter-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.counter-card .stat-num { font-family: var(--heading-font); font-size: 1.8rem; font-weight: 700; color: var(--maroon); }
.counter-card p { margin: 0.2rem 0 0; font-size: 0.8rem; letter-spacing: 0.5px; color: #7a6b64; }


/* ---------------------------------------------------------------
   10. WHY CHOOSE US
--------------------------------------------------------------- */
.why-us-section { 
    padding: 6rem 0; 
    background: var(--cream); 
}
.why-card {
  background: var(--light-gold); 
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); 
  padding: 2.4rem 1.8rem; 
  height: 100%;
  text-align: center; 
  transition: transform var(--transition-base), 
  box-shadow var(--transition-base), 
  border-color var(--transition-base);
}
.why-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow-soft); 
    border-color: var(--gold);
 }
.why-card i {
     font-size: 2.4rem; 
     color: var(--pink); 
     margin-bottom: 1.1rem; 
     display: inline-block; 
     transition: transform var(--transition-base); }
.why-card:hover i { 
    transform: scale(1.15) rotate(-6deg); 
    color: var(--pink); 
}
.why-card h3 { 
    font-size: 1.3rem; 
    margin-bottom: 0.6rem; 
}
.why-card p { 
    color: #7a6b64; 
    font-size: 0.92rem; 
    margin: 0; 
}
.why-us-margin{
  margin:10px 0;
}

/* ---------------------------------------------------------------
   12. GALLERY + LIGHTBOX
--------------------------------------------------------------- */
/* ===============================================================
   GALLERY SECTION
================================================================ */

.gallery-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--body-bg);
}

.gallery-section .section-eyebrow {
  margin-bottom: 0.6rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.gallery-section .section-heading {
  margin-bottom: 0;
  color: var(--black);
}


/* ===============================================================
   GALLERY FILTERS
================================================================ */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

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

  min-width: 85px;
  padding: 0.55rem 1.4rem;

  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;

  background: transparent;
  border: 1px solid var(--dark-gold);
  border-radius: 50px;

  cursor: pointer;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.filter-btn:hover,
.filter-btn:focus-visible {
  color: var(--pink);
  background: var(--white);
  border-color: var(--pink);
  box-shadow: 0 6px 18px rgba(139, 30, 63, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.filter-btn.active {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 6px 18px rgba(139, 30, 63, 0.2);
}


/* ===============================================================
   STAGGERED GALLERY LAYOUT
================================================================ */

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}

.gallery-column {
  display: flex;
  flex: 0 0 calc((100% - 4.5rem) / 4);
  flex-direction: column;
  gap: 1.5rem;

  width: calc((100% - 4.5rem) / 4);
  max-width: calc((100% - 4.5rem) / 4);
  min-width: 0;
}

/*
  Added through JavaScript when all images inside
  a column are hidden by the selected filter.
*/
.gallery-column.column-hidden {
  display: none;
}


/* ===============================================================
   GALLERY ITEMS
================================================================ */

.gallery-item {
  position: relative;
  width: 100%;
  overflow: hidden;

  background: var(--light-gold);
  border: 1px solid rgba(206, 170, 86, 0.7);
  border-radius: 6px;

  box-shadow: var(--shadow-soft);
  cursor: pointer;
  isolation: isolate;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    opacity 0.4s ease;
}

.gallery-item.hide {
  display: none;
}

/* Different gallery heights */

.gallery-short {
  aspect-ratio: 4 / 4.7;
}

.gallery-medium {
  aspect-ratio: 4 / 5.3;
}

.gallery-tall {
  aspect-ratio: 4 / 5.9;
}

.gallery-item:hover {
  border-color: var(--dark-gold);
  box-shadow: 0 16px 38px rgba(139, 30, 63, 0.16);
  transform: translateY(-6px);
}


/* ===============================================================
   GALLERY IMAGES
================================================================ */

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.65s ease,
    filter 0.4s ease;
}

.gallery-item:hover img {
  filter: brightness(0.78);
  transform: scale(1.07);
}


/* ===============================================================
   GALLERY IMAGE OVERLAY
================================================================ */

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      180deg,
      rgba(139, 30, 63, 0.03),
      rgba(139, 30, 63, 0.48)
    );

  opacity: 0;
  pointer-events: none;

  transition: opacity 0.35s ease;
}

.gallery-item::after {
  content: "\f00e";

  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;

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

  width: 54px;
  height: 54px;

  color: var(--white);
  font-family: "Font Awesome 6 Free";
  font-size: 1.3rem;
  font-weight: 900;

  background: rgba(139, 30, 63, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;

  opacity: 0;
  pointer-events: none;

  transform: translate(-50%, -50%) scale(0.7);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}


/* ===============================================================
   LIGHTBOX
================================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;

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

  padding: 2rem;

  background: rgba(22, 15, 17, 0.94);
  backdrop-filter: blur(7px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


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

.lightbox img {
  display: block;
  width: auto;
  height: auto;

  max-width: 85vw;
  max-height: 85vh;

  object-fit: contain;

  background: var(--white);
  border: 3px solid rgba(206, 170, 86, 0.75);
  border-radius: var(--radius-md);

  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.6);

  transform: scale(0.92);

  transition: transform 0.35s ease;
}

.lightbox.active img {
  transform: scale(1);
}


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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 3;

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

  width: 48px;
  height: 48px;
  padding: 0;

  color: var(--white);
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  cursor: pointer;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
  transform: rotate(90deg);
  outline: none;
}


/* ===============================================================
   LIGHTBOX NAVIGATION
================================================================ */

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 3;

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

  width: 52px;
  height: 52px;
  padding: 0;

  color: var(--white);
  font-size: 1.2rem;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
  outline: none;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-prev:hover {
  transform: translateY(-50%) translateX(-4px);
}

.lightbox-next:hover {
  transform: translateY(-50%) translateX(4px);
}


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

@media (max-width: 991.98px) {
  .gallery-section {
    padding: 5rem 0;
  }

  .gallery-column {
    flex-basis: calc((100% - 1.5rem) / 2);
    width: calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
  }

  .lightbox img {
    max-width: 80vw;
    max-height: 80vh;
  }
}


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

@media (max-width: 767.98px) {
  .gallery-section {
    padding: 4rem 0;
  }

  .gallery-filters {
    gap: 0.55rem;
    margin-bottom: 2rem !important;
  }

  .filter-btn {
    min-width: auto;
    padding: 0.48rem 1rem;
    font-size: 0.8rem;
  }

  .gallery-grid {
    gap: 1rem;
  }

  .gallery-column {
    gap: 1rem;
  }

  .gallery-item:hover {
    transform: none;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox img {
    max-width: 90vw;
    max-height: 75vh;
  }

  .lightbox-nav {
    top: auto;
    bottom: 20px;

    width: 46px;
    height: 46px;

    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }

  .lightbox-prev:hover,
  .lightbox-next:hover {
    transform: none;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;

    width: 44px;
    height: 44px;
  }
}


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

@media (max-width: 575.98px) {
  .gallery-column {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }

  .gallery-short {
    aspect-ratio: 4 / 4.5;
  }

  .gallery-medium {
    aspect-ratio: 4 / 5;
  }

  .gallery-tall {
    aspect-ratio: 4 / 5.5;
  }

  .gallery-item::after {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .lightbox img {
    max-width: 94vw;
    max-height: 72vh;
  }
}


/* ===============================================================
   REDUCED MOTION
================================================================ */

@media (prefers-reduced-motion: reduce) {
  .filter-btn,
  .gallery-item,
  .gallery-item img,
  .gallery-item::before,
  .gallery-item::after,
  .lightbox,
  .lightbox img,
  .lightbox-close,
  .lightbox-nav {
    transition: none;
  }
}


/* ---------------------------------------------------------------
   13. PROCESS TIMELINE
--------------------------------------------------------------- */
.process-section { padding: 6rem 0; background: var(--light); }
.timeline { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; position: relative; }
.timeline::before {
  content: ''; position: absolute; top: 28px; left: 8%; right: 8%; height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.timeline-step { flex: 1 1 200px; text-align: center; position: relative; z-index: 1; }
.timeline-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--light);
  border: 2px solid #f1e3c5; color: var(--maroon); font-family: var(--heading-font);
  font-weight: 700; font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; box-shadow: var(--shadow-soft); transition: transform var(--transition-base);
}
.timeline-step:hover .timeline-num { transform: scale(1.1); background: var(--maroon); color: var(--light); }
.timeline-step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.timeline-step p { font-size: 0.88rem; color: #7a6b64; max-width: 220px; margin: 0 auto; }


/* ===============================================================
   FAQ AND TESTIMONIALS SECTION
================================================================ */

.faq-testimonial-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: none !important;
  /* background:
    radial-gradient(
      circle at top left,
      rgba(206, 170, 86, 0.13),
      transparent 32%
    ),
    var(--light-gold); */
}

.section-title-block,
.testimonial-heading {
  margin-bottom: 2rem;
}

.faq-testimonial-section .section-heading {
  margin-bottom: 1rem;
  color: var(--black);
}

.faq-testimonial-section .section-description {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
}


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

.faq-wrapper {
  position: relative;
  padding: 2.2rem;

  background: var(--white);
  border: 1px solid rgba(206, 170, 86, 0.32);
  border-radius: var(--radius-md);

  box-shadow: var(--shadow-soft);
}


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

.custom-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.custom-faq-accordion .accordion-item {
  overflow: hidden;

  background: var(--light-gold);
  border: 1px solid rgba(206, 170, 86, 0.45);
  border-radius: 10px;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.custom-faq-accordion .accordion-item:hover {
  border-color: var(--dark-gold);
  box-shadow: 0 7px 20px rgba(139, 30, 63, 0.08);
  transform: translateY(-2px);
}

.custom-faq-accordion .accordion-header {
  margin: 0;
}

.custom-faq-accordion .accordion-button {
  position: relative;

  padding: 1.15rem 3rem 1.15rem 1.25rem;

  color: var(--black);
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;

  background: transparent;
  border: none;
  box-shadow: none;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--pink);
  background:
    linear-gradient(
      90deg,
      rgba(139, 30, 63, 0.08),
      transparent
    );
}

.custom-faq-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.custom-faq-accordion .accordion-button::after {
  width: 34px;
  height: 34px;

  background-image: none;
  background-color: var(--pink);
  border-radius: 50%;

  content: "\2b";

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

  color: var(--white);
  font-family: "Font Awesome 6 Free";
  font-size: 0.9rem;
  font-weight: 900;

  transform: none;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.custom-faq-accordion
  .accordion-button:not(.collapsed)::after {
  content: "\f068";
  background-color: var(--dark-gold);
  transform: rotate(180deg);
}

.custom-faq-accordion .accordion-body {
  padding: 0 1.25rem 1.25rem;

  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.75;
}


/* ===============================================================
   TESTIMONIAL WRAPPER
================================================================ */

.testimonial-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;

  padding: 2.2rem;

  background:
    linear-gradient(
      145deg,
      var(--pink),
      #65152f
    );

  border: 1px solid rgba(206, 170, 86, 0.55);
  border-radius: var(--radius-md);

  box-shadow:
    0 20px 50px rgba(139, 30, 63, 0.2);

  isolation: isolate;
}

/* .testimonial-wrapper::before {
  position: absolute;
  top: -80px;
  right: -80px;
  z-index: -1;

  width: 230px;
  height: 230px;

  background: rgba(206, 170, 86, 0.15);
  border-radius: 50%;

  content: "";
} */

.testimonial-wrapper::after {
  position: absolute;
  bottom: -70px;
  left: -70px;
  z-index: -1;

  width: 180px;
  height: 180px;

  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;

  content: "";
}

.testimonial-wrapper .super-text {
  color: var(--dark-gold);
}

.testimonial-wrapper .section-heading {
  color: var(--white);
}

.testimonial-wrapper .section-description {
  color: rgba(255, 255, 255, 0.76);
}


/* ===============================================================
   TESTIMONIAL CAROUSEL
================================================================ */

.testimonial-carousel {
  display: flex;
  flex: 1;
  flex-direction: column;

  min-height: 430px;
  padding-bottom: 4.5rem;
}

.testimonial-carousel .carousel-inner {
  display: flex;
  flex: 1;
  align-items: stretch;
}

.testimonial-carousel .carousel-item {
  width: 100%;
}

.testimonial-carousel .carousel-item.active {
  display: flex;
}


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

.testimonial-card {
  position: relative;

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

  width: 100%;
  min-height: 330px;
  padding: 2.3rem;

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.testimonial-quote-icon {
  position: absolute;
  top: 22px;
  right: 28px;

  color: rgba(206, 170, 86, 0.35);
  font-size: 3.8rem;
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  gap: 0.35rem;

  margin-bottom: 1.5rem;

  color: var(--dark-gold);
  font-size: 0.95rem;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;

  margin: 0 0 2rem;

  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.65;
}


/* ===============================================================
   TESTIMONIAL CLIENT
================================================================ */

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1rem;

  margin-top: auto;
}

.testimonial-avatar {
  display: flex;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;

  color: var(--pink);
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;

  background: var(--dark-gold);
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.testimonial-client h3 {
  margin: 0 0 0.2rem;

  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.15rem;
}

.testimonial-client p {
  margin: 0;

  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}


/* ===============================================================
   TESTIMONIAL INDICATORS
================================================================ */

.testimonial-indicators {
  bottom: 5px;
  gap: 0.4rem;

  margin-bottom: 0;
}

.testimonial-indicators [data-bs-target] {
  width: 9px;
  height: 9px;

  margin: 0;

  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  border-radius: 50%;

  opacity: 1;

  transition:
    width 0.3s ease,
    background-color 0.3s ease,
    border-radius 0.3s ease;
}

.testimonial-indicators .active {
  width: 28px;

  background-color: var(--dark-gold);
  border-radius: 50px;
}


/* ===============================================================
   TESTIMONIAL PREVIOUS AND NEXT CONTROLS
================================================================ */

.testimonial-control {
  top: auto;
  bottom: 0;

  width: 42px;
  height: 42px;

  color: var(--white);

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  opacity: 1;

  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.testimonial-control:hover,
.testimonial-control:focus {
  color: var(--white);
  background: var(--dark-gold);
  border-color: var(--dark-gold);
}

.testimonial-control-prev {
  right: 54px;
  left: auto;
}

.testimonial-control-next {
  right: 0;
}

.testimonial-control-prev:hover {
  transform: translateX(-3px);
}

.testimonial-control-next:hover {
  transform: translateX(3px);
}


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

@media (max-width: 991.98px) {
  .faq-testimonial-section {
    padding: 5rem 0;
  }

  .faq-wrapper,
  .testimonial-wrapper {
    padding: 2rem;
  }

  .testimonial-carousel {
    min-height: 400px;
  }
}


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

@media (max-width: 767.98px) {
  .faq-testimonial-section {
    padding: 3rem 0;
  }

  .faq-wrapper,
  .testimonial-wrapper {
    padding: 1.5rem;
  }

  .custom-faq-accordion .accordion-button {
    padding: 1rem 2.6rem 1rem 1rem;
    font-size: 1.05rem;
  }

  .custom-faq-accordion .accordion-body {
    padding: 0 1rem 1rem;
  }

  .testimonial-card {
    min-height: 340px;
    padding: 1.7rem;
  }

  .testimonial-card blockquote {
    font-size: 1.18rem;
  }

  .testimonial-quote-icon {
    top: 18px;
    right: 20px;
    font-size: 3rem;
  }
}


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

@media (max-width: 575.98px) {
  .faq-wrapper,
  .testimonial-wrapper {
    padding: 1.25rem;
  }

  .filter-btn {
    font-size: 0.8rem;
  }

  .testimonial-carousel {
    min-height: 450px;
  }

  .testimonial-card {
    min-height: 370px;
    padding: 1.45rem;
  }

  .testimonial-card blockquote {
    font-size: 1.08rem;
  }

  .testimonial-avatar {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }
}


/* ===============================================================
   REDUCED MOTION
================================================================ */

@media (prefers-reduced-motion: reduce) {
  .custom-faq-accordion .accordion-item,
  .custom-faq-accordion .accordion-button::after,
  .testimonial-control,
  .testimonial-indicators [data-bs-target] {
    transition: none;
  }
}

/* ---------------------------------------------------------------
   16. CONTACT SECTION
--------------------------------------------------------------- */
.contact-section { padding: 6rem 0; background: var(--light); }
.contact-info-card {
  background: var(--cream); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 2.4rem; height: 100%;
}
.contact-info-card h3 { margin-bottom: 1.4rem; }
.contact-info-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.contact-info-list i { width: 42px; height: 42px; border-radius: 50%; background: var(--light); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--maroon); flex-shrink: 0; }
.contact-info-list a{
  color:var(--pink)
}
.contact-info-list a:hover { color: var(--text); }
.working-hours { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px dashed var(--border-color); }
.working-hours h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.working-hours p { margin: 0; font-size: 0.9rem; color: #7a6b64; }

.contact-form { padding: 2.4rem; }
.contact-form .form-label { font-size: 0.85rem; font-weight: 500; color: var(--dark-text); }
.contact-form .form-control {
  background: var(--light); border: 1px solid var(--border-color); border-radius: var(--radius-sm);
  padding: 0.7rem 1rem; font-size: 0.92rem;
}
.contact-form .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,162,76,0.15); }
.form-success { display: none; text-align: center; color: var(--emerald); font-weight: 500; margin-top: 0.8rem; }
.form-success.show { display: block; }

.glass-card {
    background: rgba(255, 253, 249, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(232, 215, 183, 0.6);
    border-radius: var(--radius-lg);
}

.ads-social-area {
    background-color: var(--pink);
    padding: 60px 20px;
}

.ads-social-title {
    max-width: 750px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.3;
    color: var(--cream);
}

.ads-social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ads-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 2px solid var(--cream);
    border-radius: 50%;
    background-color: transparent;
    color: var(--cream);
    font-size: 22px;
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ads-social-icon:hover,
.ads-social-icon:focus-visible {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    outline: none;
}

.ads-facebook,
.ads-facebook:focus-visible {
    background-color: #1877f2;
    border-color: #1877f2;
}


.ads-yelp,
.ads-yelp:focus-visible {
    background-color: #d32323;
    border-color: #d32323;
}


.ads-instagram,
.ads-instagram:focus-visible {
    background-color: #e1306c;
    border-color: #e1306c;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 22px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.footer-links a{
  color: var(--light)
}
.footer-links a:hover{
  color: var(--cream)
}
.footer-links span {
    color: var(--light);
    opacity: 0.8;
}

@media (max-width: 575px) {
    .ads-social-area {
        padding: 45px 15px;
    }

    .ads-social-list {
        gap: 14px;
    }

    .ads-social-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* ---------------------------------------------------------------
   19. FLOATING BUTTONS
--------------------------------------------------------------- */
.whatsapp-float {
  position: fixed; bottom: 26px; left: 26px; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--light); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 8px 20px rgba(37,211,102,0.4); z-index: 1500;
  animation: pulseWhatsapp 2.4s ease-in-out infinite;
}
@keyframes pulseWhatsapp { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }

.call-float {
  position: fixed;
  left: 26px;
  bottom: 100px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  animation: pulseCall 2.4s ease-in-out infinite;
}

.call-float:hover {
  color: var(--light);
}

@keyframes pulseCall {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

/* Back-to-top button */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1000;

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

    width: 46px;
    height: 46px;
    padding: 0;

    color: var(--white);
    font-size: 17px;

    background-color: var(--pink);
    border: 2px solid var(--pink);
    border-radius: 50%;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

/* Add this class through JavaScript after scrolling */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    color: var(--pink);
    background-color: var(--white);
    border-color: var(--pink);
    transform: translateY(-4px);
    outline: none;
}

.back-to-top:active {
    transform: translateY(-1px);
}

@media (max-width: 575.98px) {
    .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
}

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

.craft-services-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--light-gold);
}

.craft-services-heading {
    max-width: 720px;
    margin: 0 auto 3rem;
    padding: 0 15px;
    text-align: center;
}

.craft-services-label {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.craft-services-heading h2 {
    margin: 0 0 1rem;
    color: var(--black);
}

.craft-services-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
}


/* Services grid */

.craft-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}


/* Service card */

.craft-service-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;

    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);

    box-shadow: 0 8px 25px rgba(139, 30, 63, 0.07);

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.craft-service-card:hover {
    border-color: var(--dark-gold);
    box-shadow: 0 16px 35px rgba(139, 30, 63, 0.14);
    transform: translateY(-7px);
}


/* Service image */

.craft-service-image {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background-color: var(--cream);
}

.craft-service-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(139, 30, 63, 0.12)
    );
    content: "";
    pointer-events: none;
}

.craft-service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}

.craft-service-card:hover .craft-service-image img {
    transform: scale(1.06);
}


/* Service content */

.craft-service-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.5rem;
}

.craft-service-content h3 {
    position: relative;
    margin: 0 0 0.8rem;
    padding-bottom: 0.75rem;

    color: var(--pink);
    font-size: 1.4rem;
    line-height: 1.3;
}

.craft-service-content h3::after {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 42px;
    height: 2px;

    background-color: var(--dark-gold);
    content: "";
}

.craft-service-content p {
    margin: 0 0 1.4rem;
    color: var(--text);
    font-size: 0.88rem;
    line-height: 1.75;
}


/* WhatsApp enquiry button */

.craft-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    gap: 8px;

    margin-top: auto;
    padding: 10px 17px;

    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;

    background-color: #25d366;
    border: 1px solid #25d366;
    border-radius: 50px;

    text-decoration: none;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.craft-whatsapp-btn i {
    font-size: 18px;
}

.craft-whatsapp-btn:hover,
.craft-whatsapp-btn:focus-visible {
    color: #128c4a;
    background-color: var(--white);
    border-color: #25d366;
    box-shadow: 0 7px 18px rgba(37, 211, 102, 0.22);
    transform: translateY(-2px);
    outline: none;
}


/* Tablet */

@media (max-width: 991.98px) {
    .craft-services-section {
        padding: 5rem 0;
    }

    .craft-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Mobile */

@media (max-width: 575.98px) {
    .craft-services-section {
        padding: 4rem 0;
    }

    .craft-services-heading {
        margin-bottom: 2rem;
    }

    .craft-services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .craft-service-image {
        height: 220px;
    }

    .craft-service-content {
        padding: 1.3rem;
    }

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

    .craft-whatsapp-btn {
        width: 100%;
    }
}


/* Reduced-motion accessibility */

@media (prefers-reduced-motion: reduce) {
    .craft-service-card,
    .craft-service-image img,
    .craft-whatsapp-btn {
        transition: none;
    }
}


/* ===============================================================
   RESPONSIVE OFFER POPUP
================================================================ */

.offer-popup-modal .modal-dialog {
    width: calc(100% - 30px);
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
}

.offer-popup-modal .modal-content {
    position: relative;
    overflow: hidden;
    background-color: var(--light-gold);
    border: 1px solid var(--dark-gold);
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.offer-popup-layout {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 480px;
}


/* Offer image */

.offer-popup-image {
    min-height: 480px;
    overflow: hidden;
    background-color: var(--cream);
}

.offer-popup-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center;
}


/* Offer content */

.offer-popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 42px;
}

.offer-popup-label {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 7px 15px;

    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    background-color: var(--green);
    border-radius: 50px;
}

.offer-popup-content h2 {
    margin: 0 0 16px;
    color: var(--pink);
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.05;
}

.offer-popup-content p {
    margin: 0 0 20px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}


/* Offer code */

.offer-popup-code {
    align-self: flex-start;
    margin-bottom: 13px;
    padding: 11px 17px;

    color: var(--dark-text);
    font-size: 14px;

    background-color: var(--gold);
    border: 1px dashed var(--dark-gold);
    border-radius: 8px;
}

.offer-popup-code strong {
    margin-left: 5px;
    color: var(--pink);
    letter-spacing: 1px;
}

.offer-popup-validity {
    display: block;
    margin-bottom: 24px;
    color: #7a6b64;
    font-size: 12px;
    line-height: 1.5;
}


/* Popup buttons */

.offer-popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.offer-popup-whatsapp,
.offer-popup-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 46px;
    padding: 11px 19px;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;

    border: 1px solid transparent;
    border-radius: 50px;
    text-decoration: none;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.offer-popup-whatsapp {
    color: var(--white);
    background-color: #25d366;
    border-color: #25d366;
}

.offer-popup-whatsapp:hover,
.offer-popup-whatsapp:focus-visible {
    color: #128c4a;
    background-color: var(--white);
    border-color: #25d366;
    box-shadow: 0 7px 18px rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
    outline: none;
}

.offer-popup-call {
    color: var(--white);
    background-color: var(--pink);
    border-color: var(--pink);
}

.offer-popup-call:hover,
.offer-popup-call:focus-visible {
    color: var(--pink);
    background-color: var(--white);
    border-color: var(--pink);
    transform: translateY(-2px);
    outline: none;
}


/* Close button */

.offer-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;

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

    width: 38px;
    height: 38px;
    padding: 0;

    color: var(--white);
    font-size: 17px;

    background-color: var(--pink);
    border: none;
    border-radius: 50%;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
    cursor: pointer;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.offer-popup-close:hover,
.offer-popup-close:focus-visible {
    color: var(--white);
    background-color: var(--dark-gold);
    transform: rotate(90deg);
    outline: none;
}


/* Tablet and mobile */

@media (max-width: 767.98px) {
    .offer-popup-modal .modal-dialog {
        max-width: 560px;
    }

    .offer-popup-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .offer-popup-image {
        height: 230px;
        min-height: 0;
    }

    .offer-popup-image img {
        height: 230px;
        min-height: 0;
    }

    .offer-popup-content {
        padding: 32px 25px;
        text-align: center;
    }

    .offer-popup-label,
    .offer-popup-code {
        align-self: center;
    }

    .offer-popup-actions {
        justify-content: center;
    }
}


/* Small mobile */

@media (max-width: 575.98px) {
    .offer-popup-modal .modal-dialog {
        width: calc(100% - 20px);
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .offer-popup-modal .modal-content {
        border-radius: 14px;
    }

    .offer-popup-image {
        height: 190px;
    }

    .offer-popup-image img {
        height: 190px;
    }

    .offer-popup-content {
        padding: 27px 18px 22px;
    }

    .offer-popup-content h2 {
        font-size: 28px;
    }

    .offer-popup-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .offer-popup-actions {
        flex-direction: column;
    }

    .offer-popup-whatsapp,
    .offer-popup-call {
        width: 100%;
    }

    .offer-popup-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}


/* ------------------------------------------
   0–425px → social center, no right items
------------------------------------------- */
@media (max-width: 425px) {
  .topbar .container {
    justify-content: center;
  }

  .topbar-right {
    display: none !important;
  }
  .hero-art-frame {
    max-width: 270px;
}
}

/* ------------------------------------------
   426–767px → social center + ONLY icons on right
------------------------------------------- */
@media (min-width: 426px) and (max-width: 767.98px) {


  /* Show right section */
  .topbar-right {
    display: flex !important;
    position: absolute;
    right: 15px;
  }

  /* Show icons only */
  .topbar-item {
    display: flex;
  }

  .topbar-item .topbar-label {
    display: none;
  }
}

/* ------------------------------------------
   768px+ → Normal desktop layout
------------------------------------------- */
@media (min-width: 768px) {
  .topbar .container {
    justify-content: flex-start;
  }

  .topbar-right {
    display: flex !important;
    position: static;
  }

  .topbar-item {
    display: flex;
  }

  .topbar-item .topbar-label {
    display: inline;
  }
}

/* ------------------------------------------
   576px+ → Normal desktop layout
------------------------------------------- */
@media (min-width:576px) and (max-width:767.98px) {
  .topbar-right {
    padding-right: 10% !important
  }
}

/* ------------------------------------------
   Mobile nav collapse
------------------------------------------- */
@media (max-width: 767.98px) {
  .navbar-collapse {
    background-color: var(--white);
    padding: 16px;
    border-top: 1px solid var(--gold);
  }

  /* .navbar-nav .nav-link::after {
    display: none;
  } */

  .navbar-buttons {
    margin-left: 0;
    margin-top: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .navbar-buttons .btn {
    margin: 6px 0;
    width: 100%;
  }
    .about-stat-badge { 
        /* position: static;  */
        margin-top: 1rem; 
        display: inline-block;
     }
  .about-checklist { 
    grid-template-columns: 1fr; 
}
.hero-art-frame {
    position: relative;
    display: inline-block;
    max-width: 250px;
}
  .about-stat-badge { 
    /* position: static; */
     margin-top: 1rem; display: inline-block; }
  .about-checklist { grid-template-columns: 1fr; }

  .why-card { 
    padding: 2rem 1.4rem; 
      
  }

  .contact-info-card, .contact-form { padding: 1.8rem; }

  .instagram-grid { grid-template-columns: repeat(2, 1fr); }

  .site-footer { text-align: center; }
  .footer-brand, .footer-about { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .call-float {

    left: 18px;
    bottom: 80px;
    width: 50px;
    height: 50px;
  }
  .counter-card {
    margin:10px;
  }
  .about-section{
    padding:3rem 0;
  }
  .why-us-section{
    padding:3rem 0;
  }
  .why-us-margin{
    margin:10px 0;
  }
  .process-section{
    padding:3rem 0;
  }
  .contact-section{
    padding:3rem 0;
  }
  .main-logo{
    width: 150px;
  }
}
/* ---------------- Large Desktops / below 1200px ---------------- */
@media (max-width: 1199.98px) {

  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width:991.98px){
  .about-checklist { grid-template-columns: 1fr 1fr; }
  .timeline { flex-direction: column; }
  .timeline::before { display: none; }
     .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width:575.98px){

  .filter-btn { padding: 0.45rem 1rem; font-size: 0.8rem; }

  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

  .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 18px; left: 18px; }
  .back-to-top { width: 42px; height: 42px; bottom: 18px; right: 18px; }

  .testimonial-card { padding: 1.6rem 1.2rem; }

}
