/* ===========================
   AURA FURNISHINGS - STYLESHEET
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;500;700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --bg: #f9f6f1;
  --bg-secondary: #f0ebe2;
  --fg: #1e1e1e;
  --fg-muted: #6b6b6b;
  --fg-light: #9a9a9a;
  --accent: #b8892a;
  --accent-light: #d4a84b;
  --accent-bg: rgba(184, 137, 42, 0.1);
  --primary: #1a1a1a;
  --primary-fg: #f9f6f1;
  --border: #e2d9ca;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
  --radius: 0.5rem;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --navbar-h: 80px;
  --section-py: 100px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}
.custom-logo-link img{
    width: 125px;
    height: auto;
}
/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* ---- LAYOUT UTILITIES ---- */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 2rem;
}

.section {
  padding-block: var(--section-py);
}

.section--dark {
  background-color: var(--primary);
  color: var(--primary-fg);
}

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

.section--accent {
  background-color: var(--accent);
  color: var(--white);
}

/* ---- SECTION HEADING ---- */
.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--fg-muted);
  max-width: 580px;
  margin-inline: auto;
  font-size: 1.0625rem;
}

.section-heading--light h2 {
  color: var(--primary-fg);
}

.section-heading--light p {
  color: rgba(249, 246, 241, 0.65);
}

.gold-divider {
  width: 56px;
  height: 2px;
  background-color: var(--accent);
  margin-block: 1rem;
}

.gold-divider--center {
  margin-inline: auto;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
  background-color: rgba(249, 246, 241, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.navbar__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.navbar__logo img {
  height: 44px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar__logo:hover img {
  transform: scale(1.04);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.navbar__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
  position: relative;
  transition: color 0.3s ease;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--accent);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  transition: color 0.3s ease;
}

.navbar__phone:hover {
  color: var(--accent);
}

.navbar__phone svg {
  width: 16px;
  height: 16px;
}

/* ---- HAMBURGER ---- */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--fg);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.open span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- MOBILE MENU ---- */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  z-index: 999;
  animation: slideDown 0.3s ease;
}

.navbar__mobile.open {
  display: block;
}

.navbar__mobile nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.navbar__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.3s ease;
}

.navbar__mobile a:hover,
.navbar__mobile a.active {
  color: var(--accent);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: scale(1.04);
}

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

.btn--accent:hover {
  background-color: var(--accent-light);
}

.btn--dark {
  background-color: var(--primary);
  color: var(--primary-fg);
}

.btn--dark:hover {
  background-color: #333;
}

.btn--outline {
  background-color: transparent;
  border: 1px solid rgba(30,30,30,0.25);
  color: var(--fg);
}

.btn--outline:hover {
  background-color: rgba(30,30,30,0.06);
}

.btn--outline-light {
  background-color: transparent;
  border: 1px solid rgba(249,246,241,0.35);
  color: var(--primary-fg);
}

.btn--outline-light:hover {
  background-color: rgba(249,246,241,0.12);
  color: var(--primary-fg);
}

.btn--lg {
  font-size: 1rem;
  padding: 0.8rem 2.25rem;
}

.btn--full {
  width: 100%;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  padding-block: 7rem 5rem;
  margin-top: var(--navbar-h);
  background-color: var(--primary);
  overflow: hidden;
  text-align: center;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary-fg);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(249,246,241,0.75);
  font-size: 1.0625rem;
  max-width: 560px;
  margin-inline: auto;
}

/* ---- HERO SLIDER ---- */
.hero-slider {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: var(--navbar-h);
}

.hero-slide {
  position: absolute;
  inset: 0;
  transition: opacity 1s ease, transform 1s ease;
  opacity: 0;
  transform: scale(1.06);
}

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

.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.58);
}

.hero-slider__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slider__text {
  max-width: 840px;
  padding-inline: 1.5rem;
}

.hero-slider__text h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.9s ease both;
}

.hero-slider__text p {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-slider__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.4s both;
}

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.slider-arrow:hover {
  background-color: rgba(255,255,255,0.22);
}

.slider-arrow--prev { left: 1.5rem; }
.slider-arrow--next { right: 1.5rem; }

.slider-arrow svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.slider-dot {
  height: 8px;
  border-radius: 4px;
  background-color: rgba(255,255,255,0.4);
  transition: width 0.4s ease, background-color 0.4s ease;
  width: 8px;
}

.slider-dot.active {
  width: 28px;
  background-color: var(--accent);
}

