@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

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

:root {
  --crimson: #9B1B1B;
  --crimson-dark: #6B0F0F;
  --crimson-light: #C0392B;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-pale: #FDF3DC;
  --cream: #FFFDF7;
  --warm-white: #FFF8F0;
  --text-dark: #1A0A0A;
  --text-mid: #4A2020;
  --text-muted: #7A5050;
  --border: rgba(155, 27, 27, 0.15);
  --nav-h: 68px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

.popup {
  display: none;
  /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  position: relative;
}

#closeBtn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.whatsapp-icon-1 {
  width: 45px;
  height: 45px;
  background-color: #059212;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s;
}

.phone-icon-1 {
  width: 45px;
  height: 45px;
  background-color: #ff751f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s;
  color: white;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo {
  width: 10%;
  /* height: 44px; */
  background: var(--gold-pale);
  /* border-radius: 50%; */
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--crimson);
  font-family: 'Cormorant Garamond', serif;
  overflow: hidden;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--crimson-dark);
  line-height: 1.2;
}

.nav-name span {
  display: block;
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: block;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--crimson);
}

.nav-links li a.nav-cta {
  background: var(--crimson);
  color: #fff !important;
  margin-left: 8px;
}

.nav-links li a.nav-cta:hover {
  background: var(--crimson-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--crimson);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 1rem 2rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: var(--text-mid);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ── PAGE HERO BANNER ── */
.page-banner {
  padding: calc(var(--nav-h) + 50px) 2.5rem 190px;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  text-align: center;
  background-image: url("./images/bannerabout.svg");
  background-repeat: no-repeat;
  margin-top: 65px;
}


.services {
  background-image: url("./images/services_banner.svg");
}

.services-hero-banner {
  margin-top: var(--nav-h);
  position: relative;
  width: 100%;
  line-height: 0;
}

.services-hero-banner .banner-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 527px;
  object-fit: cover;
  object-position: center;
}

.banner-breadcrumb {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'DM Sans', sans-serif;
}

.banner-breadcrumb a {
  color: #F0C040;
  text-decoration: none;
}

.banner-breadcrumb a:hover {
  text-decoration: underline;
}

@media(max-width:768px) {
  .services-hero-banner .banner-img {
    max-height: 260px;
  }
}

.page-banner .section-label {
  margin-bottom: 0.5rem;
}

.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--crimson-dark);
  margin-bottom: 0.75rem;
}

.page-banner p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 1rem;
}

.breadcrumb a {
  color: var(--crimson);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ── SECTION COMMON ── */
section.content {
  padding: 70px 2.5rem;
}

section.content.alt {
  background: #fff;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--crimson-dark);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 300;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-sub {
  max-width: 540px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--crimson);
  color: #fff;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  background: var(--crimson-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--crimson);
  color: var(--crimson);
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--crimson);
  color: #fff;
  transform: translateY(-1px);
}

/* ── CARDS ── */
.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(155, 27, 27, 0.1);
  border-color: rgba(155, 27, 27, 0.25);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--crimson-dark);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── GRID LAYOUTS ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ── FLOAT WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
  animation: bounce-in 0.6s 0.8s both;
}

.float-wa:hover {
  transform: scale(1.1);
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }

  70% {
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── FOOTER ── */
footer {
  background: #0D0404;
  padding: 40px 2.5rem 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-reg {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

/* ── ANIMATE ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s, transform 0.55s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  nav {
    padding: 0 1.25rem;
  }

  section.content {
    padding: 50px 1.25rem;
  }
}


/* <<<<<<<<<<<<<<<<<floating-cta>>>>>>>>>>>>> */

.floating-cta {
    position: fixed;
    bottom: 60px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 99;
}

.floating-cta a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}


.floating-cta-1 a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}


.whatsapp-btn {
    background-color: #25d366;
    box-shadow: 0 0 0 rgb(37 211 102 / 0.7);
}

.facebook-btn {
    background-color: #1877f2 !important;
    box-shadow: 0 0 0 rgb(24 119 242 / 0.7);
}

.youtube-btn {
    background-color: #E91E63 !important;
    box-shadow: 0 0 0 rgb(24 119 242 / 0.7);
}

.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    box-shadow: 0 0 0 rgb(255 20 147 / 0.7);
}

.call-btn {
    transform: rotate(99deg);
    background-color: #007bff;
    box-shadow: 0 0 0 rgb(0 123 255 / 0.7);
}
