@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(135deg,
      #c9cfcf,
      #eac2a8);

  overflow-x: hidden;
  flex-direction: column;

  /* IMPORTANT FIX */
  padding:
    20px 20px calc(120px + env(safe-area-inset-bottom));
}

.wrapper {
  margin-bottom: 90px;
}

.top-header {
  margin-bottom: 14px;
}

/* =========================
   HEADER
========================== */

.top-header {
  width: 100%;
  max-width: 420px;

  display: flex;
  align-items: center;

  margin-bottom: 18px;

  animation: fadeTop 0.8s ease;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LOGO */

.brand-logo {
  width: 80px;
  height: 80px;

  object-fit: contain;

  display: block;

  flex-shrink: 0;
}

/* BRAND NAME */
.brand-section h1 {
  font-family: "Montserrat", serif;

  font-size: 1.6rem;
  font-weight: 700;

  color: #000000;

  letter-spacing: 1px;

  line-height: 1;

  text-transform: uppercase;

  text-shadow:
    0 3px 10px rgba(0, 0, 0, 0.10);
}


/* =========================
   HEADER ANIMATIONS
========================== */

@keyframes fadeTop {

  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textGlow {

  from {
    opacity: 0.85;
  }

  to {
    opacity: 1;
  }
}

.wrapper {
  width: 100%;
  max-width: 420px;
  position: relative;
}

/* MAIN CARD */
.modern-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* IMAGE SECTION */
.image-section {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;

  animation: cardUp 2s ease forwards;

  opacity: 0;
  transform: translateY(80px);
}

@keyframes cardUp {

  0% {
    opacity: 0;
    transform: translateY(80px);
  }

  60% {
    opacity: 1;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* LEFT TEXT */
.side-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 10px;
  flex-shrink: 0;
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  color: #111;
}

.image-box img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  display: block;
}

/* BOTTOM PANEL */
.bottom-panel {
  background: #0f0f10;
  color: white;
  padding: 35px 28px;
  border-top-left-radius: 70px;
  border-bottom-right-radius: 70px;
  position: relative;
  overflow: hidden;

  opacity: 0;
  transform:
    translateY(100px) scale(0.92);

  animation:
    bottomReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;

  animation-delay: 0.4s;
}

/* =========================
   BOTTOM PANEL REVEAL
========================== */

@keyframes bottomReveal {

  0% {
    opacity: 0;
    transform:
      translateY(100px) scale(0.92);
  }

  60% {
    opacity: 1;
    transform:
      translateY(-12px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform:
      translateY(0) scale(1);
  }
}

/* =========================
   CONTENT STAGGER EFFECT
========================== */

.bottom-flex,
.line,
.footer,
.icons {
  opacity: 0;
  transform: translateY(30px);

  animation:
    contentFade 0.9s ease forwards;
}

.bottom-flex {
  animation-delay: 1s;
}

.line {
  animation-delay: 1.2s;
}

.footer {
  animation-delay: 1.4s;
}

.icons {
  animation-delay: 1.6s;
}

/* =========================
   SOCIAL ICONS
========================== */

.social-icon {
  text-decoration: none;

  color: #ffffff;

  font-size: 1.25rem;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

/* WHATSAPP */

.social-icon:nth-child(1):hover {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;

  box-shadow:
    0 0 18px rgba(37, 211, 102, 0.6);
}

/* INSTAGRAM */

/* INSTAGRAM */

.social-icon:nth-child(2):hover {

  background:
    linear-gradient(135deg,
      #fdc468,
      #df4996,
      #a34bcb);

  border: 2px solid transparent;

  color: #ffffff;

  box-shadow:
    0 0 16px rgba(223, 73, 150, 0.35),

    0 6px 18px rgba(0, 0, 0, 0.18);

  transform:
    translateY(-6px) scale(1.08);
}

/* FACEBOOK */

.social-icon:nth-child(3):hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #ffffff;

  box-shadow:
    0 0 18px #1877F2;
}

.social-icon:hover {
  transform:
    translateY(-6px) scale(1.08);

  color: #ffffff;
}


/* YOUTUBE */

.social-icon:nth-child(4):hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;

  box-shadow:
    0 0 18px rgba(255, 0, 0, 0.5);
}

.social-icon:hover {
  transform:
    translateY(-6px) scale(1.08);

  color: #ffffff;
}

.social-icon i {
  pointer-events: none;
}

@keyframes contentFade {

  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.left h2 {
  font-size: 3rem;
  line-height: 0.9;
  font-weight: 300;
}

.left h2 span {
  font-weight: 700;
}

.left p {
  margin-top: 10px;
  font-size: 1rem;
  color: #d6d6d6;
}

.number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
}

.line {
  width: 100%;
  height: 1px;
  background: #777;
  margin: 24px 0 18px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #d0d0d0;
  letter-spacing: 1px;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================
   CONTACT LINKS
========================== */
.contact-link:span {
  font-size: 1.1rem;
  font-weight: 600;
}

@media(max-width:560px) {

  .contact-link span {
    font-size: 0.9rem;
  }

}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;

  color: #d0d0d0;

  transition: 0.35s ease;
}

.contact-link i {
  font-size: 0.9rem;

  color: #9c5015;

  transition: 0.35s ease;
}

.contact-link:hover {
  color: #ffffff;

  transform: translateY(-3px);
}

.contact-link:hover i {
  color: #ffffff;

  transform: scale(1.15);
}

/* ICONS */
.icons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.icon:hover {
  transform: translateY(-4px);
  background: white;
  color: black;
}

.arrow {
  font-size: 22px;
  font-weight: bold;
}

/* =========================
   TABLET
=========================*/
@media(max-width:768px) {

  .wrapper {
    max-width: 100%;
  }

  .vertical-text {
    font-size: 2.8rem;
  }

  .image-box {
    min-height: 460px;
  }

  .number {
    font-size: 4rem;
  }

  .left h2 {
    font-size: 2.3rem;
  }
}

/* =========================
   MOBILE
=========================*/
@media(max-width:560px) {

  .image-section {
    gap: 12px;
  }

  .vertical-text {
    font-size: 2.8rem;
  }

  .image-box {
    min-height: 270px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
  }

  .bottom-panel {
    padding: 25px 20px;
    border-top-left-radius: 45px;
    border-bottom-right-radius: 45px;
  }

  .bottom-flex {
    flex-direction: column;
    gap: 15px;
  }

  .left h2 {
    font-size: 2rem;
  }

  .number {
    font-size: 3.4rem;
  }

  .footer {
    font-size: 9px;
  }

  .icon {
    width: 42px;
    height: 42px;
  }
}

/* =========================
   BOTTOM NAVIGATION
========================== */

.bottom-nav {
  position: fixed;

  bottom: calc(15px + env(safe-area-inset-bottom));

  left: 50%;
  transform: translateX(-50%);

  width: min(92vw, 420px);
  height: 78px;

  background: rgba(182, 181, 181, 0.92);

  border-radius: 28px;

  display: flex;
  justify-content: space-around;
  align-items: center;

  padding: 0 10px;

  backdrop-filter: blur(12px);

  z-index: 9999;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-item {
  position: relative;

  width: 68px;
  height: 68px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 5px;

  text-decoration: none;
  color: #ffffff;

  transition: 0.35s ease;
}

.nav-link i {
  font-size: 1.2rem;
  transition: 0.35s ease;
}

.nav-text {
  position: absolute;

  bottom: -10px;

  font-size: 0.7rem;

  opacity: 0;

  transform: translateY(10px);

  transition: 0.35s ease;

  color: #000000;
}

.nav-item.active .nav-link i {
  transform: translateY(-10px);

  color: #9c5015;

  text-shadow:
    0 0 10px rgb(253, 210, 196),
    0 0 25px rgba(255, 187, 164, 1);
}

.nav-item.active .nav-text {
  opacity: 1;
  transform: translateY(0);

  font-weight: 600;
}

@media (max-width:480px) {

  body {
    padding: 20px 10px;
  }

  .nav-text {
    font-size: 0.62rem;
  }
}

/* =========================
   ABOUT DESCRIPTION CARD
========================= */

.about-description {
  width: 100%;
  max-width: 420px;

  margin: -15px auto 60px;

  background: #ffffff;

  padding: 32px 26px;

  border-top-left-radius: 65px;
  border-bottom-right-radius: 65px;

  position: relative;

  overflow: hidden;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.08);

  animation: aboutCardUp 1.2s ease forwards;

  opacity: 0;
  transform: translateY(80px);
}

/* Glow Effect */

.about-description::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  background:
    radial-gradient(circle,
      rgba(15, 136, 167, 0.12),
      transparent 70%);

  top: -80px;
  right: -80px;
}

/* Badge */

.about-badge {
  display: inline-block;

  background: #9c5015;
  color: #ffffff;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 0.78rem;
  font-weight: 600;

  letter-spacing: 1px;

  margin-bottom: 18px;

  box-shadow:
    0 8px 20px rgba(15, 136, 167, 0.25);
}

/* Heading */

.about-description h3 {
  font-family: "Playfair Display", serif;

  font-size: 2rem;

  color: #111111;

  margin-bottom: 18px;

  line-height: 1.1;
}

/* Paragraph */

.about-description p {
  font-size: 0.96rem;

  color: #555555;

  line-height: 1.9;

  margin-bottom: 16px;
}

.about-description strong {
  color: #9c5015;
  font-weight: 700;
}

/* =========================
   ANIMATION
========================= */

@keyframes aboutCardUp {

  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.96);
  }

  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================
   TABLET
========================= */

@media(max-width:768px) {

  .about-description {
    max-width: 100%;
  }

  .about-description h3 {
    font-size: 1.8rem;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:560px) {

  .about-description {

    width: 100%;

    margin-top: 0px;
    margin-bottom: 40px;

    padding: 24px 20px;

    border-top-left-radius: 45px;
    border-bottom-right-radius: 45px;
  }

  .about-description h3 {
    font-size: 1.5rem;
  }

  .about-description p {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
  width: 100%;
  max-width: 420px;

  margin: 0 auto 150px;

  overflow: hidden;

  animation: aboutCardUp 1.2s ease forwards;
}

/* HEADER */

.testimonial-header {
  margin-bottom: 22px;
}

.testimonial-header span {
  display: inline-block;

  background: #9c5015;
  color: #ffffff;

  padding: 8px 16px;

  border-radius: 30px;

  font-size: 0.75rem;
  font-weight: 600;

  letter-spacing: 1px;

  margin-bottom: 14px;
}

.testimonial-header h3 {
  font-family: "Playfair Display", serif;

  font-size: 2rem;

  color: #111111;
}

/* SLIDER */

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */

.testimonial-track {
  display: flex;
  gap: 18px;

  width: max-content;

  animation: testimonialScroll 20s linear infinite;
}

/* CARD */

.testimonial-card {
  width: 300px;

  background: #ffffff;

  padding: 28px 24px;

  border-top-left-radius: 55px;
  border-bottom-right-radius: 55px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.08);

  flex-shrink: 0;

  position: relative;

  overflow: hidden;
}

/* Glow */

.testimonial-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  background:
    radial-gradient(circle,
      rgba(15, 136, 167, 0.10),
      transparent 70%);

  top: -70px;
  right: -70px;
}

/* TEXT */

.testimonial-card p {
  font-size: 0.95rem;

  line-height: 1.8;

  color: #555555;

  margin-bottom: 24px;

  position: relative;
  z-index: 2;
}

/* CUSTOMER */

.customer {
  position: relative;
  z-index: 2;
}

.customer h4 {
  font-size: 1rem;
  color: #111111;
}

.customer span {
  font-size: 0.85rem;
  color: #9c5015;
}

/* AUTO SCROLL */

@keyframes testimonialScroll {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* HOVER PAUSE */

.testimonial-track:hover {
  animation-play-state: paused;
}

/* =========================
   TABLET
========================= */

@media(max-width:768px) {

  .testimonial-section {
    max-width: 100%;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:560px) {

  .testimonial-section {
    margin-bottom: 140px;
  }

  .testimonial-header h3 {
    font-size: 1.6rem;
  }

  .testimonial-card {
    width: 260px;

    padding: 24px 20px;

    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .testimonial-card p {
    font-size: 0.88rem;
  }
}

/* =========================
   LOCATION SECTION
========================= */

.location-section {
  width: 100%;
  max-width: 420px;

  margin: -80px auto 140px;

  animation: aboutCardUp 1.2s ease forwards;
}

/* CARD */

.location-card {
  background: #ffffff;

  padding: 30px 24px;

  border-top-left-radius: 65px;
  border-bottom-right-radius: 65px;

  position: relative;

  overflow: hidden;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.08);
}

/* GLOW EFFECT */

.location-card::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  background:
    radial-gradient(circle,
      rgba(15, 136, 167, 0.12),
      transparent 70%);

  top: -80px;
  right: -80px;
}

/* BADGE */

.location-badge {
  display: inline-block;

  background: #9c5015;
  color: #ffffff;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 0.78rem;
  font-weight: 600;

  letter-spacing: 1px;

  margin-bottom: 18px;

  box-shadow:
    0 8px 20px rgba(15, 136, 167, 0.25);
}

/* TITLE */

.location-card h3 {
  font-family: "Playfair Display", serif;

  font-size: 2rem;

  color: #111111;

  margin-bottom: 18px;

  line-height: 1.1;
}

/* ADDRESS */

.location-text {
  font-size: 0.95rem;

  color: #555555;

  line-height: 1.8;

  margin-bottom: 24px;
}

/* MAP */

.map-wrapper {
  width: 100%;

  height: 260px;

  overflow: hidden;

  border-radius: 28px;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08);

  margin-bottom: 24px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;

  border: 0;
}

/* BUTTON */

.location-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  width: 100%;

  background: #9c5015;
  color: #ffffff;

  text-decoration: none;

  padding: 15px 20px;

  border-radius: 20px;

  font-size: 0.95rem;
  font-weight: 600;

  transition: 0.35s ease;

  box-shadow:
    0 10px 25px rgba(15, 136, 167, 0.25);
}

