@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #5a3e36;
  --secondary-color: #d4a373;
  --accent-color: #e07a5f;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --background-light: #faf6f0;
  --success-color: #4caf50;
}
/* Apply to all headings */
h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.section-title h2,
.navbar-brand,
.service-card h4,
.video-title {
  font-family: "Nunito", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  letter-spacing: -0.5px; /* Tightens spacing for larger text */
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(90, 62, 54, 0.1);
  z-index: 9999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--accent-color),
    #c1574a
  );
  background-size: 200% 100%;
  animation: gradient-flow 3s ease infinite;
  transition: width 0.1s ease-out;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(90, 62, 54, 0.3);
}

@keyframes gradient-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Pulsing effect when near end */
.scroll-progress-bar.near-end {
  animation: pulse-end 0.5s ease-in-out;
}

@keyframes pulse-end {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(90, 62, 54, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(90, 62, 54, 0.6);
  }
}

/* Navigation */
.navbar {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    #7a5a4f,
    var(--secondary-color)
  );
  padding: 0.15rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
  padding: 0.15rem 0;
  backdrop-filter: blur(10px);
  background: rgba(90, 62, 54, 0.95);
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: bold;
  color: white !important;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  color: white !important;
  font-weight: 600;
  margin: 0 0.5rem;
  position: relative;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* Navbar Social Media Icons */
.navbar-social {
  align-items: center;
  margin-left: 1rem;
}

.navbar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-social-link.tiktok {
  background: rgba(0, 0, 0, 0.8);
}

.navbar-social-link.youtube {
  background: rgba(255, 0, 0, 0.8);
}

.navbar-social-link:hover {
  transform: translateY(-2px) scale(1.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
}

.navbar-social-link.tiktok:hover {
  background: rgba(0, 0, 0, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.navbar-social-link.youtube:hover {
  background: rgba(255, 0, 0, 1);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Mobile navbar social styling */
.navbar-social-mobile {
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1rem !important;
  padding-top: 1rem;
}

/* Hero Section — Full-bleed image with side gradient */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #2c2018;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1; 
}

.hero-bg img { 
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 23%;
} 

/* Gradient overlay: solid dark-left, fading to transparent-right */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(44, 32, 24, 0.92) 0%,
      rgba(44, 32, 24, 0.80) 25%,
      rgba(44, 32, 24, 0.50) 50%,
      rgba(44, 32, 24, 0.15) 75%,
      transparent 100%
    );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
  letter-spacing: -1px;
  line-height: 1.15;
}

.highlight {
  color: var(--accent-color);
  background: none;
  -webkit-text-fill-color: var(--accent-color);
}

.hero .lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
  line-height: 1.8;
}

.hero .hero-tagline {
  display: inline-block;
  background: rgba(224, 122, 95, 0.15);
  border: 1px solid rgba(224, 122, 95, 0.3);
  color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

/* Hero CTA Button */
.btn-hero {
  background: var(--accent-color);
  border: none;
  color: white;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(224, 122, 95, 0.4);
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 35px rgba(224, 122, 95, 0.5);
  color: white;
  text-decoration: none;
  background: #d46c52;
}

.btn-hero:active {
  transform: translateY(-1px) scale(1.02);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 46.92%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-align: center;
  animation: float-bounce 2s ease-in-out infinite;
}

.hero-scroll-hint i {
  display: block;
  font-size: 1.2rem;
  margin-top: 0.3rem;
}

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  font-weight: 700;
}

.section-title h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--secondary-color),
    var(--accent-color)
  );
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  border-radius: 2px;
}

.section-title .lead {
  color: var(--text-light);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-me {
  background: var(--background-light);
}

.about {
  background: white;
}

.about-content {
  background: var(--background-light);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-color);
}

.about-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}
/* Approach Cards */
.approach-card {
  display: flex;
  align-items: flex-start;
  padding: 1.2rem;
  background: white;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 3px solid var(--secondary-color);
  height: 100%;
}

.approach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-left-color: var(--accent-color);
}

