/* ================================================================
   DRISHTI SPACE DESIGN — style.css
   Premium Interior Design Landing Page
   Color Palette: White · Grey · Wood Tone
================================================================ */

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES
---------------------------------------------------------------- */
:root {
  --gold:          #C49A6C;
  --gold-light:    #D4B08A;
  --gold-dark:     #A07848;
  --brown:         #8B5E3C;
  --dark:          #1C1A17;
  --dark-2:        #2E2A24;
  --text:          #3A3530;
  --text-light:    #7A7570;
  --white:         #FFFFFF;
  --off-white:     #FAFAF8;
  --light:         #F5F2EE;
  --light-2:       #EDE9E3;
  --border:        #E0D9D0;
  --shadow-sm:     0 2px 12px rgba(28,26,23,.08);
  --shadow-md:     0 8px 32px rgba(28,26,23,.12);
  --shadow-lg:     0 20px 60px rgba(28,26,23,.18);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:         76px;
  --font-head:     'Georgia', 'Times New Roman', serif;
  --font-body:     'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; }
input, textarea, button { font-family: inherit; }

/* ----------------------------------------------------------------
   LAYOUT UTILITIES
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.bg-light    { background: var(--light); }

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.row-gap { gap: 0; }

.align-center { align-items: center; }

[class^="col"] {
  padding: 0 20px;
}

.col-5  { width: 41.666%; }
.col-6  { width: 50%; }
.col-7  { width: 58.333%; }
.col-12 { width: 100%; }

/* ----------------------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------------------- */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,154,108,.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin-top: 16px; }

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 28px;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(160,120,72,.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--brown));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(160,120,72,.4);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  padding: 15px 36px;
  font-size: 1rem;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--white), #f0e8de);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ----------------------------------------------------------------
   NAVBAR
---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--brown));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.brand-tagline {
  font-size: .7rem;
  color: var(--text-light);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link.active { color: var(--gold); }

.nav-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 14px rgba(160,120,72,.3);
}
.nav-btn::after { display: none; }
.nav-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--brown));
  transform: translateY(-1px);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ----------------------------------------------------------------
   HERO / SLIDER
---------------------------------------------------------------- */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  overflow: hidden;
}

.slide.active { opacity: 1; z-index: 2; }

/* Slide backgrounds — replace with actual images in /images/ folder */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

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

/* Background images — user should replace these with real photos
   Place hero-1.jpg, hero-2.jpg, hero-3.jpg in the /images/ folder */
.slide-bg-1 {
  background-image: url('../images/hero-1.jpg');
  /* background-color: #2a1e10;  */
  background-blend-mode: multiply;
}
.slide-bg-2 {
  background-image: url('../images/hero-2.jpg');
  /* background-color: #1e1206; */
  background-blend-mode: multiply;
}
.slide-bg-3 {
  background-image: url('../images/hero-3.jpg');
  /* background-color: #141218; */
  background-blend-mode: multiply;
}

/* If image fails to load, use gradient fallback */
/* .slide-bg-1:not([style*="background-image"]) {
  background: linear-gradient(145deg, #2a1e10 0%, #5c3a1e 40%, #3a2610 100%);
}
.slide-bg-2:not([style*="background-image"]) {
  background: linear-gradient(145deg, #1a1206 0%, #6b4520 40%, #2e1e0a 100%);
}
.slide-bg-3:not([style*="background-image"]) {
  background: linear-gradient(145deg, #141218 0%, #2c2436 40%, #1a1620 100%);
} */

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,10,5,.75) 0%,
    rgba(15,10,5,.55) 50%,
    rgba(15,10,5,.2) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 20px) 6% 80px;
  z-index: 2;
}

