:root {
  --cream: #faf8f4;
  --cream2: #f4f0e8;
  --warm-white: #fffdf9;
  --brown: #2c1a0e;
  --brown2: #4a2e1a;
  --gold: #c9922a;
  --gold2: #e8b04a;
  --rust: #b85c38;
  --sage: #5a7060;
  --text: #1e1208;
  --muted: #7a6a5a;
  --light-border: #e8ddd0;
  --card-bg: #ffffff;
  --section-alt: #f7f3ed;
  --red-accent: #c0392b;
  --blue-accent: #2d5a8e;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none; transition: all 0.3s;
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.wa-float svg { width: 32px; height: 32px; fill: white; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}
.wa-label {
  position: fixed; bottom: 40px; right: 96px; z-index: 9998;
  background: var(--brown); color: white; font-size: 0.78rem;
  padding: 6px 14px; border-radius: 20px; white-space: nowrap;
  font-weight: 500; opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.wa-float:hover ~ .wa-label { opacity: 1; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,253,249,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(44,26,14,0.08); }
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--brown);
}

/* first part */
.logo span {
  color: var(--brown);
}

/* second part (Tech) */
.logo span span {
  color: var(--gold);
}
.logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.logo span {
  line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--brown); }
.nav-links a.active { color: var(--brown); }
.nav-cta {
  background: var(--gold) !important; color: white !important;
  padding: 0.55rem 1.4rem; border-radius: 6px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--brown2) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: 0.3s; display: block; }

/* ─── MOBILE MENU ─── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--warm-white); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--brown); text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 20px; right: 5%;
  background: none; border: 1px solid var(--light-border);
  color: var(--brown); font-size: 1.2rem; width: 40px; height: 40px;
  border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ─── PAGE SYSTEM ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}

/* Fabric texture overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(201,146,42,0.04) 20px),
    repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(201,146,42,0.04) 20px);
  pointer-events: none;
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,146,42,0.12); border: 1px solid rgba(201,146,42,0.3);
  color: var(--brown2); font-size: 0.75rem; font-weight: 600;
  padding: 0.35rem 1rem; border-radius: 4px; margin-bottom: 1.5rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: fadeUp 0.7s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--brown); margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em {
  font-style: italic; color: var(--gold);
}
.hero-desc {
  font-size: 1rem; line-height: 1.75; color: var(--muted);
  max-width: 480px; margin-bottom: 2.2rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-gold {
  background: var(--gold); color: white;
  padding: 0.85rem 2rem; border-radius: 6px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--brown2); border-color: var(--brown2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,146,42,0.3); }
.btn-outline {
  background: transparent; color: var(--brown);
  padding: 0.85rem 2rem; border-radius: 6px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}


.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--light-border);
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat-n { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--brown); line-height: 1; }
.stat-n span { color: var(--gold); }
.stat-l { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* ─── HERO MACHINE VISUAL ─── */
.hero-visual {
  position: relative; height: 520px;
  animation: fadeUp 0.9s 0.2s ease both;
}
/* Floating image cards */
.float-img {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(44,26,14,0.15);
  overflow: hidden;
  border: 3px solid white;
  transition: transform 0.4s;
}

.float-img:hover {
  transform: scale(1.03) translateY(-4px) !important;
}

/* IMAGE + VIDEO BOTH FIX */
.float-img img,
.float-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  
}
.img-placeholder img,
.img-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Floating cards */
.fi1 { width: 260px; height: 180px; top: 0; left: 0; animation: float1 5s ease-in-out infinite; z-index: 3; }
.fi2 { width: 200px; height: 220px; top: 60px; right: 0; animation: float2 6s ease-in-out infinite; z-index: 2; }
.fi3 { width: 220px; height: 150px; bottom: 80px; left: 40px; animation: float1 7s 1s ease-in-out infinite; z-index: 3; }
.fi4 { width: 180px; height: 160px; bottom: 20px; right: 30px; animation: float2 5.5s 0.5s ease-in-out infinite; z-index: 2; }

/* Animations */
@keyframes float1 {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes float2 {
  0%,100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(-1.5deg); }
}

/* Badge */
.img-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(44,26,14,0.75);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--brown);
  padding: 1.2rem 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.85); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.03em;
}
.trust-icon { font-size: 1rem; color: var(--gold2); }

