/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --default-black: #1a1a1a;
  --light-black: #eee;
  --default-white: #f9f9f9;
  --white: #ffffff;
  --light-gray: #ddd;
  /* --soft-orange: #ff4c2e; */
  --soft-orange: #7e0633;
  /* --muted-gold: #ffcc66; */
  --muted-gold: #ddb2c5;
  --green: #25d366;
}

html {
  scroll-behavior: smooth;
}

/* Font & Body Styling */
body {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: var(--default-black);
  background-color: var(--default-white);
}

/* Scrollbar - Chrome, Edge, Safari only */
::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
}

::-webkit-scrollbar-thumb {
  background: var(--soft-orange);
}

::-webkit-scrollbar-track {
  background: transparent;
}

strong {
  font-style: italic;
  font-weight: 500;
}

/* Flex Container */
.flex-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Default Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top Nav Bar */
.top-bar {
  background-color: var(--soft-orange);
  color: var(--white);
  padding: 0.4rem 0;
}

.left-info span {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.left-info a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.left-info a:hover {
  transform: translateY(-1px);
}

.right-icons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.right-icons a {
  color: var(--white);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.right-icons a:hover {
  transform: translateY(-1px);
}

/* Navbar */
.main-navbar {
  background-color: var(--muted-gold);
  box-shadow: 0 1px 4px rgba(126, 6, 51, 0.15);
  position: relative;
  padding: 0.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-family: "Bad Script", cursive;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(126, 6, 51, 0.1);
  color: var(--soft-orange);
  transition: 0.3s ease-in-out;
}

.logo i {
  font-size: clamp(1.8rem, 3vw + 0.6rem, 2.6rem);
}

.logo img {
  height: clamp(60px, 6vw, 70px);
  width: auto;
  padding: 0;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  text-decoration: none;
  color: var(--default-black);
  padding: 0.8rem;
  transition: 0.3s ease-in-out;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--soft-orange);
  outline: none;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--soft-orange);
  outline-offset: 2px;
}

.nav-links a.active {
  color: var(--soft-orange);
  border-bottom: 2px solid var(--soft-orange);
  background-color: rgba(255, 76, 46, 0.05);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
  color: var(--soft-orange);
  opacity: 0.7;
  transition: 0.3s ease-in-out;

  border: none;
  background: none;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger:focus-visible {
  outline: 2px solid var(--soft-orange);
  outline-offset: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    gap: 0;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -1px 4px rgba(126, 6, 51, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 0;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
    overflow: hidden;
    z-index: 1000;
  }

  .nav-links.show {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    color: var(--soft-orange);
    border-bottom: 1px solid var(--soft-orange);
    outline: none;
  }

  .nav-links a:focus-visible {
    outline: 2px solid var(--soft-orange);
    outline-offset: 2px;
  }

  .hamburger {
    display: block;
  }
}

/* About Banner */
.banner2 {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #ffffff, #ddb2c5, #ddb2c5);
  padding: 0 5%;
  transition: all 0.3s ease-in-out;
}

.banner-text2 {
  max-width: 50%;
  animation: slideFade 1s ease forwards;
  opacity: 0;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label2 {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--default-black);
}

.title2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--soft-orange);
  margin: 0.8rem 0;
}

.breadcrumb2 {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
}

.breadcrumb2 a {
  font-weight: 500;
  text-decoration: none;
  color: var(--default-black);
  border-bottom: 1px solid var(--default-black);
}

.banner-image2 {
  min-width: 0;
  max-width: 45%;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
}

.banner-image2 img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 599px) {
  .banner2 {
    height: 200px;
  }

  .banner-image2 {
    max-width: 45%;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100%;
    min-width: 0;
  }

  .banner-image2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 180px;
  }
}

/* Tablet */
@media (min-width: 600px) and (max-width: 1023px) {
  .banner2 {
    height: 350px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .banner2 {
    height: 400px;
  }
}

/* About Section */
#about-section {
  padding-top: 2.4rem;
}

.aboutus-title {
  color: var(--soft-orange);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

.about-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
}

.about-text {
  flex: 2;
  min-width: 280px;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
}

.about-image-box {
  flex: 1;
  min-width: 240px;
  background: var(--soft-orange);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
}

.about-image-box img {
  width: 100%;
  display: block;
  object-fit: cover;
  padding: 0.5rem;
  border-radius: 12px;
}

.image-caption {
  color: var(--white);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  padding-bottom: 0.8rem;
}

/* Footer */
.footer {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  background-color: var(--soft-orange);
  color: var(--white);
  padding: 1rem 0;
  text-align: center;
}

.footer a {
  text-decoration: none;
  color: var(--muted-gold);
  transition: 0.3s ease-in-out;
}

.footer a:hover {
  text-decoration: underline;
}

/* -------------✅ Scroll to Top FAB Button------------- */
.scroll-top-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--soft-orange);
  color: var(--white);
  font-size: 22px;
  border: none;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-top-fab:hover {
  transform: translateY(0px) scale(1.08);
}

.fab-visible {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}

.fab-hidden {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

.fab-near-bottom {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

/* -------------✅ WhatsApp FAB Button ------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.whatsapp-fab:hover {
  transform: translateY(0px) scale(1.08);
}

.fab-visible {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}

.fab-hidden {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

.fab-near-bottom {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

/* ------------- ✅ SCROLL ANIMATION STYLES ------------- */
[data-animate] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}
[data-animate="fade-down"] {
  transform: translateY(-40px);
}
[data-animate="fade-left"] {
  transform: translateX(-40px);
}
[data-animate="fade-right"] {
  transform: translateX(40px);
}
[data-animate="zoom-in"] {
  transform: scale(0.9);
}
[data-animate="flip-in"] {
  transform: rotateX(90deg);
  transform-origin: top center;
}

[data-animate].visible {
  opacity: 1;
  transform: none;
}