/* Slide animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

.slide.active .animate-tag   { animation: fadeUp .6s ease .15s both; }
.slide.active .animate-line  { animation: scaleIn .5s ease .4s both; }
.slide.active .animate-title { animation: fadeUp .7s ease .5s both; }
.slide.active .animate-desc  { animation: fadeUp .7s ease .7s both; }
.slide.active .animate-cta   { animation: fadeUp .7s ease .9s both; }

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.slide-tag::before,
.slide-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
  opacity: .6;
}

.slide-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  margin: 0 auto 28px;
}

.slide-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 4px 32px rgba(0,0,0,.4);
  max-width: 820px;
  letter-spacing: -.01em;
}

.slide-title em {
  color: var(--gold-light);
  font-style: normal;
}

.slide-desc {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.25);
  transition: var(--transition);
}

.slider-prev { left: 28px; }
.slider-next { right: 28px; }

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  transition: var(--transition);
  padding: 0;
}

.dot.active {
  background: var(--gold);
  width: 32px;
  border-radius: 5px;
}

.dot:hover { background: rgba(255,255,255,.8); }

/* ----------------------------------------------------------------
   ABOUT SECTION
---------------------------------------------------------------- */
.about { background: var(--white); }

.about-image-wrap {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.about-img-frame {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--light-2);
  position: relative;
}

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

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

/* Decorative border accent */
.about-image-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 75%;
  height: 75%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-img-frame { position: relative; z-index: 1; }

/* If about.jpg is missing, show gradient placeholder */
.about-img-frame img[src="images/about.jpg"]:not([complete]) {
  background: linear-gradient(145deg, var(--light-2), var(--border));
}

.about-badge {
  position: absolute;
  bottom: 55px;
  right: 55px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(160,120,72,.4);
  min-width: 110px;
}

.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-num sup { font-size: 1rem; }
.badge-lbl {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-top: 4px;
  opacity: .9;
  line-height: 1.4;
}

.about-content { padding-left: 24px; }

.about-para {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  padding: 24px 28px;
  background: var(--light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-num sup { font-size: 1rem; }
.stat-lbl {
  display: block;
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.4;
}

.stat-sep {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   SERVICES SECTION
---------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--gold-light);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(196,154,108,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-icon-wrap svg {
  width: 32px; height: 32px;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold);
}

.service-card:hover .service-icon-wrap svg {
  color: var(--white);
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
}

.services-cta {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.services-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 24px;
}

/* ----------------------------------------------------------------
   WHY CHOOSE US
---------------------------------------------------------------- */
.why-us { background: var(--white); }

.why-us-text { padding-right: 24px; }
.why-us-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(196,154,108,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-icon svg {
  width: 24px; height: 24px;
  color: var(--gold);
}

.feature-item:hover .feature-icon {
  background: var(--gold);
}

.feature-item:hover .feature-icon svg {
  color: var(--white);
}

.feature-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.feature-body p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

.gallery-item {
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--light-2);
}

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--light-2);
}

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

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(196,154,108,.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
}

.gallery-hover svg {
  width: 28px; height: 28px;
  stroke: var(--white);
}

.gallery-hover span {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gallery-item:hover .gallery-img-wrap img  { transform: scale(1.08); }
.gallery-item:hover .gallery-hover         { opacity: 1; }

.gallery-caption {
  font-size: .85rem;
  color: var(--text-light);
  text-align: center;
  padding: 10px 8px 4px;
  font-weight: 500;
}

/* ----------------------------------------------------------------
   LIGHTBOX
---------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,5,.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-content {
  max-width: 88vw;
  max-height: 88vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  object-fit: contain;
}

.lightbox-caption {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  margin-top: 16px;
  letter-spacing: .04em;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  opacity: .75;
  transition: var(--transition);
  z-index: 10;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); color: var(--gold); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 3rem;
  opacity: .7;
  padding: 16px 12px;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; color: var(--gold); }

/* ----------------------------------------------------------------
   CONTACT SECTION
---------------------------------------------------------------- */
.contact { background: var(--white); }

.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,108,.15);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e5534b;
}

.field-error {
  display: block;
  font-size: .8rem;
  color: #e5534b;
  margin-top: 5px;
  min-height: 18px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: var(--radius-sm);
  color: #16a34a;
  font-weight: 500;
  font-size: .92rem;
}

