/* ============================================================
   JR INTERIOR DESIGN â€” Premium Style Sheet
   Version: 2.0 | Warm Modern Luxury
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cinzel:wght@400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --primary:    #2C1810;
  --secondary:  #3B2418;
  --accent:     #C89B6D;
  --gold:       #D8B07A;
  --gold-light: #E8C896;
  --bg:         #F8F4EE;
  --cream:      #F2ECE5;
  --cream-dark: #E8DDD0;
  --dark:       #1A1A1A;
  --white:      #FFFFFF;
  --muted:      #7A6A5E;
  --border:     rgba(200, 155, 109, 0.25);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', sans-serif;
  --font-nav:     'Cinzel', 'Playfair Display', Georgia, serif;

  --shadow-sm:  0 2px 12px rgba(44, 24, 16, 0.08);
  --shadow-md:  0 8px 32px rgba(44, 24, 16, 0.12);
  --shadow-lg:  0 20px 60px rgba(44, 24, 16, 0.16);
  --shadow-xl:  0 30px 90px rgba(44, 24, 16, 0.2);

  --radius:     16px;
  --radius-sm:  8px;
  --radius-lg:  24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: initial;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Lenis smooth scroll */
html.lenis, html.lenis body {
  height: auto;
}
html.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul { list-style: none; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(216, 176, 122, 0.4);
  padding: 10px;
  animation: preloader-pulse 1.5s ease-in-out infinite;
  filter: invert(1) sepia(1) saturate(1.5) hue-rotate(5deg) brightness(1.3);
}

@keyframes preloader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.preloader-bar {
  width: 120px;
  height: 1px;
  background: rgba(216, 176, 122, 0.2);
  position: relative;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preloader-bar 1.5s ease-in-out infinite;
}
@keyframes preloader-bar {
  to { left: 100%; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-jrind {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 24px 0;
  transition: var(--transition);
}

.navbar-jrind.scrolled {
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(44, 24, 16, 0.1);
  border-bottom: 1px solid var(--border);
}

.navbar-jrind.dark-nav {
  background: transparent;
}

.navbar-jrind .nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  padding: 4px;
  object-fit: cover;
  filter: invert(1) sepia(1) saturate(1.5) brightness(0.85);
  transition: var(--transition);
}

.navbar-jrind.scrolled .nav-logo-img {
  filter: none;
}

.nav-brand-text {
  font-family: var(--font-nav);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.2;
  transition: var(--transition);
  text-transform: uppercase;
}

.navbar-jrind.scrolled .nav-brand-text {
  color: var(--primary);
}

.nav-tagline {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  display: block;
  transition: var(--transition);
}

.navbar-jrind.scrolled .nav-tagline {
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition-fast);
}

.navbar-jrind.scrolled .nav-link-item {
  color: var(--primary);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
  width: 100%;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: var(--accent);
}

.navbar-jrind.scrolled .nav-link-item:hover,
.navbar-jrind.scrolled .nav-link-item.active {
  color: var(--accent);
}

.btn-nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  border: none;
  padding: 11px 28px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-nav-cta:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.navbar-jrind.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 8999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu .mobile-link {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.mobile-menu .mobile-link:hover { color: var(--gold); }
.mobile-menu .btn-nav-cta { font-size: 1rem; padding: 14px 40px; margin-top: 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-jr {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary-jr:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-jr {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-jr:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-dark-jr {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-dark-jr:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold-light));
  border-radius: 2px;
  margin: 20px 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920&q=90');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.75) 0%,
    rgba(59, 36, 24, 0.55) 50%,
    rgba(44, 24, 16, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 80px;
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
}
.hero-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroScroll 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
}
@keyframes heroScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.6; }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: 100px 0;
  background: var(--cream);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 28px;
  color: var(--accent);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ============================================================
   FEATURED PROJECTS
   ============================================================ */
.projects-preview {
  padding: 100px 0;
  background: var(--bg);
}

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 24, 16, 0.9) 0%,
    rgba(44, 24, 16, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transform: translateY(12px);
  transition: var(--transition);
}

.project-card:hover .project-card-overlay {
  transform: translateY(0);
}