.approach-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Services Section */
.services {
  background: var(--background-light);
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--accent-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-card.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered timing */
.service-card.reveal:nth-child(1) {
  transition-delay: 0s;
}
.service-card.reveal:nth-child(2) {
  transition-delay: 0.15s;
}
.service-card.reveal:nth-child(3) {
  transition-delay: 0.3s;
}
.service-card.reveal:nth-child(4) {
  transition-delay: 0.45s;
}
.service-card.reveal:nth-child(5) {
  transition-delay: 0.6s;
}

/* Enhanced hover after animation */
.service-card.reveal.active:hover {
  transform: translateY(-10px) scale(1.03);
  transition: all 0.3s ease;
}

/* Featured/Most Recommended Service Card */
.service-card.featured {
  background: linear-gradient(
    135deg,
    rgba(90, 62, 54, 0.03),
    rgba(224, 122, 95, 0.05)
  );
  border: 2px solid var(--accent-color);
  box-shadow: 0 15px 50px rgba(90, 62, 54, 0.2);
  transform: scale(1.02);
  position: relative;
  overflow: hidden;
}

.service-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(90, 62, 54, 0.02),
    rgba(224, 122, 95, 0.03)
  );
  border-radius: 20px;
  z-index: 1;
}

.service-card.featured > * {
  position: relative;
  z-index: 2;
}

.service-card.featured:hover {
  transform: scale(1.02) translateY(-15px);
  box-shadow: 0 20px 60px rgba(90, 62, 54, 0.25);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
}

.service-card.featured .service-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  box-shadow: 0 8px 25px rgba(90, 62, 54, 0.3);
  transform: scale(1.1);
}

.service-card.featured:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
}

/* Featured badge styling */
.service-card.featured .badge {
  background: linear-gradient(
    135deg,
    var(--success-color),
    #66bb6a
  ) !important;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  }
  50% {
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  }
}

/* Gallery Section Styles */
.gallery {
  background: radial-gradient(
      ellipse at center,
      rgba(224, 122, 95, 0.06) 0%,
      transparent 70%
    ),
    var(--background-light);
}

.video-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(224, 122, 95, 0.15);
}

.video-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.video-content {
  padding: 1.5rem;
  text-align: center;
}

.video-title {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.video-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-container {
    height: 220px;
  }

  .video-content {
    padding: 1rem;
  }
}

/* Contact Section */
.contact {
  background: var(--background-light);
}

/* 2. Contact Buttons - Ripple Effect */
.btn-contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border: none;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
}

.btn-contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-contact:hover::before {
  width: 300px;
  height: 300px;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 62, 54, 0.4);
  color: white;
}
.contact-info {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--accent-color);
}

/* Contact Form */
.contact-form-card {
  background: white;
  padding: 2.5rem 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--primary-color);
  margin-top: 2rem;
}

.contact-form-card h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-form-card .form-subtitle {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.contact-form-card .form-group {
  margin-bottom: 1.25rem;
}

.contact-form-card label {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  display: block;
}

.contact-form-card label .optional-tag {
  font-weight: 400;
  color: #aaa;
  font-size: 0.8rem;
}

.contact-form-card .form-control {
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fdfbf9;
}

.contact-form-card .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.15);
  outline: none;
  background: white;
}

.contact-form-card .form-control::placeholder {
  color: #bbb;
}

.contact-form-card textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit-form {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  color: white;
  padding: 14px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-submit-form::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit-form:hover::before {
  width: 300px;
  height: 300px;
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 62, 54, 0.4);
  color: white;
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 1.75rem 1.5rem;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: var(--background-light);
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
}

#phone-icon,
#envelope-icon,
#map-icon,
#socialmedia-icon {
  margin-right: 20px;
}
/* Social Media Links */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.social-link.tiktok {
  background: #000000;
}

.social-link.youtube {
  background: #ff0000;
}

.social-link:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: white;
}

.social-link.tiktok:hover {
  background: #2c2c2c;
}

.social-link.youtube:hover {
  background: #cc0000;
}

.social-link i {
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #3d2a24, var(--primary-color));
  color: white;
  text-align: center;
  padding: 2.5rem 0;
}

