:root {
  --bg: #07080d;
  --surface: #121519;
  --surface-alt: #20252c;
  --text: #f7f7f8;
  --muted: #abb2bd;
  --accent: #c9b99a;
  --accent-dark: #8f7b61;
  --accent-soft: rgba(201, 185, 154, 0.14);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  --navy: #07090f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, #080a0f 0%, #07090f 100%);
  border-bottom: 2px solid rgba(201, 185, 154, 0.18);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
}

.brand-logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: none;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.site-nav a {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.site-nav a.active {
  color: var(--accent);
}

.site-nav a.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 0.25rem;
  background: var(--accent);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-size: 1rem;
  color: white;
}

.hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at top, rgba(201, 185, 154, 0.08), transparent 36%);
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1,
.page-hero h1,
.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.hero-copy,
.section-heading p,
.info-card p,
.project-body p,
.contact-section p,
.about-grid p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.4rem 0 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(201, 185, 154, 0.16);
}

.btn-secondary {
  background: rgba(201, 185, 154, 0.06);
  border: 2px solid rgba(201, 185, 154, 0.3);
  color: var(--accent);
}

.btn-secondary:hover {
  background: rgba(201, 185, 154, 0.14);
}

.btn-tertiary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.stat-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  padding: 1.3rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-stats li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card,
.quote-box,
.contact-form,
.info-card,
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-card:hover,
.quote-box:hover,
.contact-form:hover,
.info-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

.hero-card {
  padding: 1rem;
}

.room-preview,
.project-image {
  border-radius: 18px;
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.room-preview {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: #161616;
}

.preview-one {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-note {
  padding: 1rem 0.5rem 0.3rem;
}

.section {
  padding: 4.5rem 0;
}

.alt-section {
  background: rgba(201, 185, 154, 0.05);
  border: 1px solid rgba(201, 185, 154, 0.08);
}

.section-heading {
  margin: 0 auto 1.6rem;
  max-width: 960px;
  text-align: center;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.page-panel,
.cta-strip,
.list-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 185, 154, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.page-panel,
.list-block {
  padding: 1.25rem;
}

.muted {
  color: var(--muted);
}

.icon-list,
.process-list,
.contact-list,
.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list,
.process-list,
.contact-list {
  display: grid;
  gap: 0.75rem;
}

.icon-list li,
.process-list li,
.contact-list li {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-list li {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.cta-strip {
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.info-card {
  padding: 1.3rem;
}

.project-card {
  overflow: hidden;
}

.project-body {
  padding: 1rem 1rem 1.2rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.social-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
}

.social-icon.social-youtube {
  background: #ff0000;
}

.social-icon.social-instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976 45%, #962fbf 60%, #4f5bd5 90%);
}

.social-card h3 {
  margin-bottom: 0.8rem;
}

.social-card p {
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.project-one {
  background: linear-gradient(135deg, #181818, #6f523c);
}

.project-two {
  background: linear-gradient(135deg, #111111, #4f4f4f);
}

.project-three {
  background: linear-gradient(135deg, #1b1b1b, #8a6448);
}

.quote-box {
  padding: 1.4rem;
  font-size: 1.05rem;
}

.quote-box span {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
}

.contact-form {
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  background: var(--surface);
  color: var(--text);
}

.form-message {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.filter-btn {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(245, 158, 11, 0.18);
  border-color: var(--accent);
}

.feedback-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
}

.feedback-form {
  display: grid;
  gap: 1rem;
}

.gallery-header {
  margin-bottom: 1rem;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-call {
  background: #e5e7eb;
  color: #02050f;
}

.btn-whatsapp {
  background: #4b5563;
  color: #f8fafc;
}

.btn-whatsapp svg {
  fill: #25d366 !important;
}

.media-gallery {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--surface-alt);
  border-radius: 22px;
  border: 2px dashed var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-info {
  padding: 1rem;
  background: var(--surface);
}

.gallery-info p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  border-top: 2px solid var(--accent);
  background: var(--navy);
  color: #ffffff;
}

.footer-wrap {
  padding: 1rem 0 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-logo {
  width: 130px;
  height: auto;
  display: block;
}

.hero h1,
.hero-copy,
.hero-actions,
.hero-stats {
  animation: fadeUp 0.8s ease both;
}

.hero-copy {
  animation-delay: 0.12s;
}

.hero-actions {
  animation-delay: 0.22s;
}

.hero-stats {
  animation-delay: 0.32s;
}

.hero-card {
  animation: floatIn 1s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* New Hero Slider Styles */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--accent);
}

/* Services Snapshot */
.services-snapshot {
  padding: 5rem 0;
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--surface-alt);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-section {
  padding: 4rem 0;
  background: var(--bg);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  transition: opacity 0.5s ease;
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonial blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text);
}

.testimonial cite {
  color: var(--accent);
  font-weight: 600;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #101116, #1f2228);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn-call {
  background: #e5e7eb !important;
  color: #02050f;
}

.btn-whatsapp {
  background: #4b5563 !important;
  color: #f8fafc;
}

.btn-whatsapp svg {
  fill: #25d366 !important;
}

.footer-contact {
  text-align: center;
}

.footer-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

/* Micro-interactions */
.project-card:hover {
  transform: scale(1.05);
}

.project-card:hover .project-image {
  opacity: 0.8;
}

.project-card .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 158, 11, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* Services Detailed Styles */
.services-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-detail {
  background: var(--surface-alt);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-detail h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-detail p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.service-detail p:last-child {
  margin-bottom: 0;
  font-style: italic;
  opacity: 0.8;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .page-grid,
  .card-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.9rem;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 25;
  }

  .site-header .contact-buttons {
    margin-right: 4.6rem;
  }

  .brand-logo {
    width: 145px;
  }

  .footer-logo {
    width: 115px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