/* ─── SECTIONS ─── */
section { padding: 5rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
h2.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--brown);
  letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 0.8rem;
}
h2.sec-title span { color: var(--gold); }
.sec-sub {
  color: var(--muted); font-size: 0.97rem; line-height: 1.75;
  max-width: 540px; margin-bottom: 3rem;
}
.alt-bg { background: var(--section-alt); }

/* ─── PRIMARY SERVICES (Big Cards) ─── */
.main-service-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5px; background: var(--light-border);
  border: 1px solid var(--light-border); border-radius: 14px; overflow: hidden;
}
.main-svc-card {
  background: var(--card-bg); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  background-color: #c9922a;
  
}



/* ===== SERVICE CARD TEXT WHITE FIX ===== */
.main-svc-card p,
.main-svc-card .svc-features li {
  color: #ffffff !important;
}

.main-svc-card .svc-features li::before {
  color: #ffffff;
}

/* ===== ICON IMAGE FIX ===== */
.svc-icon-wrap img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

/* optional center fix (safe) */
.svc-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-svc-card:hover { background: #c9922a; }
.main-svc-card.primary-card {
  background: var(--brown);
}
.main-svc-card.primary-card:hover { background: var(--brown2); }
.svc-icon-wrap {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.5rem;
}
.icon-warm { background: rgba(201,146,42,0.12); border: 1.5px solid rgba(201,146,42,0.25); }
.icon-light { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.2); }
.icon-blue { background: rgba(45,90,142,0.1); border: 1.5px solid rgba(45,90,142,0.2); }
.icon-sage { background: rgba(90,112,96,0.1); border: 1.5px solid rgba(90,112,96,0.2); }
.svc-tag {
  display: inline-block; font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700;
  padding: 0.22rem 0.7rem; border-radius: 3px; margin-bottom: 1rem;
  
}
.tag-gold { background: rgba(201,146,42,0.15); color: var(--gold); }
.tag-white { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.tag-blue { background: rgba(45,90,142,0.1); color: var(--blue-accent); }
.tag-sage { background: rgba(90,112,96,0.1); color: var(--sage); }
.main-svc-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; margin-bottom: 0.8rem;
  line-height: 1.25; letter-spacing: -0.01em;
}
.main-svc-card.primary-card h3 { color: white; }
.main-svc-card p { font-size: 0.88rem; line-height: 1.7; color: var(--muted); margin-bottom: 1.5rem; }
.primary-card p { color: rgba(255,255,255,0.7); }
.svc-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.8rem; }
.svc-features li { font-size: 0.83rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.svc-features li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 0.8rem; }
.primary-card .svc-features li { color: rgba(255,255,255,0.75); }
.primary-card .svc-features li::before { color: var(--gold2); }
.svc-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  color: var(--gold); transition: gap 0.2s;
}
.svc-cta:hover { gap: 0.8rem; }
.primary-card .svc-cta { color: var(--gold2); }
.primary-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--gold); color: var(--brown);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 3px;
}

/* ─── OTHER SERVICES ─── */
.other-services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem; margin-top: 1.5rem;
}
.other-svc-card {
  background: white; border: 1px solid var(--light-border);
  border-radius: 12px; padding: 1.8rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.other-svc-card:hover {
  border-color: rgba(201,146,42,0.35);
  box-shadow: 0 6px 24px rgba(201,146,42,0.1);
  transform: translateY(-3px);
}
.other-svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  opacity: 0; transition: opacity 0.3s;
}
.other-svc-card:hover::before { opacity: 1; }
.other-svc-card .svc-icon-wrap { width: 44px; height: 44px; border-radius: 10px; font-size: 1.3rem; margin-bottom: 1rem; }
.other-svc-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--brown);
}
.other-svc-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* ─── WORK GALLERY (Main Page Preview) ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr; /* IMPORTANT: equal row height */
  gap: 1rem;
  align-items: stretch;
}

/* CARD */
.gallery-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--light-border);
  transition: all 0.35s;
  cursor: pointer;
  position: relative;

  display: flex;          /* FIX */
  flex-direction: column; /* FIX */
}

/* hover */
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,26,14,0.14);
  border-color: rgba(201,146,42,0.3);
}

/* REMOVE inconsistent stretching issue */
.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

/* THUMB FIX */
.g-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;   /* FIXED uniform square */
  overflow: hidden;
  position: relative;
  flex-shrink: 0;        /* FIX */
}