footer p,
footer small {
  opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Directional reveal variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Staggered timeline items */
.about-timeline-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-timeline-item.active {
  opacity: 1;
  transform: translateX(0);
}

.about-timeline-item:nth-child(1) { transition-delay: 0s; }
.about-timeline-item:nth-child(2) { transition-delay: 0.15s; }
.about-timeline-item:nth-child(3) { transition-delay: 0.3s; }
.about-timeline-item:nth-child(4) { transition-delay: 0.45s; }

/* Parallax-like depth on about image */
.about-image-placeholder img {
  transition: transform 0.4s ease;
}

.about-image-placeholder:hover img {
  transform: scale(1.03);
}

/* Approach card icon spin on hover */
.approach-card:hover .approach-icon {
  transform: scale(1.1) rotate(360deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* Contact items stagger */
.contact-item:nth-child(1) { transition-delay: 0s; }
.contact-item:nth-child(2) { transition-delay: 0.1s; }
.contact-item:nth-child(3) { transition-delay: 0.2s; }
.contact-item:nth-child(4) { transition-delay: 0.3s; }

/* Staggered video card reveals */
.video-card.reveal:nth-child(odd) {
  transform: translateY(40px) rotate(-1deg);
}

.video-card.reveal:nth-child(even) {
  transform: translateY(40px) rotate(1deg);
}

.video-card.reveal.active {
  transform: translateY(0) rotate(0deg);
}

.video-card.reveal.active:hover {
  transform: translateY(-8px);
}

/* Gradient text for hero highlight */
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .hero .lead {
    font-size: 1.05rem;
  }

  .hero-bg::after {
    background:
      linear-gradient(
        to top,
        rgba(44, 32, 24, 0.95) 0%,
        rgba(44, 32, 24, 0.75) 40%,
        rgba(44, 32, 24, 0.40) 70%,
        rgba(44, 32, 24, 0.20) 100%
      );
  }

  .hero-content {
    padding: 2rem 0;
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 4rem;
  }

  .hero-bg img {
    object-position: center top;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .btn-floating {
    width: 56px;
    height: 56px;
  }

  .navbar-social-link {
    width: 48px;
    height: 48px;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Action Button */
.btn-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(90, 62, 54, 0.4);
  animation: float-bounce 2s ease-in-out infinite;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-floating:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(90, 62, 54, 0.5);
  animation-play-state: paused;
}

@keyframes float-bounce {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Instagram navbar icon */
.navbar-social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.navbar-social-link.instagram:hover {
  background: linear-gradient(45deg, #e08020, #d55830, #c81838, #b81858, #a81078);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #e08020, #d55830, #c81838, #b81858, #a81078);
}

/* How I Work Section */
.how-i-work {
  padding: 5rem 0;
  background: white;
}

.how-i-work-card {
  background: var(--background-light);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 3px solid var(--secondary-color);
}

.how-i-work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-left-color: var(--accent-color);
}

.how-i-work-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 0;
  background: white;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: white;
  border-radius: 16px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 3px solid var(--secondary-color);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.credential-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-left-color: var(--accent-color);
}

.credential-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.credential-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.credential-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.credential-qr {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.credential-qr .qr-code {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: contain;
}

.credential-qr small {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Partner Section */
.partner-section {
  padding: 5rem 0;
  background: radial-gradient(
      ellipse at center,
      rgba(224, 122, 95, 0.06) 0%,
      transparent 70%
    ),
    white;
}

.partner-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.partner-treats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}

.partner-treats-list li {
  background: white;
  border: 1px solid rgba(224, 122, 95, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
}

.partner-offer {
  background-color: #faf6f0;
  border: 1px solid #d4a373;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
}

.partner-offer-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.partner-offer-header h6 {
  margin: 0;
  color: #d4a373;
  font-size: 0.92rem;
  font-weight: 700;
}

.partner-offer-text {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.partner-offer-text strong {
  font-weight: 700;
}

.partner-offer-code-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 163, 115, 0.15);
  border: 1.5px dashed #d4a373;
  border-radius: 8px;
  padding: 0.4rem 0.85rem;
}

.partner-offer-code-row span {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  font-family: monospace;
}

.partner-offer-code-row small {
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 500;
}

.partner-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.partner-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 62, 54, 0.4);
  color: white;
}

@media (max-width: 767.98px) {
  .partner-offer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Service card detail toggle */
.btn-detail-toggle {
  background: none;
  border: 1px solid var(--accent-color);
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-detail-toggle:hover {
  background: var(--accent-color);
  color: white;
}

.btn-detail-toggle[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

.btn-detail-toggle .fa-chevron-down {
  transition: transform 0.3s ease;
  font-size: 0.7rem;
}

.service-detail-content {
  border-top: 1px solid rgba(90, 62, 54, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.service-detail-content h6 {
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.service-detail-content ul {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.service-detail-content ul li {
  margin-bottom: 0.3rem;
}
