/* ================================================
   LOREM IPSUM DOLOR SIT – style.css
   ================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --color-dark: #192324;
  --color-dark-2: #283132;
  /* --color-gold: #38B6FF;
  --color-gold-dark: #3182b1; */
  --color-gold: #38B6FF;
  --color-gold-dark: #3182b1;
  --color-bg-light: #F8F8F8;
  --color-white: #FFFFFF;
  --color-text: #283132;
  --color-text-muted: #6b7c7d;
  --color-divider: #EAF0EC;
  --color-divider-dk: rgba(255, 255, 255, 0.1);
  --font-main: 'Hanken Grotesk', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.22);
  --radius: 4px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-padding {
  padding: 100px 0;
}

.bg-light {
  background: var(--color-bg-light);
}

.bg-dark {
  background: var(--color-dark);
}

.text-gold {
  color: var(--color-gold);
}

.section-title {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.section-title.light {
  color: var(--color-white);
}

/* ---------- Eyebrow Label ---------- */
.eyebrow-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow-label.light {
  color: var(--color-gold);
}

.eyebrow-line {
  display: inline-block;
  width: 30px;
  height: 1.5px;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.02em;
  cursor: pointer;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-dark);
  border: 2px solid var(--color-gold);
}

.btn-gold:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 165, 104, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  z-index: 5;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 35, 36, 0.75);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  margin-top: 80px;
}

.page-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb a {
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.breadcrumb .sep {
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--color-gold);
}

/* ================================================
   HEADER / NAVBAR
   ================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  /* background-color: #192324; */
  /* background-color: transparent; */
}

.site-header.scrolled {
  /* background: rgba(25, 35, 36, 0.97); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3); */
 display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}



.logo-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.logo-subtitle {
  font-size: 9px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.25em;
  margin-top: 2px;
}

/* Nav */
.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header CTA */
.header-cta {
  padding: 12px 22px;
  font-size: 14px;
  flex-shrink: 0;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero_interior.png');
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(25, 35, 36, 0.88) 0%,
      rgba(25, 35, 36, 0.55) 55%,
      rgba(25, 35, 36, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 780px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
   margin-top: 150px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow .eyebrow-line {
  background: var(--color-gold);
}

.hero-title {
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.06;
  margin-bottom: 24px;
 
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.4s forwards;
}

.hero-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.6s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.8s forwards;
}



/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
  position: relative;
  background: var(--color-white);
  overflow: hidden;
}

.about-blueprint-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 165, 104, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 165, 104, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

/* About Images */
.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-side {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 56%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--color-white);
}

.about-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badges */
.about-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 6px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
}

.badge-experience {
  bottom: 50px;
  left: -10px;
  flex-direction: column;
  text-align: center;
  min-width: 110px;
}

.badge-feedback {
  top: 30px;
  right: -15px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 90px;
}

.badge-num {
  font-size: 38px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.badge-num.small {
  font-size: 30px;
}

.badge-plus,
.badge-percent {
  font-size: 20px;
  color: var(--color-gold);
  font-weight: 700;
}

.badge-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.badge-vertical-text {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin-bottom: 8px;
}

/* About Content */
.about-desc {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.75;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-gold);
  color: var(--color-dark);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.about-footer {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.about-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 165, 104, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.phone-details {
  display: flex;
  flex-direction: column;
}

.phone-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.phone-details a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition);
}

.phone-details a:hover {
  color: var(--color-gold);
}

/* ================================================
   VISION & MISSION
   ================================================ */
.vision {
  background: var(--color-white);
  border-top: 1px solid var(--color-divider);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vision-desc {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.value-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  padding: 6px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.value-text p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Vision Images Grid */
.vision-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 480px;
}

.vision-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform var(--transition);
}

.vision-img-grid img:hover {
  transform: scale(1.03);
}

.vision-img-grid img:nth-child(1) {
  border-radius: 6px 6px 0 6px;
}

.vision-img-grid img:nth-child(4) {
  border-radius: 6px 0 6px 6px;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
  background: var(--color-white);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 56px;
}