.location-btn:hover {
  transform:
    translateY(-4px) scale(1.01);

  background: #9c5015;
}

/* =========================
   MOBILE
========================= */

@media(max-width:560px) {

  .location-section {
    margin: -80px auto 160px;
  }

  .location-card {
    padding: 24px 20px;

    border-top-left-radius: 45px;
    border-bottom-right-radius: 45px;
  }

  .location-card h3 {
    font-size: 1.5rem;
  }

  .location-text {
    font-size: 0.9rem;
  }

  .map-wrapper {
    height: 220px;

    border-radius: 22px;
  }

  .location-btn {
    font-size: 0.9rem;

    padding: 14px 18px;
  }
}

/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
  width: 100%;
  max-width: 420px;

  margin: 10px auto 25px;

  animation: aboutCardUp 1.2s ease forwards;
}

/* HEADER */

.gallery-header {
  margin-bottom: 22px;
}

.gallery-header span {
  display: inline-block;

  background: #9c5015;
  color: #ffffff;

  padding: 8px 16px;

  border-radius: 30px;

  font-size: 0.75rem;
  font-weight: 600;

  letter-spacing: 1px;

  margin-bottom: 14px;

  box-shadow:
    0 8px 20px rgba(15, 136, 167, 0.25);
}

.gallery-header h3 {
  font-family: "Playfair Display", serif;

  font-size: 2rem;

  color: #111111;

  line-height: 1.2;
}