.project-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}
.project-card:hover .project-card-link {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   STATS / WHY CHOOSE US
   ============================================================ */
.stats-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 155, 109, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(200, 155, 109, 0.25);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 36px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.1rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
}
.testimonial-role {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Swiper overrides */
.testimonials-swiper .swiper-pagination-bullet {
  background: var(--accent);
  opacity: 0.35;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.88) 0%, rgba(59, 36, 24, 0.75) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ============================================================
   ABOUT PAGE HERO (PAGE BANNER)
   ============================================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.82) 0%, rgba(59, 36, 24, 0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 80px;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-title em {
  font-style: italic;
  color: var(--gold-light);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.page-breadcrumb a { color: rgba(255,255,255,0.7); }
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb .separator { color: rgba(255,255,255,0.3); }

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section {
  padding: 100px 0;
  background: var(--bg);
}

.story-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-image-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.story-badge-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.story-badge-text { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   VALUES & PROCESS
   ============================================================ */
.values-section {
  padding: 100px 0;
  background: var(--cream);
}

.value-card {
  text-align: center;
  padding: 52px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
}
.value-card:hover .value-icon { transform: scale(1.2); }

.value-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Process Timeline */
.process-section {
  padding: 100px 0;
  background: var(--bg);
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.tl-item:nth-child(even) { flex-direction: row-reverse; }

.tl-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.tl-content:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.tl-num {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(200, 155, 109, 0.15);
}

.tl-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.tl-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--bg);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1.5px solid var(--accent);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 24px;
  transition: var(--transition);
  display: block;
}
.service-card:hover .service-icon { transform: scale(1.15); }

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}
.service-link:hover { gap: 14px; color: var(--primary); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section {
  padding: 80px 0 100px;
  background: var(--bg);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.filter-btn {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200, 155, 109, 0.35);
}

.masonry-grid {
  columns: 3;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover img { transform: scale(1.05); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-overlay-text {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.96);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 99999;
}
.lightbox-close:hover { background: var(--accent); border-color: var(--accent); }

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-section {
  padding: 80px 0 100px;
  background: var(--bg);
}

.project-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  margin-bottom: 40px;
}

.project-full-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.project-full-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-full-card:hover .project-full-img { transform: scale(1.04); }

.project-full-img-wrap { overflow: hidden; }

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px 36px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.project-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.project-meta-item i { color: var(--accent); font-size: 0.95rem; }

.project-body {
  padding: 36px;
}

.project-cat-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  background: rgba(200, 155, 109, 0.12);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.project-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.project-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tag {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--bg);
}

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  height: 100%;
  color: var(--white);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-subtitle {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: rgba(200, 155, 109, 0.15);
  border: 1px solid rgba(200, 155, 109, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.contact-social a {
  width: 42px;
  height: 42px;
  background: rgba(200, 155, 109, 0.12);
  border: 1px solid rgba(200, 155, 109, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.contact-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-label-jr {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.form-control-jr {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-control-jr:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 155, 109, 0.12);
}

.form-control-jr::placeholder { color: var(--muted); opacity: 0.65; }

.form-group-jr { margin-bottom: 24px; }

/* Map */
.map-section {
  padding: 0 0 100px;
  background: var(--bg);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
  filter: saturate(0.9) contrast(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(200, 155, 109, 0.4);
  padding: 4px;
  object-fit: cover;
  filter: invert(1) sepia(1) saturate(1.5) brightness(0.85);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-item i { color: var(--gold); font-size: 0.95rem; margin-top: 2px; }

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-whatsapp-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9001;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.floating-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
  animation: wa-float 3s ease-in-out infinite;
}

.floating-wa-btn:hover {
  background: #128C7E;
  color: var(--white);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.floating-wa-btn i {
  font-size: 1.2rem;
}

.floating-wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: #25D366;
  animation: wa-pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   CONTAINER & UTILITY
   ============================================================ */
.container-jr {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.text-primary-jr { color: var(--primary); }
.text-muted-jr { color: var(--muted); }
.bg-cream { background-color: var(--cream); }
.bg-white { background-color: var(--white); }

/* ============================================================
   AOS CUSTOM SETTINGS
   ============================================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }




/* ============================================================
   DARK TIMELINE FOR ABOUT PAGE
   ============================================================ */
.process-section-dark {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
}

.timeline-dark {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-dark::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: rgba(200, 155, 109, 0.3);
  transform: translateX(-50%);
}

.tl-row-dark {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 70px;
}

.tl-half {
  width: 50%;
}

.tl-date-half {
  text-align: right;
  padding-right: 40px;
}

.tl-content-half {
  text-align: left;
  padding-left: 40px;
}

.tl-row-dark:nth-child(even) {
  flex-direction: row-reverse;
}

.tl-row-dark:nth-child(even) .tl-date-half {
  text-align: left;
  padding-right: 0;
  padding-left: 40px;
}

.tl-row-dark:nth-child(even) .tl-content-half {
  text-align: right;
  padding-left: 0;
  padding-right: 40px;
}

.tl-num-gold {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.tl-col-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(200, 155, 109, 0.5);
  z-index: 2;
}

.tl-title-white {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.tl-desc-gray {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   BRAND NAME FONT FIX
   ============================================================ */
.nav-brand-text {
  font-family: var(--font-nav) !important;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-brand-name {
  font-family: var(--font-heading) !important;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.preloader-text {
  font-family: var(--font-heading) !important;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* Fix iOS background-attachment:fixed performance issue */
@media (max-width: 1024px) {
  .cta-bg {
    background-attachment: scroll;
  }
}

/* ============================================================
   RESPONSIVE â€” TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  /* Prevent any horizontal overflow globally */
  html, body { overflow-x: hidden; }
  section { overflow-x: hidden; }

  /* Fix iOS background-attachment:fixed blank page bug */
  .cta-bg { background-attachment: scroll; }

  .masonry-grid { columns: 2; column-gap: 16px; }

  .timeline::before { display: none; }
  .tl-item, .tl-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
  }

  .container-jr { padding: 0 28px; }

  .story-image-wrap img { height: 420px; }
  .project-full-img { height: 280px; }
}

/* ============================================================
   RESPONSIVE â€” MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* â”€â”€ GLOBAL â”€â”€ */
  html, body { overflow-x: hidden; }
  section { overflow-x: hidden; }

  /* Container: keep padding > Bootstrap row negative margin (12px) */
  .container-jr { padding: 0 20px; }

  /* Neutralise Bootstrap row bleed inside container-jr on mobile */
  .container-jr > .row {
    margin-left: 0;
    margin-right: 0;
  }
  .container-jr > .row > [class*="col"] {
    padding-left: 0;
    padding-right: 0;
  }

  /* Typography */
  .section-label { font-size: 0.68rem; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; }
  .section-subtitle { font-size: 0.92rem; max-width: 100%; }

  /* â”€â”€ NAVBAR â”€â”€ */
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .navbar-jrind .nav-inner { padding: 0 16px; }
  .navbar-jrind { padding: 14px 0; }
  .nav-logo-img { width: 42px; height: 42px; }
  .nav-brand-text { font-size: 0.92rem !important; }
  .nav-tagline { font-size: 0.56rem; display: block; letter-spacing: 0.08em; }

  /* â”€â”€ HERO (index page) â”€â”€ */
  .hero-section { height: 100svh; min-height: 580px; }
  .hero-content {
    padding: 0 20px !important;
    padding-top: 100px !important;
    width: 100%;
    max-width: 100%;
  }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem) !important; margin-bottom: 16px; }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 28px; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 12px; align-items: stretch; }
  .hero-actions .btn-primary-jr,
  .hero-actions .btn-outline-jr {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .hero-scroll { display: none; }

  /* â”€â”€ PAGE HERO (inner pages banner) â”€â”€ */
  .page-hero { height: 42vh; min-height: 260px; }
  .page-hero-content {
    padding: 0 20px !important;
    padding-top: 85px !important;
    width: 100%;
    max-width: 100%;
  }
  .page-title { font-size: clamp(1.8rem, 7vw, 2.6rem) !important; }

  /* â”€â”€ FEATURES SECTION (Home) â”€â”€ */
  .features-section { padding: 56px 0; }
  .feature-card { padding: 30px 22px; }
  .feature-icon { width: 58px; height: 58px; font-size: 22px; margin-bottom: 18px; }
  .feature-title { font-size: 1.1rem; }
  .feature-desc { font-size: 0.88rem; }

  /* â”€â”€ PROJECT CARDS PREVIEW (Home) â”€â”€ */
  .projects-preview { padding: 56px 0; }
  .project-card { aspect-ratio: 4/3; }
  .project-card-overlay { padding: 18px; }
  .project-card-title { font-size: 1.1rem; }

  /* â”€â”€ STATS SECTION (Home) â”€â”€ */
  .stats-section { padding: 56px 0; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item {
    border-bottom: 1px solid rgba(200, 155, 109, 0.15);
    padding: 24px 12px;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .stat-label { font-size: 0.8rem; }

  /* â”€â”€ TESTIMONIALS (Home) â”€â”€ */
  .testimonials-section { padding: 56px 0; }
  .testimonial-card { padding: 32px 20px; }
  .testimonial-text { font-size: 0.98rem; }

  /* â”€â”€ CTA SECTION (Home) â”€â”€ */
  .cta-section { padding: 68px 0; }
  .cta-content { padding: 0 4px; }
  .cta-title { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
  .cta-subtitle { font-size: 0.9rem; margin-bottom: 32px; }

  /* â”€â”€ ABOUT PAGE â€” STORY â”€â”€ */
  .story-section { padding: 56px 0; }
  .story-image-wrap img { height: 260px; }
  .story-badge { width: 88px; height: 88px; right: -6px; bottom: -8px; }
  .story-badge-num { font-size: 1.5rem; }
  .story-badge-text { font-size: 0.58rem; }

  /* â”€â”€ ABOUT PAGE â€” VALUES â”€â”€ */
  .values-section { padding: 56px 0; }
  .value-card { padding: 32px 20px; }
  .value-title { font-size: 1.1rem; }

  /* â”€â”€ ABOUT PAGE â€” DARK PROCESS TIMELINE â”€â”€ */
  .process-section-dark { padding: 56px 0; }
  .timeline-dark { padding: 0 4px; }
  .timeline-dark::before { left: 18px; }
  .tl-row-dark,
  .tl-row-dark:nth-child(even) {
    flex-direction: column !important;
    align-items: flex-start;
    margin-bottom: 36px;
    padding-left: 48px;
  }
  .tl-half,
  .tl-row-dark:nth-child(even) .tl-half {
    width: 100% !important;
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .tl-date-half,
  .tl-row-dark:nth-child(even) .tl-date-half {
    margin-bottom: 4px;
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .tl-content-half,
  .tl-row-dark:nth-child(even) .tl-content-half {
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .tl-col-dot { left: 18px; top: 18px; transform: translate(-50%, 0); }
  .tl-num-gold { font-size: 1.4rem; }
  .tl-title-white { font-size: 1.05rem; }
  .tl-desc-gray { font-size: 0.88rem; }

  /* â”€â”€ SERVICES PAGE â”€â”€ */
  .services-section { padding: 56px 0; }
  .service-card { padding: 30px 22px; }
  .service-title { font-size: 1.1rem; }
  .service-desc { font-size: 0.88rem; }

  /* â”€â”€ GALLERY PAGE â”€â”€ */
  .gallery-section { padding: 56px 0 72px; }
  .gallery-filters {
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .filter-btn { padding: 8px 16px; font-size: 0.76rem; }
  .masonry-grid { columns: 1; column-gap: 0; }
  .masonry-item { margin-bottom: 12px; }

  /* â”€â”€ PROJECTS PAGE â”€â”€ */
  .projects-section { padding: 56px 0 72px; }
  .project-full-img { height: 210px; }
  .project-meta { padding: 16px 18px; gap: 12px; }
  .project-body { padding: 22px 18px; }
  .project-heading { font-size: 1.25rem; }
  .project-desc { font-size: 0.88rem; }

  /* â”€â”€ CONTACT PAGE â”€â”€ */
  .contact-section { padding: 56px 0; }
  .contact-info-card { padding: 30px 22px; border-radius: var(--radius); }
  .contact-form-card { padding: 30px 22px; border-radius: var(--radius); }
  .contact-info-title { font-size: 1.5rem; }
  .contact-info-subtitle { font-size: 0.88rem; }
  .form-control-jr { padding: 12px 14px; font-size: 0.88rem; }

  /* â”€â”€ MAP â”€â”€ */
  .map-section { padding: 0 0 56px; }
  .map-wrap iframe { height: 280px; }

  /* â”€â”€ FOOTER â”€â”€ */
  .footer { padding: 56px 0 0; }
  .footer-desc { max-width: 100%; font-size: 0.85rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 18px 0;
    margin-top: 40px;
  }
  .footer-bottom-links { justify-content: center; gap: 14px; }
  .footer-logo-img { width: 42px; height: 42px; }

  /* â”€â”€ FLOATING WHATSAPP â”€â”€ */
  .floating-wa-btn span { display: none; }
  .floating-wa-btn { padding: 14px; border-radius: 50%; }
  .floating-whatsapp-wrap { bottom: 18px; right: 16px; }

  /* â”€â”€ BUTTONS â”€â”€ */
  .btn-primary-jr { padding: 13px 28px; font-size: 0.84rem; }
  .btn-dark-jr { padding: 13px 28px; font-size: 0.84rem; }
  .btn-outline-jr { padding: 12px 26px; font-size: 0.84rem; }
}

/* ============================================================
   RESPONSIVE â€” SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {

  .container-jr { padding: 0 16px; }

  /* Fix Bootstrap row bleed inside container-jr */
  .container-jr > .row {
    margin-left: 0;
    margin-right: 0;
  }
  .container-jr > .row > [class*="col"] {
    padding-left: 0;
    padding-right: 0;
  }

  /* Typography */
  .section-title { font-size: clamp(1.45rem, 6vw, 1.9rem) !important; }

  /* Sections â€” reduce vertical padding */
  .features-section,
  .projects-preview,
  .stats-section,
  .testimonials-section,
  .story-section,
  .values-section,
  .services-section,
  .gallery-section,
  .projects-section,
  .contact-section { padding: 44px 0; }

  /* Hero */
  .hero-content { padding: 0 16px !important; padding-top: 88px !important; }
  .hero-title { font-size: clamp(1.85rem, 9vw, 2.4rem) !important; }
  .hero-subtitle { font-size: 0.86rem; }

  /* Page hero */
  .page-hero-content { padding: 0 16px !important; padding-top: 80px !important; }
  .page-title { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }

  /* Nav */
  .nav-brand-text { font-size: 0.85rem !important; }
  .nav-tagline { font-size: 0.52rem; display: block; letter-spacing: 0.07em; }
  .nav-logo-img { width: 38px; height: 38px; }

  /* Cards */
  .feature-card,
  .service-card,
  .value-card { padding: 26px 18px; }
  .testimonial-card { padding: 28px 18px; }
  .testimonial-text { font-size: 0.92rem; }

  /* Contact */
  .contact-info-card,
  .contact-form-card { padding: 26px 16px; }

  /* Projects */
  .project-full-img { height: 190px; }
  .project-body { padding: 18px 14px; }
  .project-heading { font-size: 1.1rem; }
  .project-meta { padding: 14px 14px; }

  /* Map */
  .map-wrap iframe { height: 240px; }

  /* CTA */
  .cta-section { padding: 52px 0; }
  .cta-title { font-size: clamp(1.55rem, 7vw, 2rem) !important; }

  /* Story */
  .story-image-wrap img { height: 220px; }
  .story-badge { width: 74px; height: 74px; right: -4px; bottom: -6px; }
  .story-badge-num { font-size: 1.2rem; }

  /* Gallery */
  .filter-btn { padding: 7px 12px; font-size: 0.72rem; }

  /* Timeline dark */
  .tl-row-dark,
  .tl-row-dark:nth-child(even) { padding-left: 42px; }

  /* Footer */
  .footer { padding: 44px 0 0; }
  .footer-brand-name { font-size: 0.98rem; }
  .footer-heading { font-size: 0.92rem; }
  .footer-links a { font-size: 0.82rem; }
  .footer-contact-item { font-size: 0.82rem; }
}

/* ============================================================
   RESPONSIVE â€” EXTRA SMALL (max 360px)
   ============================================================ */
@media (max-width: 360px) {

  .container-jr { padding: 0 12px; }

  .container-jr > .row {
    margin-left: 0;
    margin-right: 0;
  }
  .container-jr > .row > [class*="col"] {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-title { font-size: 1.75rem !important; }
  .page-title { font-size: 1.6rem !important; }
  .section-title { font-size: 1.4rem !important; }
  .nav-brand-text { font-size: 0.78rem !important; }
  .nav-logo-img { width: 34px; height: 34px; }
  .nav-tagline { font-size: 0.48rem; display: block; letter-spacing: 0.06em; }

  .btn-primary-jr,
  .btn-dark-jr,
  .btn-outline-jr { padding: 12px 18px; font-size: 0.8rem; }

  .contact-info-card,
  .contact-form-card { padding: 22px 14px; }

  .feature-card,
  .service-card,
  .value-card { padding: 22px 14px; }
}