/* wide/tall overrides still safe */
.gallery-card.wide .g-thumb {
  aspect-ratio: 2 / 1;
}

.gallery-card.tall .g-thumb {
  aspect-ratio: 1 / 2;
}

/* INNER CONTENT FIX */
.g-thumb-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  transition: transform 0.4s;
}

/* image fix */
.g-thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* hover zoom */
.gallery-card:hover .g-thumb-inner {
  transform: scale(1.05);
}

/* overlay */
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.gallery-card:hover .g-overlay {
  opacity: 1;
}

/* text */
.g-overlay span {
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.g-overlay h4 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.g-info {
  padding: 0.8rem 1rem 1rem;
  flex-grow: 1; /* FIX alignment bottom */
}

.g-cat {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.g-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
}


/* ─── PROCESS ─── */
.process-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative; margin-top: 1rem;
}
.process-row::after {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 12px, transparent 12px, transparent 22px);
  opacity: 0.4;
}
.proc-step {
  text-align: center; padding: 0 1rem;
  position: relative; z-index: 1;
}
.proc-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: white; border: 2px solid var(--light-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--brown); transition: all 0.3s;
}
.proc-step:hover .proc-num {
  background: var(--gold); color: white; border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201,146,42,0.35);
}
.proc-step h4 { font-weight: 700; font-size: 0.9rem; color: var(--brown); margin-bottom: 0.4rem; }
.proc-step p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: white; border: 1px solid var(--light-border);
  border-radius: 12px; padding: 1.8rem; transition: all 0.3s;
}
.testi-card:hover { box-shadow: 0 8px 30px rgba(44,26,14,0.1); border-color: rgba(201,146,42,0.25); transform: translateY(-2px); }
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; line-height: 1.7; color: var(--brown); margin-bottom: 1.2rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--light-border); }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: white; flex-shrink: 0;
}
.ta1 { background: var(--gold); }
.ta2 { background: var(--blue-accent); }
.ta3 { background: var(--sage); }
.ta4 { background: var(--rust); }
.t-name { font-weight: 600; font-size: 0.88rem; color: var(--brown); }
.t-role { font-size: 0.75rem; color: var(--muted); }

/* ─── PRICING CARDS ─── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.price-card {
  background: #c9922a; border: 1.5px solid var(--light-border);
  border-radius: 14px; padding: 2rem; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.price-card.featured {
  background: var(--brown); border-color: var(--brown);
}
.price-card:hover:not(.featured) { border-color: var(--gold); box-shadow: 0 10px 36px rgba(201,146,42,0.12); transform: translateY(-4px); }
.price-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; color: white; }
.featured .price-label { color: rgba(255,255,255,0.55); }
.price-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--brown); margin-bottom: 1rem; color: white;}
.featured .price-name { color: white; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--brown); line-height: 1; margin-bottom: 0.3rem;color: white; }
.price-amount sup { font-size: 1rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; color: white; }
.featured .price-amount { color: var(--gold2); }
.price-unit { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.5rem; color: white; }
.featured .price-unit { color: rgba(255,255,255,0.5); }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.8rem; }
.price-feats li { font-size: 0.83rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; color: white;}
.price-feats li::before { content: '✓'; color: black; font-weight: 700; flex-shrink: 0; }
.featured .price-feats li { color: rgba(255,255,255,0.75); }
.featured .price-feats li::before { color: var(--gold2); }
.popular-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--gold); color: var(--brown);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.22rem 0.6rem; border-radius: 3px;
}

/* ─── PORTFOLIO PAGE ─── */
.portfolio-filters {
  display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.filter-btn {
  background: white; border: 1px solid var(--light-border);
  color: var(--muted); font-size: 0.82rem; font-weight: 500;
  padding: 0.5rem 1.2rem; border-radius: 6px; cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); border-color: var(--gold); color: white;
}
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: start;
}
.port-item {
  border-radius: 10px; overflow: hidden;
  background: white; border: 1px solid var(--light-border);
  transition: all 0.35s; cursor: pointer;
}
.port-item:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(44,26,14,0.13); }
.port-thumb-lg {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; position: relative; overflow: hidden;
}
.port-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem; transition: transform 0.4s;
}

