/* =========================================================
   RMC Creations — style.css
   Palette: CMYK-inspired vibrant  (magenta / cyan / yellow / ink)
   Fonts:   Archivo (display) + Inter (body)
   Signature: halftone dot texture on dark sections
   ========================================================= */

:root {
  --magenta: #e8127a;
  --magenta-dark: #c60f68;
  --magenta-soft: #fde3ef;
  --cyan: #00aeef;
  --cyan-dark: #0092c9;
  --cyan-soft: #e0f6fe;
  --yellow: #ffc400;
  --ink: #141225;
  --ink-2: #211d38;
  --paper: #f7f6fb;
  --muted: #5c5872;
  --line: #e9e7f1;
  --white: #ffffff;

  --font-display: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 18px rgba(20, 18, 37, .06);
  --shadow: 0 14px 40px rgba(20, 18, 37, .10);
  --shadow-lg: 0 24px 60px rgba(20, 18, 37, .16);
  --shadow-magenta: 0 14px 30px rgba(232, 18, 122, .30);
  --shadow-cyan: 0 14px 30px rgba(0, 174, 239, .28);
  --t: .35s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.14;
  color: var(--ink);
  letter-spacing: -.01em;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--magenta); color: #fff; }

/* Halftone dot signature */
.hero-dots, .booking-dots, .counter-dots, .footer-dots {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-dots, .booking-dots, .footer-dots {
  /*background-image: radial-gradient(rgba(255,255,255,.10) 1.5px, transparent 1.7px);*/
  background-size: 16px 16px;
}
.counter-dots {
  background-image: radial-gradient(rgba(255,255,255,.16) 1.6px, transparent 1.8px);
  background-size: 18px 18px;
}

/* ---------- Section shells ---------- */
.section { padding: 96px 0; }
.section-head { max-width: 700px; margin: 0 auto 54px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--magenta);
  background: var(--magenta-soft);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.section-title { font-size: clamp(1.75rem, 3.4vw, 2.65rem); font-weight: 900; margin-bottom: 14px; }
.section-desc, .lead-text { color: var(--muted); font-size: 1.02rem; margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-display); font-weight: 700; border: none; border-radius: 999px; transition: var(--t); }

.btn-primary-solid {
  background: var(--magenta); color: #fff; padding: 13px 28px;
  box-shadow: var(--shadow-magenta);
  display: inline-flex; align-items: center; gap: 9px;
}
.btn-primary-solid:hover { background: var(--magenta-dark); color: #fff; transform: translateY(-3px); }

.btn-ghost {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.55); padding: 11px 26px;
  display: inline-flex; align-items: center; gap: 9px;
}
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-3px); }

.btn-call {
  background: var(--cyan); color: #fff; padding: 10px 20px;
  display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-cyan);
}
.btn-call:hover { background: var(--cyan-dark); color: #fff; transform: translateY(-2px); }

.btn-service {
  background: var(--ink); color: #fff; padding: 10px 20px;
  display: inline-flex; align-items: center; gap: 8px; font-size: .92rem;
}
.btn-service:hover { background: var(--magenta); color: #fff; }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar { background: var(--ink); color: rgba(255,255,255,.8); font-size: .86rem; padding: 9px 0; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-right { justify-content: flex-end; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); }
.topbar-item i { color: var(--cyan); }
.topbar-item:hover { color: #fff; }
.topbar-social { display: inline-flex; gap: 12px; padding-left: 6px; }
.topbar-social a { color: rgba(255,255,255,.75); transition: var(--t); }
.topbar-social a:hover { color: var(--magenta); transform: translateY(-2px); }

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
.site-header { background: #fff; position: sticky; top: 0; z-index: 1030; box-shadow: var(--shadow-sm); }
.site-header.scrolled { box-shadow: var(--shadow); }
.navbar { padding: 13px 0; }
.navbar-brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  font-family: var(--font-display); font-weight: 900; font-size: 1.02rem;
  color: #fff; background: var(--magenta);
  padding: 8px 10px; border-radius: 10px; line-height: 1; letter-spacing: .02em;
}
.brand-text { font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; color: var(--ink); }
.brand-text em { font-style: normal; color: var(--magenta); }

.navbar-nav .nav-link {
  font-family: var(--font-display); font-weight: 600; color: var(--ink);
  padding: 8px 16px; position: relative; transition: var(--t);
}
.navbar-nav .nav-link::after {
  content: ""; position: absolute; left: 16px; bottom: 2px;
  width: 0; height: 2px; background: var(--magenta); transition: var(--t);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--magenta); }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { width: calc(100% - 32px); }
.nav-cta { margin-left: 10px; }
.nav-cta .nav-link::after { display: none; }
.navbar-toggler { border: none; font-size: 1.7rem; color: var(--magenta); padding: 0; }
.navbar-toggler:focus { box-shadow: none; }

/* =========================================================
   HERO CAROUSEL
   ========================================================= */
.hero { position: relative; }
.hero .carousel-item {
  height: 88vh; min-height: 560px;
  background-size: cover; background-position: center top; position: relative;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,18,37,.92) 0%, rgba(20,18,37,.68) 46%, rgba(20,18,37,.28) 100%);
}
.hero .container { position: relative; height: 100%; display: flex; align-items: center; }
.hero-content { max-width: 660px; color: #fff; text-align: left; padding: 20px 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(232,18,122,.2); border: 1px solid rgba(232,18,122,.5);
  color: #ffe3f0; padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
}
.hero-eyebrow i { color: var(--yellow); }
.hero-title { color: #fff; font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 900; margin-bottom: 18px; }
.hero-title span { color: var(--cyan); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.86); margin-bottom: 30px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.carousel-control-prev, .carousel-control-next {
  width: 52px; height: 52px; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35); border-radius: 50%;
  top: 50%; transform: translateY(-50%); opacity: 1; font-size: 1.3rem; color: #fff; transition: var(--t);
}
.carousel-control-prev { left: 26px; }
.carousel-control-next { right: 26px; }
.carousel-control-prev:hover, .carousel-control-next:hover { background: var(--magenta); border-color: var(--magenta); }