.services-header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services-header-right p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Service Card */
.service-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 460px;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(25, 35, 36, 0.95) 0%,
      rgba(25, 35, 36, 0.3) 55%,
      transparent 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(60px);
  transition: transform var(--transition);
}

.service-card:hover .service-overlay {
  transform: translateY(0);
}

.service-tag {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  width: fit-content;
}

.service-overlay h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 18px;
  opacity: 0;
  transition: opacity var(--transition) 0.05s;
}

.service-card:hover .service-overlay p {
  opacity: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 600;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 10px;
}

/* ================================================
   PROJECTS SECTION
   ================================================ */
.projects-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.projects-header-right p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid #ddd;
  border-radius: 30px;
  transition: all var(--transition);
  background: transparent;
}

.filter-tab:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.filter-tab.active {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  background: var(--color-dark);
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 35, 36, 0.95) 0%, rgba(25, 35, 36, 0.4) 50%, transparent 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.9;
  transition: background 0.4s ease, opacity 0.4s ease;
}

.project-item:hover img {
  transform: scale(1.1);
}

.project-item:hover .project-info {
  background: linear-gradient(to top, rgba(25, 35, 36, 1) 0%, rgba(25, 35, 36, 0.7) 100%);
  opacity: 1;
}

.project-cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 15px;
  max-width: 80%;
}

/* Premium Circular Arrow Button */
.project-arrow-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  background: var(--color-gold);
  color: var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transform: translate(15px, -15px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-item:hover .project-arrow-btn {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.project-link {
  display: none;
}

/* Replaced by circular button */

/* ================================================
   PROJECT DETAILS PAGE (CASE STUDY)
   ================================================ */
.project-details-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: start;
}

/* Sidebar Sticky */
.project-sidebar {
  position: sticky;
  top: 130px;
  z-index: 10;
  height: fit-content;
}

.help-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.help-card-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.help-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-card-content {
  padding: 30px 30px 40px;
}

.help-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.help-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
}

.help-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.help-contact-item:last-child {
  margin-bottom: 0;
}

.help-icon-circle {
  width: 40px;
  height: 40px;
  background: #f4f4f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 16px;
  flex-shrink: 0;
}

.help-info h5 {
  display: none;
  /* Simplification per reference */
}

.help-info p {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0;
}

/* Project Main Content */
.project-main-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.project-hero-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.p-details-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 25px;
  position: relative;
}

.p-details-section p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Highlights List */
.highlights-list {
  list-style: none;
  display: grid;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.highlight-item .check-circle {
  width: 22px;
  height: 22px;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Project Info Grid (Metas) */
.project-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: #fcfcfc;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.meta-item h4 {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.meta-item p {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(197, 165, 104, 0.8);
  color: var(--color-dark);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}


.project-item.hidden {
  display: none;
}

/* ================================================
   HOW WE WORK
   ================================================ */
.how-we-work {
  text-align: center;
}

.how-we-work .eyebrow-label {
  justify-content: center;
}

.how-we-work .section-title {
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(197, 165, 104, 0.3), rgba(197, 165, 104, 0.3), transparent);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  margin-bottom: -8px;
}

.step-icon {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(197, 165, 104, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  transition: all var(--transition);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.process-step:hover .step-icon {
  border-color: var(--color-gold);
  background: rgba(197, 165, 104, 0.08);
  transform: scale(1.08);
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
}

.process-step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ================================================
   EXPERTISE
   ================================================ */
.expertise {
  position: relative;
  background: var(--color-white);
  overflow: hidden;
}

.expertise-blueprint-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 165, 104, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 165, 104, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.expertise-content p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.skills {
  display: flex;
  flex-direction: column;
  gap: 24px;
}



.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.skill-pct {
  color: var(--color-gold);
}

.skill-track {
  height: 5px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
}

.skill-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold));
  border-radius: 10px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Expertise Images */
.expertise-images {
  position: relative;
  height: 500px;
}

.expertise-img-main {
  width: 75%;
  height: 80%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.expertise-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--color-white);
}

.expertise-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials .container {
  max-width: 1100px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Testimonials Left */
.testimonials-left {
  position: relative;
  height: 520px;
}

.testimonials-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.rating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 8px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 160px;
}