.port-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.port-item:hover .port-inner { transform: scale(1.06); }
.port-hover {
  position: absolute; inset: 0;
  background: rgba(44,26,14,0.7); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.port-item:hover .port-hover { opacity: 1; }
.port-hover-text { color: white; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.port-details { padding: 1rem 1.2rem 1.2rem; }
.port-details .g-cat { margin-bottom: 0.3rem; }
.port-details h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--brown); margin-bottom: 0.3rem; }
.port-details p { font-size: 0.8rem; color: var(--muted); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b8821a 100%);
  padding: 5rem 5%; text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: white; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 480px; margin: 0 auto 2.2rem; line-height: 1.7; }
.btn-white {
  background: white; color: var(--brown);
  padding: 0.9rem 2.2rem; border-radius: 6px;
  font-weight: 700; font-size: 0.92rem;
  text-decoration: none; transition: all 0.25s; border: 2px solid white;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-white:hover { background: var(--brown); color: white; border-color: white; transform: translateY(-2px); }
.btn-wh-outline {
  background: transparent; color: white;
  padding: 0.9rem 2.2rem; border-radius: 6px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none; transition: all 0.25s; border: 2px solid rgba(255,255,255,0.5);
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-left: 1rem;
}
.btn-wh-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ─── FOOTER ─── */
footer {
  background: var(--brown); padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto 3rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: white;
  display: block; margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold2); }
.footer-about { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.75; max-width: 240px; margin-bottom: 1.5rem; }
.social-row { display: flex; gap: 0.7rem; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.soc-btn:hover { background: var(--gold); border-color: var(--gold); color: white; }
.footer-col h5 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,0.35); font-size: 0.8rem; flex-wrap: wrap; gap: 0.8rem;
}

/* ─── REVEAL ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .main-service-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.wide { grid-column: span 1; }
  .gallery-card.tall { grid-row: span 1; }
  .portfolio-masonry { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; margin-top: 2rem; }
  .fi1 { width: 180px; height: 120px; }
  .fi2 { width: 150px; height: 160px; top: 40px; }
  .fi3 { width: 160px; height: 110px; bottom: 40px; left: 10px; }
  .fi4 { width: 130px; height: 120px; bottom: 10px; right: 10px; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .process-row::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .portfolio-masonry { grid-template-columns: 1fr; }
  .main-service-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .process-row { grid-template-columns: 1fr; }
  .trust-bar { gap: 1.2rem; }
}

@media (max-width: 768px) {
  .logo img {
    width: 26px;
    height: 26px;
  }
}

/* ============= WHY CHOOSE US ============= */
/* Why Choose Us Section – Complete CSS */

.brand-highlight-area {
  background: linear-gradient(145deg, #07070c 0%, #0d0d15 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.brand-highlight-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 40%, rgba(201, 146, 42, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.intro-head {
  text-align: center;
  margin-bottom: 4rem;
}

.badge-tag {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: #c9922a;
  background: rgba(201, 146, 42, 0.1);
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 40px;
  backdrop-filter: blur(2px);
  margin-bottom: 1rem;
}

.main-heading {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 70%, #e6b450 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}

.main-heading span {
  background: linear-gradient(135deg, #c9922a, #f5c542);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.description-text {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0.75rem auto 0;
  font-size: 1rem;
  line-height: 1.6;
}

.benefits-flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.virtue-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: rgba(12, 12, 20, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  border: 1px solid rgba(201, 146, 42, 0.2);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  padding: 1.8rem 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
}

.virtue-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 146, 42, 0.5);
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 146, 42, 0.2);
  background: rgba(18, 18, 28, 0.8);
}

.icon-container {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 🔥 soft premium glow (no hard circle) */
  background: radial-gradient(circle, rgba(201,146,42,0.08) 0%, transparent 70%);

  border-radius: 50%;
  transition: all 0.3s ease;
}

/* hover effect (optional but recommended) */
.virtue-card:hover .icon-container {
  transform: scale(1.05);
  background: radial-gradient(circle, rgba(201,146,42,0.12) 0%, transparent 70%);
}

.virtue-card:hover .icon-container {
  background: rgba(201, 146, 42, 0.15);
  transform: scale(1.02);
}

.virtue-card h4 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #fff, #e0e0e0);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.2px;
}

.virtue-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: 0.5rem;
}

/* Reveal animations */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100.active {
  transition-delay: 0.1s;
}

.delay-200.active {
  transition-delay: 0.2s;
}

.delay-300.active {
  transition-delay: 0.3s;
}



.icon-container svg {
  transition: transform 0.3s ease;
}

