/* =============================================
   AURAM LUXE SPA — CUSTOM STYLESHEET
   Theme: Black Background | White Text | Brown Accents
   style.css
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --brown: #8B5E3C;
  --brown-light: #A97C5B;
  --brown-pale: #3a2518;
  --brown-dark: #5C3D26;
  --brown-border: rgba(139, 94, 60, 0.4);

  --bg-main: #0a0a0a;
  --bg-section: #111111;
  --bg-alt: #161616;
  --bg-card: #1a1a1a;
  --bg-card2: #1e1e1e;

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.08);
  --border-brown: rgba(139, 94, 60, 0.35);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.6);
  --shadow-brown: 0 4px 20px rgba(139, 94, 60, 0.3);

  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

* {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .fadeInLeft, .fadeInRight {
    animation: none !important;
    transform: none !important;
  }
}

.section {
  overflow: hidden;
}


/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-main);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: color var(--transition);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

p {
  line-height: 1.8;
  color: white;
}

/* ---- UTILITIES ---- */
.section-pad {
  padding: 90px 0;
}

.bg-light-cream {
  background: var(--bg-section);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  background: rgba(139, 94, 60, 0.15);
  border: 1px solid var(--border-brown);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-label.light {
  color: var(--brown-light);
  background: rgba(139, 94, 60, 0.15);
  border-color: var(--border-brown);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--brown-light);
}

.section-title.light {
  color: var(--text-primary);
}

.section-title.light em {
  color: var(--brown-light);
}

.section-subtitle {
  max-width: 600px;
  color: white;
  font-size: 1.05rem;
  margin: 0 auto;
}

.section-subtitle.light {
  color: white;
}

.section-body {
  font-size: 1.05rem;
  color: white;
  margin-bottom: 16px;
  line-height: 1.85;
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  display: inline-block;
  background: var(--brown);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  border: 2px solid var(--brown);
  transition: all var(--transition);
  box-shadow: var(--shadow-brown);
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--brown-light);
  border-color: var(--brown-light);
  transform: translateY(-2px);
}

.btn-book {
  display: inline-block;
  background: var(--brown);
  color: var(--text-primary) !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  border: 2px solid var(--brown);
  transition: all var(--transition);
}

.btn-book:hover {
  background: transparent;
  color: var(--brown-light) !important;
  border-color: var(--brown-light);
}

/* ---- TOP BAR ---- */
.topbar {
  background: #050505;
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  font-size: 0.82rem;
}

.topbar-link {
  color: white;
  font-weight: 400;
  transition: color var(--transition);
}

.topbar-link:hover {
  color: var(--brown-light);
}

.topbar-social {
  color: white;
  font-size: 1rem;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition);
}

.topbar-social:hover {
  color: var(--text-primary);
  background: var(--brown);
  border-color: var(--brown);
}

/* ---- HEADER ---- */
.site-header {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
  z-index: 1000;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.99);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
  border-bottom-color: var(--border-brown);
}

.navbar {
  padding: 14px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  font-size: 40px;
  color: var(--brown-light);
  line-height: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.12em;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--brown-light);
  text-transform: uppercase;
  font-weight: 500;
}

.navbar-toggler {
  border: none;
  background: none;
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #0f0f0f;
    border: 1px solid var(--border-brown);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-top: 10px;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  padding: 8px 12px !important;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: var(--brown-light);
  transition: all var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 12px;
  right: 12px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brown-light) !important;
}

/* ---- HERO ---- */
#hero {
  position: relative;
}

.hero-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide-1 {
  background-image: url('../images/b1.jfif');
}

.hero-slide-2 {
  background-image: url('../images/b2.jfif');
}

.hero-slide-3 {
  background-image: url('../images/b3.png');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.58) 55%, rgba(0, 0, 0, 0.3) 100%);
}

.carousel-item .container {
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeUp 0.9s ease forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--brown-light);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--text-primary);
  margin-bottom: 22px;
  line-height: 1.1;
}