.rating-stars {
  color: var(--color-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.rating-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 4px;
}

.rating-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* Testimonial Slider */
.testimonial-slider {
  margin: 32px 0;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-mark {
  font-size: 80px;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.author-info span {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-dark);
  transition: all var(--transition);
}

.slider-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(197, 165, 104, 0.08);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

/* ================================================
   BLOG SECTION
   ================================================ */
.blog-header {
  margin-bottom: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.blog-content h3 a {
  transition: color var(--transition);
}

.blog-content h3 a:hover {
  color: var(--color-gold);
}

.blog-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold);
  transition: gap var(--transition), letter-spacing var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more:hover {
  letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */
.footer {
  padding: 80px 0 40px;
  background: var(--color-dark);
}

.footer-top {
  display: block;
  /* Removed flex since children are stacked or grids */
}

.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-socials-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-socials-wrap .social-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #38B6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-link i {
  font-size: 16px;
}

.social-link:hover {
  background: #38B6FF;
  color: #fff;
  transform: translateY(-2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-white);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-info-item {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-newsletter p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 30px;
}

.newsletter-form-wrap {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.newsletter-form-wrap input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 15px;
  padding: 5px 40px 5px 0;
  outline: none;
}

.newsletter-form-wrap button {
  position: absolute;
  right: 0;
  background: transparent;
  border: none;
  color: var(--color-gold);
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-form-wrap button:hover {
  transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

/* ================================================
   SCROLL TO TOP
   ================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  color: var(--color-dark);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-dark);
  color: var(--color-gold);
  transform: translateY(-4px);
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.footer-col h4 {
  margin-bottom: 20px;
}

/* ================================================
   RESPONSIVE – TABLET
   ================================================ */

   /* ── Dropdown base (all viewports) ── */
   
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(25, 35, 36, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 260px;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown.mobile-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s, padding-left 0.2s;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--color-gold);
  padding-left: 28px;
}

/* ── Mobile (≤768px): dropdown stacks inside the fullscreen nav ── */
/* @media (max-width: 768px) {
  .nav-item-dropdown {
    position: static;
  }

  .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    margin-top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .nav-item-dropdown.mobile-open .nav-dropdown {
    opacity: 1;
    max-height: 300px;
    pointer-events: auto;
    padding: 8px 0;
    margin-top: 8px;
  }

  .nav-dropdown a {
    font-size: 16px;
    padding: 10px 20px;
    color: rgba(255,255,255,0.7);
  }
} */

@media (max-width: 1024px) {

  .about-grid,
  .vision-grid,
  .expertise-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid,
  .projects-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-header {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .about-images {
    height: 420px;
  }

  .testimonials-left {
    height: 360px;
  }

  .services-header,
  .projects-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vision-img-grid {
    height: 360px;
  }
}

/* ================================================
   RESPONSIVE – MOBILE
   ================================================ */
@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }

    .main-nav {
    position: fixed;
    inset: 0;
    background: #192324;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1001;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 28px;
  }

  .nav-link {
    font-size: 22px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .about-images {
    height: 320px;
  }

  .about-img-side {
    width: 45%;
    height: 50%;
  }

  .services-grid,
  .projects-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .main-nav ul {
    list-style: none;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .testimonials-grid {
    gap: 32px;
  }

  .testimonials-left {
    height: 280px;
  }

  .rating-badge {
    right: 0;
    bottom: -16px;
  }

  .vision-img-grid {
    height: 260px;
  }

  .expertise-images {
    height: 320px;
  }
  .nav-item-dropdown {
    position: static;
  }

  .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  .nav-item-dropdown.mobile-open .nav-dropdown {
    opacity: 1;
    max-height: 300px;
    pointer-events: auto;
    padding: 8px 0;
    margin-top: 8px;
  }

  .nav-dropdown a {
    font-size: 16px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.7);
  }
}

  
  @media (max-width: 991px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: #192324;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1001;
  }

  .main-nav.open {
    transform: translateX(0);
    background: #192324;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 28px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}