/* =========================================================
   RIBBON MARQUEE
   ========================================================= */
.ribbon { background: var(--cyan); overflow: hidden; padding: 15px 0; }
.ribbon-track { display: flex; align-items: center; gap: 26px; white-space: nowrap; width: max-content; will-change: transform; }
.ribbon-track span { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: #fff; letter-spacing: .01em; text-transform: uppercase; }
.ribbon-track i { color: rgba(255,255,255,.7); font-size: .7rem; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: #fff; }
.about-media { position: relative; padding-bottom: 40px; padding-right: 40px; }
.about-img-main { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 470px; object-fit: cover; }
.about-img-small {
  position: absolute; right: 0; bottom: 0; width: 230px; height: 190px; object-fit: cover;
  border-radius: var(--radius-sm); border: 6px solid #fff; box-shadow: var(--shadow);
}
.about-badge {
  position: absolute; top: 26px; left: -14px; background: var(--cyan); color: #fff;
  border-radius: var(--radius-sm); padding: 16px 20px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-cyan);
}
.about-badge-num { font-family: var(--font-display); font-weight: 900; font-size: 1.9rem; line-height: 1; }
.about-badge-label { font-size: .82rem; font-weight: 600; line-height: 1.25; }
.about-list { list-style: none; padding: 0; margin: 24px 0 30px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-weight: 500; }
.about-list i { color: var(--magenta); font-size: 1.2rem; margin-top: 2px; }
.about-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.about-contact { display: flex; flex-direction: column; }
.about-contact-label { font-size: .82rem; color: var(--muted); }
.about-contact-num { font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; color: var(--ink); }
.about-contact-num:hover { color: var(--magenta); }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--paper); }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; height: 100%; box-shadow: var(--shadow-sm); transition: var(--t);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
  background: var(--magenta); transform: scaleX(0); transform-origin: left; transition: var(--t);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-img { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 18px; }
.service-img img { width: 100%; height: 230px; object-fit: cover; object-position: top; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-name { font-size: 1.28rem; font-weight: 800; margin-bottom: 10px; }
.service-text { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }

/* =========================================================
   FEATURED COLLECTIONS
   ========================================================= */
.collections { background: #fff; }
.collection-card {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); background: #fff; transition: var(--t); height: 100%;
}
.collection-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; transition: transform .5s ease; }
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.collection-card:hover img { transform: scale(1.05); }

/* =========================================================
   BOOKING STRIP
   ========================================================= */
