/* Base Reset */
@font-face {
  font-family: 'Batangas';
  src: url('fonts/BatangasBold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #5c433e;
  overflow-x: hidden;
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s ease-out;
  background-color: #2a2a2a;
  min-height: 200px;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* TOP SOCIAL BAR */
.top-social-bar {
  background: linear-gradient(90deg, #3b2a24, #1e1c1c);
  padding: 6px 0;
}

.top-social-bar .social-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 25px;
}

.top-social-bar a {
  color: #f4c86a;
  margin-left: 15px;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.top-social-bar a:hover {
  color: #fff;
  text-shadow: 0 0 8px #f4c86a;
  transform: scale(1.2);
}

/* Center icons on mobile */
@media (max-width: 768px) {
  .top-social-bar .social-container {
    justify-content: center;
    padding: 0;
  }
}

/* HEADER STYLING */
header {
  background: #fff5ee;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1200;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}




.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}



.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Batangas', sans-serif;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #d8a55f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: logoTextShine 5s infinite ease-in-out;
}

@keyframes logoTextShine {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ffedbf;
  background: rgba(0,0,0,0.3);
  padding: 10px 20px;
  border-radius: 10px;
  animation: fadeInUp 1.4s ease-out both;
}


 

.hero-book-btn {
  position: relative;
  display: inline-block;
  padding: 14px 34px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 40px;
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  color: #59413d;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  animation: bounceBtn 1s infinite ease-in-out; /* 🔥 bounce added */
}

.hero-book-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg, 
    transparent, 
    rgba(255,255,255,0.7), 
    transparent
  );
  transform: skewX(-20deg);
  animation: shimmer 1.0s infinite;
}

/* shimmer line */
@keyframes shimmer {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* bounce effect */
@keyframes bounceBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* HEADER FIXED TOP */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: none;
  padding: 15px 0;
  transition: background 0.3s ease, padding 0.3s ease;
}

header.sticky {
  background: #1c1c1c;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1201;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  border-radius: 50%;
}

.book-btn {
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  padding: 10px 20px;
  color: #59413d;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: pulseBtn 2s infinite;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  white-space: nowrap;
  z-index: 1202;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  line-height: 1;
}


.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1301;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #59413d;
  border-radius: 2px;
}

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(45, 23, 11, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
  z-index: 1300;
  opacity: 0;
  padding: 80px 20px 40px;
  gap: 8px;
}

.navbar.active {
  background-color: #fff5ee;
  width: 70%;
  transform: translateX(0);
  opacity: 1;
}