.form-success.show { display: flex; }

/* Contact Details */
.contact-info-wrap { padding-left: 20px; }

.contact-detail-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(196,154,108,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px; height: 20px;
  fill: var(--gold);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}

.detail-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
}

.detail-value {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.6;
}

a.detail-value:hover { color: var(--gold); }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.map-wrap iframe { display: block; }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.footer { background: var(--dark); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .03em;
}

/* ----------------------------------------------------------------
   SCROLL TO TOP
---------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(160,120,72,.4);
}

.scroll-top svg {
  width: 20px; height: 20px;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(160,120,72,.5);
}

/* ----------------------------------------------------------------
   SCROLL ANIMATIONS
---------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   RESPONSIVE — Tablet (≤ 1024px)
---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .col-5  { width: 45%; }
  .col-7  { width: 55%; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ----------------------------------------------------------------
   RESPONSIVE — Mobile (≤ 768px)
---------------------------------------------------------------- */
@media (max-width: 768px) {

  :root { --nav-h: 64px; }

  .section-pad { padding: 64px 0; }

  /* Navbar */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--gold);
    padding: 16px 0 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .4s ease, opacity .4s ease;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    padding: 12px 28px;
    border-radius: 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--light);
  }

  .nav-link::after { display: none; }
  .nav-btn {
    margin: 12px 24px 0;
    border-radius: var(--radius-sm);
    text-align: center;
    justify-content: center;
    display: flex;
  }

  /* Hero */
  .slide-content { padding: calc(var(--nav-h) + 20px) 5% 70px; }
  .slide-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .slide-desc  { font-size: .95rem; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
  .slider-arrow { width: 42px; height: 42px; font-size: 1.5rem; }

  /* Layout */
  .col-5, .col-6, .col-7 { width: 100%; }

  /* About */
  .about-image-wrap {
    padding-bottom: 30px;
    padding-right: 30px;
    max-width: 400px;
    margin: 0 auto 40px;
  }
  .about-content { padding-left: 0; }
  .about-stats { padding: 20px; }
  .stat-num { font-size: 1.8rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Features */
  .why-us-text { padding-right: 0; margin-bottom: 40px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Contact */
  .contact-info-wrap { padding-left: 0; margin-top: 32px; }

  /* Scroll Top */
  .scroll-top { bottom: 20px; right: 20px; }

}

/* ----------------------------------------------------------------
   RESPONSIVE — Small Mobile (≤ 480px)
---------------------------------------------------------------- */
@media (max-width: 480px) {

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .about-stats { flex-wrap: wrap; }
  .stat-sep { display: none; }
  .stat-item { min-width: 45%; padding: 8px 0; }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ----------------------------------------------------------------
   IMAGE PLACEHOLDERS (shown when real images are missing)
   Add your photos to the /images/ folder to replace these
---------------------------------------------------------------- */

/* Hero fallback backgrounds (CSS gradient when .jpg not found) */
/* .slide-bg-1 { background: linear-gradient(145deg, #2a1e10 0%, #5c3a1e 50%, #1e1206 100%); }
.slide-bg-2 { background: linear-gradient(145deg, #1a1206 0%, #7a5530 50%, #3a2010 100%); }
.slide-bg-3 { background: linear-gradient(145deg, #141218 0%, #30283a 50%, #1a1522 100%); } */

/* Override with image if present */
.slide-bg-1 { background-image: url('../images/hero-1.jpg'); background-size: cover; background-position: center; }
.slide-bg-2 { background-image: url('../images/hero-2.jpg'); background-size: cover; background-position: center; }
.slide-bg-3 { background-image: url('../images/hero-3.jpg'); background-size: cover; background-position: center; }

/* About image fallback */
.about-img-frame { background: linear-gradient(145deg, #e8ddd0, #d5c8b8); }
.about-img-frame img { display: block; }

/* Gallery item fallback */
.gallery-img-wrap {
  background: linear-gradient(145deg, var(--light-2), var(--border));
}
