/* ===== RESET & BASE ===== */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0e0b0a;
  color: #e8e0d8;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1a1513;
}
::-webkit-scrollbar-thumb {
  background: #b58a6b;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d4a889;
}

/* ===== NAVBAR ===== */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-wrapper.scrolled {
  background: rgba(14, 11, 10, 0.92);
  backdrop-filter: blur(18px);
  padding: 0.4rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.navbar {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #b58a6b, #d4a889);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #0e0b0a;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
}

.logo-text .brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #f0e8e0;
}
.logo-text .brand span {
  color: #b58a6b;
}
.logo-text .tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: #b58a6b;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.8;
}
.logo-text .tag i {
  margin-right: 4px;
  font-size: 0.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-links li a {
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #b8b0a8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.nav-links li a i {
  font-size: 0.8rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #f0e8e0;
  background: rgba(181, 138, 107, 0.12);
}

.nav-links li a.active i {
  opacity: 1;
  color: #b58a6b;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #b58a6b;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 4px;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 60%;
}

.btn-cta {
  background: linear-gradient(135deg, #b58a6b, #d4a889);
  color: #0e0b0a;
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(181, 138, 107, 0.25);
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(181, 138, 107, 0.4);
}

.btn-cta-desktop {
  display: flex;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #e8e0d8;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   ===== HERO WITH SLIDESHOW =====
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 4rem 4rem;
  max-width: 1440px;
  margin: 0 auto;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

/* ----- SLIDESHOW BACKGROUND ----- */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-slideshow .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 11, 10, 0.7);
  z-index: 1;
}

/* ----- HERO CONTENT (above slideshow) ----- */
.hero > div:first-child,
.hero > .hero-visual {
  position: relative;
  z-index: 2;
}

.hero > div:first-child {
  flex: 1.2;
  animation: fadeUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14, 11, 10, 0.7);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b58a6b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(181, 138, 107, 0.15);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #f0e8e0;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero h1 span {
  color: #b58a6b;
  position: relative;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(181, 138, 107, 0.25);
  border-radius: 4px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 540px;
  color: #d8d0c8;
  margin-bottom: 2rem;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero p strong {
  color: #f0e8e0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: linear-gradient(135deg, #b58a6b, #d4a889);
  color: #0e0b0a;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(181, 138, 107, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(181, 138, 107, 0.45);
}

.btn-secondary {
  background: rgba(14, 11, 10, 0.6);
  backdrop-filter: blur(10px);
  color: #f0e8e0;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid rgba(181, 138, 107, 0.3);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  border-color: #b58a6b;
  background: rgba(181, 138, 107, 0.15);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
}
.hero-stats .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #f0e8e0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-stats .stat-number span {
  color: #b58a6b;
  font-size: 1.2rem;
}
.hero-stats .stat-label {
  font-size: 0.75rem;
  color: #c8c0b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.2s forwards;
  opacity: 0;
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(14, 11, 10, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(181, 138, 107, 0.12);
  border-radius: 32px;
  padding: 2.5rem;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.service-grid-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.service-grid-icons .item {
  background: rgba(181, 138, 107, 0.06);
  border-radius: 16px;
  padding: 1rem 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.service-grid-icons .item:hover {
  background: rgba(181, 138, 107, 0.12);
  border-color: rgba(181, 138, 107, 0.15);
  transform: scale(1.04);
}
.service-grid-icons .item i {
  font-size: 1.6rem;
  color: #b58a6b;
  display: block;
  margin-bottom: 0.3rem;
}
.service-grid-icons .item span {
  font-size: 0.65rem;
  font-weight: 500;
  color: #b8b0a8;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #f0e8e0;
  text-align: center;
  font-weight: 600;
}
.card-subtitle {
  text-align: center;
  font-size: 0.8rem;
  color: #8a827a;
  margin-top: 0.3rem;
}
.card-subtitle i {
  color: #b58a6b;
  margin-right: 4px;
}

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(181, 138, 107, 0.1);
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #b58a6b;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #f0e8e0;
  margin-bottom: 0.8rem;
}
.section-header h2 span {
  color: #b58a6b;
}
.section-header p {
  color: #b8b0a8;
  font-size: 1.05rem;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 4rem 2rem 5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.service-category {
  margin-bottom: 4rem;
}
.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(181, 138, 107, 0.08);
}
.category-header .cat-icon {
  width: 44px;
  height: 44px;
  background: rgba(181, 138, 107, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #b58a6b;
}
.category-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #f0e8e0;
}
.category-header h3 span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #8a827a;
  margin-left: 0.5rem;
}

.service-grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  background: rgba(26, 21, 19, 0.5);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(181, 138, 107, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(181, 138, 107, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  background: rgba(26, 21, 19, 0.8);
}

.service-card .card-image {
  height: 160px;
  overflow: hidden;
}
.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .card-image img {
  transform: scale(1.06);
}

.service-card .card-body {
  padding: 1.2rem 1.2rem 1.2rem;
}
.service-card .card-body .name {
  font-weight: 700;
  font-size: 1rem;
  color: #f0e8e0;
  margin-bottom: 0.2rem;
}
.service-card .card-body .desc {
  font-size: 0.8rem;
  color: #8a827a;
  margin-bottom: 1rem;
}
.service-card .card-actions {
  display: flex;
  gap: 0.5rem;
}
.service-card .card-actions a {
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.btn-book {
  background: #b58a6b;
  color: #0e0b0a;
}
.btn-book:hover {
  background: #d4a889;
  transform: scale(1.04);
}
.btn-call {
  background: rgba(181, 138, 107, 0.08);
  color: #b8b0a8;
  border: 1px solid rgba(181, 138, 107, 0.1);
}
.btn-call:hover {
  background: rgba(181, 138, 107, 0.15);
  color: #f0e8e0;
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 4rem 2rem 5rem;
  background: rgba(181, 138, 107, 0.02);
  max-width: 1440px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 280px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  font-weight: 600;
  color: #f0e8e0;
  font-size: 1rem;
  padding: 0.3rem 1rem;
  background: rgba(14, 11, 10, 0.5);
  backdrop-filter: blur(6px);
  border-radius: 30px;
  border: 1px solid rgba(181, 138, 107, 0.15);
}

/* ===== ABOUT ===== */
.about-section {
  padding: 4rem 2rem 5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #f0e8e0;
  margin-bottom: 1.2rem;
}
.about-text h3 span {
  color: #b58a6b;
}
.about-text p {
  color: #b8b0a8;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.values-grid .val {
  background: rgba(181, 138, 107, 0.05);
  border-radius: 14px;
  padding: 0.8rem 0.5rem;
  text-align: center;
  border: 1px solid rgba(181, 138, 107, 0.04);
  transition: all 0.3s ease;
}
.values-grid .val:hover {
  background: rgba(181, 138, 107, 0.1);
  transform: scale(1.04);
}
.values-grid .val i {
  color: #b58a6b;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.2rem;
}
.values-grid .val span {
  font-size: 0.7rem;
  font-weight: 500;
  color: #b8b0a8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-card {
  background: rgba(26, 21, 19, 0.5);
  border-radius: 16px;
  padding: 1.2rem 0.5rem;
  text-align: center;
  border: 1px solid rgba(181, 138, 107, 0.04);
}
.stat-card .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f0e8e0;
}
.stat-card .num span {
  color: #b58a6b;
}
.stat-card .label {
  font-size: 0.65rem;
  color: #8a827a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-info-card {
  background: rgba(26, 21, 19, 0.4);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(181, 138, 107, 0.06);
}
.info-item {
  display: flex;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(181, 138, 107, 0.04);
}
.info-item:last-child {
  border-bottom: none;
}
.info-item i {
  color: #b58a6b;
  font-size: 1.1rem;
  width: 24px;
  margin-top: 3px;
}
.info-item div strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8a827a;
}
.info-item div span {
  font-size: 0.9rem;
  color: #e8e0d8;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 4rem 2rem 5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background: rgba(26, 21, 19, 0.5);
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid rgba(181, 138, 107, 0.06);
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #f0e8e0;
  margin-bottom: 0.3rem;
}
.contact-form-card p {
  color: #8a827a;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b8b0a8;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}
.form-group label i {
  color: #b58a6b;
  margin-right: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.2rem;
  background: rgba(14, 11, 10, 0.6);
  border: 1px solid rgba(181, 138, 107, 0.1);
  border-radius: 14px;
  color: #f0e8e0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b58a6b;
  box-shadow: 0 0 0 3px rgba(181, 138, 107, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #5a524a;
}
.form-group select {
  appearance: none;
  cursor: pointer;
  color: #b8b0a8;
}
.form-group select option {
  background: #1a1513;
}

.submit-btn {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, #b58a6b, #d4a889);
  color: #0e0b0a;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(181, 138, 107, 0.25);
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(181, 138, 107, 0.4);
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-block {
  background: rgba(26, 21, 19, 0.4);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(181, 138, 107, 0.04);
}
.info-block h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #f0e8e0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(181, 138, 107, 0.03);
}
.contact-item:last-child {
  border-bottom: none;
}
.contact-item i {
  color: #b58a6b;
  width: 20px;
  margin-top: 2px;
}
.contact-item .detail .label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8a827a;
}
.contact-item .detail .value {
  font-size: 0.9rem;
  color: #e8e0d8;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(181, 138, 107, 0.06);
  border: 1px solid rgba(181, 138, 107, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8b0a8;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #b58a6b;
  color: #0e0b0a;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(181, 138, 107, 0.25);
}

/* ===== FLOATING BUTTONS ===== */
.float-btn {
  position: fixed;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #0e0b0a;
  z-index: 999;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.1) translateY(-4px);
}
.float-btn .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #0e0b0a;
  color: #b58a6b;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1.5px solid #b58a6b;
}

.float-call {
  bottom: 120px;
  right: 24px;
  background: linear-gradient(135deg, #b58a6b, #d4a889);
}
.float-wa {
  bottom: 50px;
  right: 24px;
  background: #25d366;
  color: #0e0b0a;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero > div:first-child {
  animation: fadeUp 0.8s ease forwards;
}
.hero-visual {
  animation: fadeUp 0.8s ease 0.2s forwards;
}

/* ========================================
   🌐 RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .hero {
    flex-direction: column;
    padding: 7rem 2rem 3rem;
    text-align: center;
  }
  .hero p {
    max-width: 100%;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-wrapper {
    padding: 0 1rem;
  }
  .navbar-wrapper.scrolled {
    padding: 0.2rem 1rem;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(14, 11, 10, 0.96);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 0.2rem;
    border-left: 1px solid rgba(181, 138, 107, 0.06);
    overflow-y: auto;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li a {
    padding: 0.8rem 1rem;
    width: 100%;
    border-radius: 12px;
    font-size: 1rem;
  }
  .btn-cta-desktop {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 6rem 1.2rem 2rem;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-card {
    padding: 1.5rem;
    max-width: 100%;
  }
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-stats .stat-number {
    font-size: 1.6rem;
  }
  .service-grid-icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }
  .service-grid-icons .item {
    padding: 0.7rem 0.3rem;
  }
  .service-grid-icons .item i {
    font-size: 1.3rem;
  }
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item {
    height: 180px;
  }
  .about-section {
    padding: 3rem 1.2rem 4rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-text {
    order: 1;
  }
  .about-visual {
    order: 2;
  }
  .about-text h3 {
    font-size: 1.8rem;
    text-align: center;
  }
  .about-text p {
    font-size: 0.95rem;
    text-align: center;
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }
  .values-grid .val {
    padding: 0.6rem 0.3rem;
  }
  .values-grid .val i {
    font-size: 1rem;
  }
  .values-grid .val span {
    font-size: 0.6rem;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .stat-card {
    padding: 1rem 0.3rem;
  }
  .stat-card .num {
    font-size: 1.5rem;
  }
  .stat-card .label {
    font-size: 0.6rem;
  }
  .about-info-card {
    padding: 1.2rem;
  }
  .info-item {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem 0;
  }
  .info-item i {
    width: auto;
    font-size: 1rem;
  }
  .info-item div strong {
    font-size: 0.65rem;
  }
  .info-item div span {
    font-size: 0.85rem;
    word-break: break-word;
  }
  .contact-section {
    padding: 3rem 1.2rem 4rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form-card {
    padding: 1.5rem;
    order: 2;
  }
  .contact-info-side {
    order: 1;
  }
  .contact-form-card h3 {
    font-size: 1.6rem;
    text-align: center;
  }
  .contact-form-card p {
    text-align: center;
    font-size: 0.9rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
  }
  .submit-btn {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
  .contact-info-side .info-block {
    padding: 1.2rem;
  }
  .info-block h4 {
    font-size: 0.95rem;
    justify-content: center;
  }
  .contact-item {
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.7rem 0;
    align-items: flex-start;
  }
  .contact-item i {
    width: auto;
    font-size: 0.9rem;
  }
  .contact-item .detail .label {
    font-size: 0.6rem;
  }
  .contact-item .detail .value {
    font-size: 0.85rem;
    word-break: break-word;
  }
  .social-icons {
    justify-content: center;
  }
  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .section-header {
    margin: 0 auto 2rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .section-header p {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .float-call {
    bottom: 100px;
    right: 16px;
  }
  .float-wa {
    bottom: 40px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.3rem 1rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .btn-primary,
  .btn-secondary {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }
  .hero-stats {
    gap: 1rem;
  }
  .hero-stats .stat-number {
    font-size: 1.4rem;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .section-header p {
    font-size: 0.85rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 200px;
  }
  .service-card .card-image {
    height: 130px;
  }
  .service-card .card-body .name {
    font-size: 0.9rem;
  }
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .about-text h3 {
    font-size: 1.5rem;
  }
  .about-text p {
    font-size: 0.9rem;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid .val span {
    font-size: 0.55rem;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat-card .num {
    font-size: 1.3rem;
  }
  .stat-card .label {
    font-size: 0.55rem;
  }
  .about-info-card {
    padding: 1rem;
  }
  .info-item div span {
    font-size: 0.8rem;
  }
  .contact-form-card {
    padding: 1.2rem;
  }
  .contact-form-card h3 {
    font-size: 1.4rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.8rem;
    padding: 0.6rem 0.9rem;
  }
  .submit-btn {
    font-size: 0.9rem;
    padding: 0.7rem;
  }
  .contact-info-side .info-block {
    padding: 1rem;
  }
  .info-block h4 {
    font-size: 0.9rem;
  }
  .contact-item .detail .value {
    font-size: 0.8rem;
  }
  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .float-call {
    bottom: 90px;
    right: 12px;
  }
  .float-wa {
    bottom: 34px;
    right: 12px;
  }
  .float-btn .badge {
    font-size: 0.4rem;
    padding: 1px 6px;
    top: -4px;
    right: -4px;
  }
  .category-header h3 {
    font-size: 1.1rem;
  }
  .category-header h3 span {
    font-size: 0.7rem;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero-stats .stat-number {
    font-size: 1.2rem;
  }
  .section-header h2 {
    font-size: 1.4rem;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid .val {
    padding: 0.5rem 0.2rem;
  }
  .values-grid .val i {
    font-size: 0.9rem;
  }
  .values-grid .val span {
    font-size: 0.5rem;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .stat-card .num {
    font-size: 1.1rem;
  }
  .about-info-card {
    padding: 0.8rem;
  }
  .contact-form-card {
    padding: 1rem;
  }
  .contact-form-card h3 {
    font-size: 1.2rem;
  }
  .contact-info-side .info-block {
    padding: 0.8rem;
  }
  .social-icons a {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }
  .float-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
  .float-call {
    bottom: 80px;
    right: 10px;
  }
  .float-wa {
    bottom: 30px;
    right: 10px;
  }
}