/* GRID */

.gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 25px;
}

/* CARD */

.gallery-card {
  position: relative;

  overflow: hidden;

  border-top-left-radius: 55px;
  border-bottom-right-radius: 55px;

  background: #ffffff;

  min-height: 220px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

/* LARGE CARD */

.gallery-card.large {
  grid-column: span 2;

  min-height: 300px;
}

/* WIDE CARD */

.gallery-card.wide {
  grid-column: span 2;

  min-height: 240px;
}

/* IMAGE */

.gallery-card img {
  width: 100%;
  height: 100%;

  object-fit: fill;

  display: block;

  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

/* OVERLAY */

.gallery-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.28),
      transparent);

  opacity: 0;

  transition: 0.45s ease;

  z-index: 2;
}

/* HOVER */

.gallery-card:hover {
  transform:
    translateY(-8px) scale(1.02);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.14);
}

.gallery-card:hover img {
  transform: scale(1.08);

  filter: brightness(1.05);
}

.gallery-card:hover::before {
  opacity: 1;
}

/* FLOAT ANIMATION */

.gallery-card {
  animation: galleryFloat 5s ease-in-out infinite;
}

.gallery-card:nth-child(2) {
  animation-delay: 1s;
}

.gallery-card:nth-child(3) {
  animation-delay: 2s;
}

.gallery-card:nth-child(4) {
  animation-delay: 3s;
}

.gallery-card:nth-child(5) {
  animation-delay: 4s;
}

@keyframes galleryFloat {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================
   TABLET
========================= */

@media(max-width:768px) {

  .gallery-section {
    max-width: 100%;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:560px) {

  .gallery-section {
    margin-bottom: 20px;
  }

  .gallery-header h3 {
    font-size: 1.6rem;
  }

  .gallery-grid {
    gap: 25px;
  }

  .gallery-card {
    min-height: 180px;

    border-top-left-radius: 38px;
    border-bottom-right-radius: 38px;
  }

  .gallery-card.large {
    min-height: 240px;
  }

  .gallery-card.wide {
    min-height: 200px;
  }
}

/* SPACE BETWEEN GALLERY IMAGES */

.gallery-section .gallery-grid {
  margin-bottom: 20px;
}

.gallery-section .gallery-grid:last-child {
  margin-bottom: 0;
}