.hero-title em {
  font-style: italic;
  color: var(--brown-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-hero-primary {
  background: var(--brown);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  border: 2px solid var(--brown);
  transition: all var(--transition);
  box-shadow: var(--shadow-brown);
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all var(--transition);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.carousel-arrow {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-indicators button {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  transition: all var(--transition);
}

.carousel-indicators button.active {
  width: 50px;
  background: var(--brown-light);
}

/* ---- ABOUT ---- */
.about-img-wrap {
  position: relative;
  padding: 0 40px 40px 0;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-brown);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85) contrast(1.05);
}

.about-img-wrap:hover .about-img-main img {
  transform: scale(1.03);
  filter: brightness(0.92);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--bg-card);
  box-shadow: var(--shadow-md);
}

.about-img-accent img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--brown);
  color: var(--text-primary);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-brown);
  z-index: 2;
  border: 1px solid rgba(169, 124, 91, 0.3);
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.88;
}

.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: white;
  font-weight: 400;
}

.about-feat-item i {
  color: var(--brown-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---- SERVICES ---- */
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-brown);
}

.service-img {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.78) saturate(0.85);
}

.service-card:hover .service-img img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.btn-service-book {
  background: var(--brown);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  border: 2px solid var(--brown);
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.service-card:hover .btn-service-book {
  transform: translateY(0);
}

.btn-service-book:hover {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.service-body {
  padding: 22px 22px 24px;
  background: var(--bg-card);
}

.service-icon {
  width: 46px;
  height: 46px;
  background: rgba(139, 94, 60, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: var(--brown-light);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--brown);
  color: var(--text-primary);
}

.service-title {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.92rem;
  color: white;
  line-height: 1.7;
  margin: 0;
}

/* ---- COUNTER ---- */
.counter-section {
  position: relative;
  padding: 80px 0;
  background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1600&q=80') center/cover no-repeat;
}

.counter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.94) 0%, rgba(58, 37, 24, 0.88) 100%);
}

.counter-item {
  position: relative;
  color: var(--text-primary);
  padding: 30px 20px;
}

.counter-icon {
  font-size: 2.2rem;
  color: var(--brown-light);
  margin-bottom: 14px;
  display: block;
}

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  display: inline;
}

.counter-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-light);
  display: inline;
}

.counter-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

/* ---- WHY CHOOSE US ---- */
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.why-card:hover {
  border-color: var(--border-brown);
  box-shadow: var(--shadow-brown);
  transform: translateY(-4px);
  background: var(--bg-card2);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 94, 60, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brown-light);
  margin-bottom: 14px;
  transition: all var(--transition);
}

.why-card:hover .why-card-icon {
  background: var(--brown);
  color: var(--text-primary);
}

.why-card h4 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.9rem;
  color: white;
  margin: 0;
  line-height: 1.7;
}

.why-img-wrap {
  position: relative;
}

.why-main-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.8);
  border: 1px solid var(--border-brown);
}

.why-quote-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--brown);
  color: var(--text-primary);
  padding: 24px 28px;
  border-radius: var(--radius);
  max-width: 300px;
  box-shadow: var(--shadow-brown);
  border: 1px solid rgba(169, 124, 91, 0.3);
}

.why-quote-card i {
  font-size: 2rem;
  opacity: 0.4;
  margin-bottom: 8px;
  display: block;
}

.why-quote-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
}

.why-quote-card span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.8);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.68);
}

.gallery-item-lg {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(139, 94, 60, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 1.8rem;
  color: var(--text-primary);
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--border-brown);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 10;
}

.lightbox-close:hover {
  color: var(--brown-light);
}

/* ---- TESTIMONIALS ---- */
.testimonial-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1600&q=80') center/cover no-repeat fixed;
}

.testimonial-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.96) 0%, rgba(45, 28, 14, 0.94) 100%);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-brown);
  border-radius: 16px;
  padding: 50px 50px 40px;
  text-align: center;
  transition: all var(--transition);
}

.stars i {
  color: var(--brown-light);
  font-size: 1.1rem;
  margin: 0 2px;
}

.testi-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.945);
  line-height: 1.75;
  margin-bottom: 30px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  background: var(--brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-display);
  text-align: left;
}