.navbar a {
  color: #c59b54;;
  font-size: 1rem;
  font-weight: bold;
  padding: 6px 16px;
  margin: 1px 0;
  border-radius: 5px;
  text-decoration: none;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.navbar a:hover {
  color: #fff;
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.close-btn {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 2rem;
  color: #59413d;
  cursor: pointer;
  z-index: 1401;
}

@media screen and (max-width: 768px) {
  .hero {
    height: 50%;
    flex-direction: column;
    position: relative;
  }

  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .video-container video {
    width: 100vw;
    height: 100%;
    object-fit: cover;
  }


  .hero-content {
    margin-top: 10px;
    position: relative;
    z-index: 3;
    padding: 70px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 10px 15px;
    margin-bottom: 20px;
  }

  .hero-content .hero-book-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}



@media (min-width: 769px) {
  .menu-toggle, .close-btn {
    display: none;
  }


  .navbar {
    transform: none !important;
    position: static;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: transparent;
    height: auto;
    opacity: 1 !important;
    padding: 0;
    gap: 0;
  }

  .navbar a {
    font-size: 1rem;
    margin: 0 15px;
    color: #c59b54;
    background: none;
    padding: 0;
  }

  .book-btn {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
  }
}

/* ABOUT FEATURES SECTION */

/* ABOUT SECTION */

.about-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  font-size: 2.8rem;
  font-family: 'Batangas', sans-serif;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #d8a55f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headingPulse 3s infinite alternate;
}


@keyframes headingPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.highlight-text {
  color: #59413d; /* Different solid color */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

@keyframes headingShine {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}
.font-text{
  font-family: 'Batangas', sans-serif;
}

.about-dark-section {
  background: #1c1c1c;
  color: #fff;
  padding: 10px 20px;
}

section[id] {
  scroll-margin-top: 100px; /* Adjust to your sticky header height */
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-line {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFD700;
  margin: 20px 0;
  text-align: center;
  width: 100%;
  animation: fadeInUp 1.5s ease-out forwards;
}

.highlight-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #f6d365, #fda085);
  box-shadow: 0 0 8px rgba(253, 160, 133, 0.6);
  border-radius: 2px;
  animation: underlineGlow 2.5s infinite alternate;
}

@keyframes underlineGlow {
  0% {
    box-shadow: 0 0 5px rgba(253, 160, 133, 0.3);
  }
  100% {
    box-shadow: 0 0 15px rgba(253, 160, 133, 0.9);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.tagline {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFD700;
  text-align: center;
  margin-top: 20px;
}

.tagline span {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
}

.tagline span:nth-child(1) { animation-delay: 0.3s; }
.tagline span:nth-child(2) { animation-delay: 1s; }
.tagline span:nth-child(3) { animation-delay: 1.7s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tagline-bg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: linear-gradient(-45deg, #4e2a2a, #3d1f1f, #5c3b3b, #2e1d1d);
  background-size: 400% 400%;
  animation: bgAnimate 10s ease infinite;
  border-radius: 12px;
  overflow: hidden;
}

@keyframes bgAnimate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.about-text {
  flex: 1 1 50%;
  padding-left: 35px;
  padding-right: 20px;
}

.about-text h2 {
  font-family: 'Batangas', sans-serif;
  color: #c59b54;
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.about-text ul li::before {
  content: '–';
  color: #c59b54;
  position: absolute;
  left: 0;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 100px;
  box-shadow: 20px 20px 20px rgba(255, 215, 0, 0.2);
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
img[loading="lazy"].loaded {
  opacity: 1;
}


/* Flip Animation Styles */
.flip-left-anim {
  animation: flipLeft 2.5s ease forwards;
}

.flip-right-anim {
  animation: flipRight 2.5s ease forwards;
}


@keyframes flipLeft {
  0% {
    transform: perspective(800px) rotateY(-90deg);
    opacity: 0;
  }
  100% {
    transform: perspective(800px) rotateY(0);
    opacity: 1;
  }
}

@keyframes flipRight {
  0% {
    transform: perspective(800px) rotateY(90deg);
    opacity: 0;
  }
  100% {
    transform: perspective(800px) rotateY(0);
    opacity: 1;
  }
}

.animated-line {
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #f4c86a);
  background-size: 200% auto;
  margin: 30px auto;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(244, 200, 106, 0.7);
  transition: width 1s ease, background-position 1s linear;
}

.animated-line.active {
  width: 80%;
  animation: moveGradient 1s infinite linear;
}

@keyframes moveGradient {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}




/* Responsive */
@media (min-width: 769px) {
  .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .about-text {
    flex: 1 1 50%;
    padding-right: 40px;
  }

  .about-image {
    flex: 1 1 45%;
  }

  .about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 100px;
  }
}




/* Features Section */
.features-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 30px 20px;

}

.feature-box {
  width: 300px;
  height: 420px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow:  0 10px 20px rgba(255, 198, 111, 0.7);
  animation: glowEffect 3s ease-in-out infinite alternate;
  transition: transform 0.5s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.feature-box:nth-child(1) {
  background-image: url('images/img2.jpg');
}

.feature-box:nth-child(2) {
  background-image: url('images/pic2.jpg');
}

.feature-box:nth-child(3) {
  background-image: url('images/pic3.jpg');
}

.feature-box:nth-child(4) {
  background-image: url('images/pic4.jpg');
}

.feature-box:hover {
  transform: scale(1.05);
}

.feature-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
  transition: background 0.3s ease;
}

.feature-box:hover .feature-overlay {
  background: rgba(0,0,0,0.6);
}

.feature-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 20px;
}

.feature-content h3 {
  font-size: 1.5rem;
  font-family: 'Batangas', sans-serif;
}

.feature-content p {
  font-size: 1rem;
  margin-top: 10px;
}

@keyframes glowEffect {
  from { box-shadow: 0 0 15px rgba(255, 198, 111, 0.5); }
  to { box-shadow: 0 0 35px rgba(255, 198, 111, 1); }
}

/* Responsive */
@media(max-width: 768px) {
  .features-section {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    left: 5%;
    width: 90%;
    height: 350px;
  }

  .about-heading {
    font-size: 2rem;
  }

  .about-intro {
    font-size: 1.2rem;
  }
}

.gradient-highlight {
  background: linear-gradient(90deg, #f6d365, #fda085);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
  font-style: italic;
  text-shadow: 0 0 8px rgba(253, 160, 133, 0.4);
}


/* Features Section Animated Bubbles */
.cta-section{
  top: 10px;
}
.features-section {
  position: relative;

  overflow: hidden;
}

/* .features-section::before,
.features-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(244, 200, 106, 0.2);
  animation: bubbleAnim 10s infinite alternate;
  z-index: 0;
}

.features-section::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.features-section::after {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -80px;
} */

@keyframes bubbleAnim {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.2); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Make Feature Boxes Slightly Shake on Hover */
.feature-box:hover {
  animation: slightShake 0.8s infinite alternate;
}

@keyframes slightShake {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* Book Now Button (More Animated and Glowing) */

.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;

}

.final-book-btn {
  display: inline-block;
  text-align: center;
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  color: #59413d;
  margin-top: 30px; 
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  animation: glowPulse 1.5s infinite alternate, floatingBtn 3s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.final-book-btn:hover {
  transform: scale(1.1) rotate(2deg);
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 20px rgba(255,198,111,0.5); }
  100% { box-shadow: 0 0 40px rgba(255,198,111,1); }
}

@keyframes floatingBtn {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
 

/* gallw */
.gallery-section {
  padding: 70px 30px;
  background-color: #1b1a1a;
  text-align: center;
}

.gallery-title {
  font-size: 3rem;
  font-family: 'Batangas', sans-serif;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #d8a55f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulseHeading 3s infinite alternate;
}

.gallery-intro {
  max-width: 800px;
  margin: auto;
  animation: fadeUp 1.2s ease forwards;
}

.gallery-highlight-heading {
  color: #f4c86a;
  font-size: 2rem;
  margin-bottom: 10px;
  animation: glowText 2s infinite alternate;
}

.gallery-subtext {
  color: #d1c7b3;
  font-size: 1rem;
  margin-top: 0;
}

.gallery-flex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.gallery-block {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  animation: floatUp 1s ease-out forwards;
  transform: translateY(30px);
  opacity: 0;
}

.gallery-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.6s ease;
}

.gallery-block:hover img {
  transform: scale(1.1) rotate(0.5deg);
  filter: brightness(1.2);
}

/* Animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowText {
  0% { text-shadow: 0 0 5px #f4c86a; }
  100% { text-shadow: 0 0 15px #f4c86a; }
}

@keyframes floatUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {

  .gallery-highlight-heading {
    font-size: 1.3rem;
  }
  .gallery-subtext {
    font-size: 0.95rem;
  }
}

.portfolio-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
  border-radius: 20px;
  text-align: center;
  color: #fff0d1;
  min-width: 150px;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  animation: borderGlow 3s linear infinite;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.stat-card i {
  font-size: 2rem;
  color: #f4c86a;
  margin-bottom: 10px;
}

.stat-card .counter {
  font-size: 2rem;
  font-weight: bold;
  color: #f4c86a;
}

.stat-card .plus {
  font-size: 1.5rem;
  color: #f4c86a;
}

.stat-card p {
  margin-top: 5px;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .portfolio-stats {
    gap: 20px;
  }
  .stat-card {
    flex: 1 1 100px;
  }
}


.services-section {
  padding: 10px 20px;
  background: #1c1c1c;
  text-align: center;
}

.services-title {
  font-size: 3rem;
  font-family: 'Batangas', sans-serif;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #d8a55f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulseHeading 3s infinite alternate;
}

.services-description {
  color: #ffedbf;
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 40px;
  animation: fadeInUp 2s ease-in-out both;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  animation: fadeInCard 1s ease-out both;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 30px rgba(255, 198, 111, 0.4);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  color: #fff8e6;
  padding: 15px 10px;
  font-size: 1.2rem;
  font-family: 'Batangas', sans-serif;
  background: rgba(0,0,0,0.3);
  margin: 0;
}

@keyframes fadeInCard {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Advanced Service Card Flip Style --- */
.service-card {
  perspective: 1000px;
  height: 300px;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.service-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1s;
  transform-style: preserve-3d;
}

.service-card:hover .service-inner {
  transform: rotateY(180deg);
}

.service-front, .service-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

.service-front {
  background: rgba(255,255,255,0.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.service-front img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-front h3 {
  color: #fff8e6;
  padding: 15px 10px;
  font-size: 1.2rem;
  font-family: 'Batangas', sans-serif;
  background: rgba(0,0,0,0.3);
  margin: 0;
}

.service-back {
  background: linear-gradient(145deg, #f4c86a, #a77d45);
  color: #1c1c1c;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(255, 198, 111, 0.5);
}

.service-back p {
  font-family: 'Raleway', sans-serif;        /* modern clean */
  font-size: 1rem;
  line-height: 1.4;

}

.testimonial-section {
  background: #282424;
  color: #fff0d1;
  padding: 200px 20px;
  text-align: center;
}

.testimonial-title {
  font-size: 3rem;
  margin-top: -20px;
  margin-bottom: 30px;
  font-family: 'Batangas', sans-serif;
  background: linear-gradient(90deg, #f4c86a, #a77d45, #d8a55f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-subtext{
  font-family: 'Great Vibes', cursive;
   color: #f4c86a;
  letter-spacing: 1px;   /* spacing between letters */
  word-spacing: 3px; 
  font-size: 1.4rem;
  margin-bottom: 10px;
  animation: glowText 2s infinite alternate;
}

.testimonial-carousel .testimonial-card {
  background: linear-gradient(145deg, #3a2e2e, #1e1b1b);
  border-radius: 20px;
  padding: 30px 25px;
  margin: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.testimonial-carousel .testimonial-card:hover {
  transform: scale(1.03);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.client-name {
  font-weight: bold;
  color: #ffe6b8;
}

@keyframes glowText {
  0% { text-shadow: 0 0 8px #f4c86a; }
  100% { text-shadow: 0 0 20px #f4c86a; }
}


.testimonial-section {
  background: #282424;
  color: #fff0d1;
  padding: 200px 20px;
  text-align: center;
}


/* --- Optimized Mobile View for Testimonial Section --- */
@media (max-width: 600px) {
  .testimonial-section {
    padding: 80px 15px;
  }

  .testimonial-title {
    font-size: 2.7rem;
    margin-bottom: 20px;
  }

  .testimonial-subtext {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .testimonial-carousel .testimonial-card {
    padding: 20px 15px;
    margin: 10px 0;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .client-name {
    font-size: 1rem;
  }
}

.contact-section {
  background: #1c1c1c;
  padding: 10px 20px;
  text-align: center;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px;
  color: #fff;
  text-align: center;
  max-width: 350px;
  margin: 40px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(0) rotateY(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.contact-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 12px 30px rgba(255, 0, 128, 0.3);
}

/* Fade-up entry animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.contact-title {
  font-size: 2.2rem;
  font-family: 'Batangas', sans-serif;
  margin-bottom: 20px;
  color: #f4c86a;
}

.contact-item {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #fff0d1;
}

.contact-item i {
  margin-right: 10px;
  color: #f4c86a;
}

@keyframes glow {
  0% { box-shadow: 0 0 5px #f4c86a, 0 0 10px #a77d45; }
  50% { box-shadow: 0 0 20px #f4c86a, 0 0 40px #a77d45; }
  100% { box-shadow: 0 0 5px #f4c86a, 0 0 10px #a77d45; }
}

.call-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  background: linear-gradient(135deg, #f4c86a, #a77d45);
  color:  #4e1515;
  border-radius: 0px;
  text-decoration: none;
  font-weight: bold;
  animation: glow 2s infinite;
  transition: transform 0.3s;
}

.call-btn:hover {
  transform: scale(1.1);
}




.contact-extra {
  max-width: 600px;
  margin: 0 auto;
}

.opening-hours {
  color: #fff0d1;
  margin-bottom: 20px;
}
.opening-hours h3 {
  color: #f4c86a;
  margin-bottom: 5px;
}

.social-links a {
  color: #f4c86a;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-links a:hover {
  color: #fff;
  transform: scale(1.2);
}

.map-container {
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
}

/* Mobile */
@media (max-width: 600px) {
  .contact-card {
    padding: 20px;
  }
  .contact-title {
    font-size: 1.8rem;
  }
}