.booking-strip { position: relative; background: var(--ink); padding: 74px 0; overflow: hidden; }
.booking-strip::after {
  content: ""; position: absolute; right: -120px; top: -80px; width: 360px; height: 360px;
  background: var(--magenta); opacity: .2; border-radius: 50%;
}
.booking-strip .container { position: relative; z-index: 2; }
.booking-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px;
}
.booking-title { color: #fff; font-size: clamp(1.65rem, 3.2vw, 2.4rem); font-weight: 900; margin-bottom: 14px; max-width: 620px; }
.booking-text { color: rgba(255,255,255,.78); max-width: 560px; margin-bottom: 0; }
.booking-actions { display: flex; flex-direction: column; gap: 14px; }
.booking-btn {
  display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 16px 20px; color: #fff; transition: var(--t);
}
.booking-btn:hover { transform: translateY(-4px); color: #fff; }
.booking-call:hover { background: var(--magenta); border-color: var(--magenta); box-shadow: var(--shadow-magenta); }
.booking-text-btn:hover { background: #25d366; border-color: #25d366; box-shadow: 0 14px 30px rgba(37,211,102,.3); }
.booking-btn-icon { width: 52px; height: 52px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.14); font-size: 1.4rem; }
.booking-btn-body { display: flex; flex-direction: column; }
.booking-btn-label { font-size: .8rem; color: rgba(255,255,255,.7); }
.booking-btn-value { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why { background: var(--paper); }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; height: 100%; text-align: center; transition: var(--t); box-shadow: var(--shadow-sm);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 74px; height: 74px; margin: 0 auto 20px; display: grid; place-items: center;
  border-radius: 20px; background: var(--magenta-soft); color: var(--magenta); font-size: 2rem; transition: var(--t);
}
.why-card:hover .why-icon { background: var(--magenta); color: #fff; transform: rotate(-6deg); }
.why-title { font-size: 1.2rem; margin-bottom: 10px; }
.why-text { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

/* =========================================================
   COUNTER
   ========================================================= */
.counter { position: relative; background: var(--magenta); padding: 70px 0; overflow: hidden; }
.counter::after { content: ""; position: absolute; left: -100px; bottom: -120px; width: 320px; height: 320px; background: rgba(255,255,255,.1); border-radius: 50%; }
.counter .container { position: relative; z-index: 2; }
.counter-item { color: #fff; }
.counter-num, .counter-plus { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1; }
.counter-plus { color: var(--yellow); }
.counter-label { margin-top: 10px; font-weight: 500; color: rgba(255,255,255,.9); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.works { background: #fff; }
.work-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px 28px; height: 100%; position: relative; text-align: center; transition: var(--t); box-shadow: var(--shadow-sm);
}
.work-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.work-num { position: absolute; top: 16px; right: 20px; font-family: var(--font-display); font-weight: 900; font-size: 2.4rem; color: var(--magenta-soft); line-height: 1; }
.work-icon { width: 68px; height: 68px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: 1.6rem; transition: var(--t); }
.work-step:hover .work-icon { background: var(--cyan); }
.work-title { font-size: 1.15rem; margin-bottom: 8px; }
.work-text { color: var(--muted); font-size: .93rem; margin-bottom: 0; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: var(--paper); }
.gallery-item {
  position: relative; display: block; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 250px; object-fit: cover; object-position: top; transition: transform .5s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: rgba(20,18,37,.55); opacity: 0; transition: var(--t); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-zoom {
  position: absolute; inset: 0; margin: auto; width: 52px; height: 52px; display: grid; place-items: center;
  background: var(--magenta); color: #fff; border-radius: 50%; font-size: 1.3rem; opacity: 0; transform: scale(.6); transition: var(--t); z-index: 2;
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }
.gallery-col.is-hidden { display: none; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: #fff; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; text-align: center; box-shadow: var(--shadow); margin: 0 8px 60px; position: relative; }
.testi-card::before { content: "\201C"; position: absolute; top: 6px; left: 34px; font-family: Georgia, serif; font-size: 5rem; color: var(--magenta-soft); line-height: 1; }
.testi-stars { color: var(--yellow); font-size: 1.05rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 1.12rem; color: var(--ink-2); font-weight: 500; margin-bottom: 26px; position: relative; z-index: 2; }
.testi-person { display: inline-flex; align-items: center; gap: 14px; }
.testi-person img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; object-position: top; border: 3px solid var(--magenta-soft); }
.testi-person > div { text-align: left; }
.testi-name { display: block; font-family: var(--font-display); font-weight: 800; }
.testi-role { display: block; font-size: .86rem; color: var(--muted); }
.testi-dots { bottom: 8px; }
.testi-dots button { width: 12px; height: 12px; border-radius: 50%; background: var(--magenta); opacity: .35; border: none; margin: 0 5px; transition: var(--t); }
.testi-dots button.active { opacity: 1; width: 30px; border-radius: 999px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--paper); }
.faq .accordion-item { border: 1px solid var(--line); border-radius: var(--radius-sm) !important; margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq .accordion-button { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); padding: 20px 24px; background: #fff; }
.faq .accordion-button:not(.collapsed) { color: var(--magenta); background: var(--magenta-soft); box-shadow: none; }
.faq .accordion-button:focus { box-shadow: none; border: none; }
.faq .accordion-button::after { background-image: none; content: "\2b"; font-family: "bootstrap-icons"; font-size: 1.1rem; width: auto; height: auto; color: var(--magenta); transition: var(--t); }
.faq .accordion-button:not(.collapsed)::after { content: "\2212"; transform: none; }
.faq .accordion-body { color: var(--muted); padding: 4px 24px 22px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: #fff; }
.contact-info { background: var(--ink); border-radius: var(--radius); padding: 34px; height: 100%; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-icon { width: 48px; height: 48px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; background: var(--magenta); color: #fff; font-size: 1.2rem; }
.contact-info-label { display: block; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 3px; }
.contact-info-value { color: #fff; font-weight: 500; }
a.contact-info-value:hover { color: var(--cyan); }
.contact-map { border-radius: var(--radius-sm); overflow: hidden; margin-top: 8px; }
.contact-map iframe { width: 100%; height: 200px; border: 0; display: block; }
.contact-form-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); height: 100%; }
.form-label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.contact-form-wrap .form-control, .contact-form-wrap .form-select { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 16px; font-size: .96rem; background: #fff; }
.contact-form-wrap .form-control:focus, .contact-form-wrap .form-select:focus { border-color: var(--magenta); box-shadow: 0 0 0 .2rem rgba(232,18,122,.15); }
.form-note { margin: 14px 0 0; font-weight: 600; color: var(--magenta); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { position: relative; background: var(--ink); color: rgba(255,255,255,.72); padding: 68px 0 0; overflow: hidden; }
.site-footer .container { position: relative; z-index: 2; }
.footer-brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text em { color: var(--cyan); }
.footer-about { font-size: .95rem; margin-bottom: 20px; max-width: 330px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; transition: var(--t); }
.footer-social a:hover { background: var(--magenta); transform: translateY(-3px); }
.footer-title { color: #fff; font-size: 1.1rem; margin-bottom: 20px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,.72); transition: var(--t); }
.footer-links a:hover { color: var(--cyan); padding-left: 5px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: .93rem; }
.footer-contact i { color: var(--magenta); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: var(--cyan); }
.footer-bottom { margin-top: 46px; border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .88rem; }
.footer-bottom p { margin: 0; }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.float-btn { position: fixed; bottom: 26px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: #fff; font-size: 1.5rem; z-index: 1040; box-shadow: var(--shadow); transition: var(--t); }
.float-btn:hover { color: #fff; transform: scale(1.08); }
.float-whatsapp { left: 26px; background: #25d366; }
.float-call { right: 26px; background: var(--magenta); }
.float-whatsapp::before, .float-call::before { content: ""; position: absolute; inset: 0; border-radius: 50%; animation: pulse 2s infinite; }
.float-whatsapp::before { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
.float-call::before { box-shadow: 0 0 0 0 rgba(232,18,122,.6); }
@keyframes pulse { 70% { box-shadow: 0 0 0 16px rgba(0,0,0,0); } 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); } }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.cu-lg-wdth{
	width:260px;
}
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .section { padding: 72px 0; }
  .navbar-collapse { background: #fff; margin-top: 12px; border-radius: var(--radius-sm); padding: 14px; box-shadow: var(--shadow); }
  .navbar-nav .nav-link::after { display: none; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn-call { width: 100%; justify-content: center; }
  .hero .carousel-item { height: auto; min-height: 0; padding: 90px 0; }
  .hero-overlay { background: linear-gradient(180deg, rgba(20,18,37,.86), rgba(20,18,37,.72)); }
  .about-media { padding-right: 0; padding-bottom: 0; margin-bottom: 10px; }
  .about-img-main { height: 390px; }
  .about-img-small { display: none; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
  .topbar { text-align: center; }
  .topbar-left, .topbar-right { justify-content: center; gap: 16px; }
  .section { padding: 58px 0; }
  .section-head { margin-bottom: 38px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .about-cta { gap: 16px; }
  .service-img img { height: 215px; }
  .gallery-item img { height: 175px; }
  .testi-card { padding: 30px 22px; }
  .contact-info, .contact-form-wrap { padding: 26px; }
  .carousel-control-prev, .carousel-control-next { display: none; }
  .float-btn { width: 50px; height: 50px; font-size: 1.3rem; bottom: 20px; }
  .float-whatsapp { left: 18px; }
  .float-call { right: 18px; }
}

@media (max-width: 575.98px) {
  .brand-text { font-size: 1.15rem; }
  .hero-title { font-size: 1.9rem; }
  .about-img-main { height: 310px; }
}
@media(max-width:374px)
{
	.cu-lg-wdth{
	width:240px;
}
}