/* ---- ABOUT PREVIEW ---- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.5s ease;
  aspect-ratio: 4/3;
}

.about-preview__img:hover {
  box-shadow: var(--shadow-lg);
}

.about-preview__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-preview__img:hover img {
  transform: scale(1.04);
}

.about-preview__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.about-preview__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.about-preview__text {
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card__img {
  aspect-ratio: 1;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.1);
}

.service-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- PROJECT GRID ---- */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.15) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.project-card:hover .project-card__overlay {
  opacity: 1;
}

.project-card__info {
  transform: translateY(12px);
  transition: transform 0.5s ease;
}

.project-card:hover .project-card__info {
  transform: translateY(0);
}

.project-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
}

/* ---- WHY CHOOSE US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.why-item {
  text-align: center;
}

.why-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(184,137,42,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.why-item:hover .why-item__icon {
  background-color: rgba(184,137,42,0.28);
  transform: scale(1.1);
}

.why-item__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.8125rem;
  color: rgba(249,246,241,0.6);
  line-height: 1.55;
}

/* ---- CLIENT LOGOS ---- */
.clients-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.client-badge {
  padding: 0.6rem 1.2rem;
  background-color: var(--bg-secondary);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.client-badge:hover {
  background-color: var(--accent-bg);
  color: var(--accent);
}

/* ---- TESTIMONIAL CARDS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card--dark {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  stroke: var(--accent);
}

.testimonial-card__text {
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-card--dark .testimonial-card__text {
  color: rgba(249,246,241,0.65);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--fg-light);
}

.testimonial-card--dark .testimonial-card__role {
  color: rgba(249,246,241,0.45);
}

/* ---- CTA SECTION ---- */
.cta-section {
  text-align: center;
  /* padding-block: 6rem; */
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2.25rem;
  opacity: 0.82;
  max-width: 500px;
  margin-inline: auto;
}

/* ---- SERVICES PAGE ---- */
.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-section__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.5s ease;
}

.service-section__img:hover {
  box-shadow: var(--shadow-lg);
}

.service-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-section__img:hover img {
  transform: scale(1.04);
}

.service-section__title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-section__desc {
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

/* ---- PROJECTS PAGE ---- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  background-color: var(--bg-secondary);
  color: var(--fg-muted);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.filter-btn:hover {
  background-color: var(--accent-bg);
  color: var(--accent);
}

.filter-btn.active {
  background-color: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.projects-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0.15) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.gallery-item__info {
  transform: translateY(12px);
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item__info {
  transform: translateY(0);
}

.gallery-item__cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.gallery-item__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

/* ---- ABOUT PAGE ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.about-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-story__img:hover img {
  transform: scale(1.04);
}

.about-story__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.about-story__text {
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: var(--bg-secondary);
  padding: 0.375rem 0.875rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  transition: background-color 0.3s ease;
}

.location-tag:hover {
  background-color: var(--accent-bg);
  color: var(--accent);
}

.location-tag svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.mv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.mv-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mv-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mv-card h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mv-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info__title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item__label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item__value {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--bg-secondary);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  font-size: 0.875rem;
}

.contact-form-box {
  background-color: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form-box h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.contact-form-box .subtitle {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 1.75rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  background-color: var(--white);
  color: var(--fg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,137,42,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ---- FOOTER ---- */
.footer {
  background-color: var(--primary);
  color: var(--primary-fg);
  padding-block: 5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem;
}

.footer__logo {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(249,246,241,0.6);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 0;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(249,246,241,0.6);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__services {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 0;
}

.footer__services li {
  font-size: 0.875rem;
  color: rgba(249,246,241,0.6);
}

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-left: 0;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(249,246,241,0.6);
}

.footer__contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(249,246,241,0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(249,246,241,0.4);
}

.footer__social {
  display: flex;
  gap: 1.25rem;
}

.footer__social a {
  font-size: 0.75rem;
  color: rgba(249,246,241,0.4);
  transition: color 0.3s ease;
}

.footer__social a:hover {
  color: var(--accent);
}

/* ---- WHATSAPP BUTTON ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---- TEXT UTILITIES ---- */
.text-accent { color: var(--accent); }
.text-muted { color: var(--fg-muted); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .projects-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --navbar-h: 68px;
  }

  .navbar__nav,
  .navbar__actions { display: none; }
  .navbar__toggle { display: flex; }

  .about-preview,
  .about-story,
  .service-section,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .projects-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .projects-gallery { grid-template-columns: 1fr; }

  .service-section.reverse .service-section__img { order: -1; }

  .page-hero { padding-block: 5rem 3.5rem; }
}

@media (max-width: 480px) {
  .container { padding-inline: 1.25rem; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-slider__cta { flex-direction: column; align-items: center; }
  .slider-arrow { display: none; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