.virtue-card:hover svg {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 750px) {
  .brand-highlight-area {
    padding: 3rem 1.25rem;
  }
  .main-heading {
    font-size: 2rem;
  }
  .virtue-card {
    padding: 1.5rem 1.2rem;
    max-width: 100%;
  }
  .benefits-flex-row {
    gap: 1.5rem;
  }
}

/* Optional keyframes (if needed for future enhancements) */
@keyframes softPulse {
  0% { opacity: 0.3; transform: scale(0.9); }
  100% { opacity: 0.9; transform: scale(1.2); }
}




/* ===============CONTACT FORM================*/

.contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(12px);
            border-radius: 48px;
            padding: 48px;
            box-shadow: var(--shadow-lg);
        }
        .contact-info i { color: var(--primary); margin-right: 12px; width: 24px; }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 16px 20px;
            margin-bottom: 20px;
            border: 1px solid #e2e8f0;
            border-radius: 30px;
            font-family: inherit;
            font-size: 1rem;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(59,40,204,0.1);
        }




        /* ================== Service color ===================*/
        .service-section-color{
          color: white;
        }




        /* ------------CONTACT FORM--------------*/

        /* ===== CONTACT FIX ===== */

/* icon color fix */
.contact-info i {
  color: var(--gold) !important;
  font-size: 1rem;
}

/* text color fix */
.contact-info p {
  color: var(--muted);
}

/* social icons */
.contact-info a {
  color: var(--gold);
  transition: 0.3s;
}
.contact-info a:hover {
  color: var(--brown);
}

/* button fix */
.btn-primary {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--brown);
}

/* input focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,146,42,0.2);
}


/* ===== CONTACT ICON COLOR FIX ===== */
.contact-info div i {
  color: #c9922a !important; /* gold color */
  margin-right: 10px;
}


.contact-info i.fas,
.contact-info i.fab {
  color: #c9922a !important;
}


/* ====================== CARD BASE =========================== */
.gd-card {
  background: #f4f1ec;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e6ded3;
  transition: all 0.3s ease;
}

.gd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ===== IMAGE AREA ===== */
.gd-thumb {
  position: relative;
  width: 100%;
  height: 260px;
  background: #ddd;
  overflow: hidden;
}

.gd-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* ===== HOVER ===== */
.gd-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.gd-hover span {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  border: 1px solid #fff;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Hover trigger */
.gd-thumb:hover .gd-hover {
  opacity: 1;
}

.gd-card:hover .gd-img {
  transform: scale(1.05);
}

/* ===== TEXT ===== */
.gd-info {
  padding: 18px;
  background: #f4f1ec;
}

.gd-tag {
  font-size: 12px;
  color: #c9922a;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.gd-info h3 {
  font-size: 18px;
  color: #2c1a0e;
  margin: 0;
}

/* ===== RESPONSIVE ===== */

/* Laptop */
@media (max-width: 1200px) {
  .gd-thumb {
    height: 240px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .gd-thumb {
    height: 220px;
  }

  .gd-info {
    padding: 16px;
  }

  .gd-info h3 {
    font-size: 16px;
  }
}

/* Mobile (2 column layout control if needed) */
@media (max-width: 768px) {

  .gd-grid,
  .logo-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px;
  }

  .gd-thumb {
    height: 200px;
  }

  .gd-tag {
    font-size: 11px;
  }

  .gd-info h3 {
    font-size: 15px;
  }
}

/* Small Mobile (1 column) */
@media (max-width: 480px) {

  .gd-grid,
  .logo-grid {
    grid-template-columns: 1fr !important;
  }

  .gd-thumb {
    height: 180px;
  }

  .gd-info {
    padding: 14px;
  }

  .gd-info h3 {
    font-size: 14px;
  }
}



/* =========== graphic designing ===========*/

.graphic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* card */
.graphic-grid .port-item {
  background: var(--card-bg);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--light-border);
  transition: 0.3s ease;
}