.testi-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--brown-light);
  letter-spacing: 0.08em;
  text-align: left;
}

.testi-indicators {
  position: static;
  margin-top: 36px;
}

.testi-indicators button {
  background: rgba(255, 255, 255, 0.2);
  width: 28px;
  height: 3px;
  border-radius: 2px;
  border: none;
}

.testi-indicators button.active {
  background: var(--brown-light);
  width: 50px;
}

/* ---- CONTACT ---- */
.contact-info-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-brown);
  border-radius: var(--radius);
  padding: 40px 36px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.contact-info-title {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-brown);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(139, 94, 60, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-light);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.92rem;
  color: white;
  margin: 0;
  line-height: 1.65;
  transition: color var(--transition);
}

.contact-info-item a:hover {
  color: var(--brown-light);
}

.contact-social {
  display: flex;
  gap: 10px;
}

.c-social-btn {
  width: 38px;
  height: 38px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.c-social-btn:hover {
  background: var(--brown);
  color: var(--text-primary);
  border-color: var(--brown);
  transform: translateY(-3px);
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form-title {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-brown);
}

.form-group-custom {
  margin-bottom: 0;
}

.form-group-custom label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.863);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-primary);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}

.form-control-custom:focus {
  border-color: var(--brown);
  background: #1c1c1c;
  box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.18);
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-control-custom option {
  background: var(--bg-card);
  color: var(--text-primary);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 110px;
}

.form-success-msg {
  text-align: center;
  color: #81c784;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-top: 16px;
}

.form-success-msg i {
  font-size: 1.1rem;
  margin-right: 6px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-brown);
  height: 380px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.8);
}

/* ---- FOOTER ---- */
.site-footer {
  background: #050505;
  color: white;
  border-top: 1px solid var(--border-brown);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-brand .brand-main {
  color: var(--text-primary);
}

.footer-brand .brand-sub {
  color: var(--brown-light);
}

.footer-brand .brand-icon {
  color: var(--brown-light);
}

.footer-about {
  font-size: 0.9rem;
  color: white;
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.footer-social a:hover {
  background: var(--brown);
  color: var(--text-primary);
  border-color: var(--brown);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-brown);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--brown-light);
  font-size: 1.1rem;
}

.footer-links a:hover {
  color: var(--brown-light);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: white;
  line-height: 1.65;
}

.footer-contact-list i {
  color: var(--brown-light);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: white;
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--brown-light);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.7);
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.83rem;
  color: white;
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--brown);
  color: var(--text-primary);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-brown);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--brown-dark);
  transform: translateY(-4px);
}

/* ---- AOS ANIMATIONS ---- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.85);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .section-pad {
    padding: 70px 0;
  }

  .about-img-main img {
    height: 360px;
  }

  .about-img-accent {
    width: 150px;
  }

  .about-img-accent img {
    height: 120px;
  }

  .about-badge {
    left: 0px;
    padding: 14px 16px;
  }

  .why-main-img {
    height: 380px;
  }

  .why-quote-card {
    position: static;
    margin-top: 24px;
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item-lg {
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .testimonial-card {
    padding: 36px 30px;
  }

  .contact-info-wrap,
  .contact-form-wrap {
    padding: 30px 24px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 55px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-desc {
    font-size: 0.97rem;
  }

  .hero-btns {
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 12px 24px;
    font-size: 0.77rem;
  }

  .about-img-wrap {
    padding: 0 0 100px 0;
    margin-bottom: 40px;
  }

  .about-badge {
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item-lg {
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .testimonial-card {
    padding: 30px 22px;
  }

  .testi-text {
    font-size: 1.1rem;
  }

  .why-quote-card {
    left: 0;
    bottom: auto;
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }

  .footer-top {
    padding: 50px 0 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .topbar-link {
    font-size: 0.75rem;
  }

  .contact-info-wrap,
  .contact-form-wrap {
    padding: 24px 18px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
  }
}

.floating-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 22px;
    line-height: 55px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp */
.whatsapp {
    background-color: #25D366;
}

/* Call */
.call {
    background-color: #007bff;
}