.graphic-grid .port-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* image area */
.graphic-grid .port-thumb-lg {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.graphic-grid .port-thumb-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* hover zoom */
.graphic-grid .port-item:hover img {
  transform: scale(1.05);
}

/* hover layer */
.graphic-grid .port-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.graphic-grid .port-item:hover .port-hover {
  opacity: 1;
}

.graphic-grid .port-hover-text {
  color: white;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid white;
  padding: 6px 12px;
  border-radius: 20px;
}

/* text */
.graphic-grid .port-details {
  padding: 12px;
  text-align: center;
}

.graphic-grid .port-details h3 {
  font-size: 15px;
  color: var(--brown);
  margin: 0;
}


@media (max-width: 992px) {
  .graphic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .graphic-grid {
    grid-template-columns: 1fr;
  }
}


/* --------------------------Floating video fix--------------------------*/

.float-img {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden !important;
  background: #ffffff;
  box-shadow: 0 0 0 1px #ffffff; /* seals edges */
}

.float-img video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transform-origin: center center;
  outline: none;
  border: none;
  background: #ffffff;
}

.img-placeholder {
  line-height: 0;
  font-size: 0;
  background: transparent;
}



/* ================= fix ======================= */


/* ===== ALIGNMENT FIXES ===== */

/* 1. Hero floating cards - mobile fix */
@media (max-width: 768px) {
  .hero-visual {
    position: relative;
    height: auto !important;
    min-height: 380px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .float-img {
    position: relative !important;
    width: calc(50% - 0.5rem) !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    animation: none !important;
  }
  
  .fi1, .fi2, .fi3, .fi4 {
    width: 160px !important;
    height: 120px !important;
  }
}

@media (max-width: 480px) {
  .float-img {
    width: calc(50% - 0.5rem) !important;
  }
  .fi1, .fi2, .fi3, .fi4 {
    width: 140px !important;
    height: 105px !important;
  }
}

/* 2. Service cards - fix invisible link text (gold on gold) */
.main-svc-card:not(.primary-card) .svc-cta {
  color: white !important;
  background: rgba(0,0,0,0.25);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.main-svc-card:not(.primary-card) .svc-cta:hover {
  background: rgba(0,0,0,0.4);
  gap: 0.8rem;
}

/* 3. Fix primary card link */
.primary-card .svc-cta {
  color: var(--gold2) !important;
  background: transparent;
  padding: 0;
}

/* 4. Gallery grid - equal height fix */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.gallery-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.g-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* 5. Pricing cards - button alignment fix */
.price-card .btn-outline,
.price-card .btn-gold {
  display: block !important;
  width: 100%;
  text-align: center;
  padding: 0.7rem !important;
  font-size: 0.85rem;
  box-sizing: border-box;
}

.price-card .btn-outline {
  background-color: #1e1208 !important;
  color: white !important;
  border: none;
}

.price-card .btn-outline:hover {
  background-color: var(--brown2) !important;
}

/* 6. Contact form - responsive alignment */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-wrapper {
    padding: 1.5rem;
    border-radius: 32px;
  }
  
  .contact-info h3 {
    font-size: 1.5rem !important;
  }
}

/* 7. Process row on tablet - fix spacing */
@media (max-width: 768px) {
  .process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .proc-step {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .process-row {
    grid-template-columns: 1fr;
  }
}

/* 8. Hero stats - better mobile alignment */
@media (max-width: 640px) {
  .hero-stats {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .hero-stats > div {
    flex: 1;
    min-width: 80px;
    text-align: center;
  }
  
  .stat-n {
    font-size: 1.5rem;
  }
}

/* 9. Trust bar - better wrap alignment */
.trust-bar {
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .trust-bar {
    gap: 0.8rem;
  }
  .trust-item {
    font-size: 0.7rem;
  }
}

/* 10. Portfolio filter buttons - responsive */
@media (max-width: 640px) {
  .portfolio-filters {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .filter-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

/* 11. Footer alignment */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-row {
    justify-content: center;
  }
}

/* 12. CTA buttons alignment */
.cta-banner .btn-white,
.cta-banner .btn-wh-outline {
  display: inline-block;
  margin: 0.5rem;
}

@media (max-width: 480px) {
  .cta-banner .btn-white,
  .cta-banner .btn-wh-outline {
    display: block;
    margin: 0.8rem auto;
    width: fit-content;
  }
}

/* 13. Portfolio grid consistent spacing */
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

@media (max-width: 992px) {
  .portfolio-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .portfolio-masonry {
    grid-template-columns: 1fr;
  }
}

/* 14. Service cards - ensure consistent height on tablet */
@media (max-width: 1024px) {
  .main-service-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .main-svc-card {
    height: 100%;
  }
}

@media (max-width: 640px) {
  .main-service-grid {
    grid-template-columns: 1fr;
  }
}