/* ── RESET & TOKENS ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --deep-teal:  #08595E;
  --mid-teal:   #0A8A8F;
  --aqua:       #00C8C8;
  --pool-aqua:  #00AFB9;
  --mist:       #E8F6F7;
  --ink:        #0D1F22;
  --sand:       #F5F0EA;
  --white:      #FFFFFF;
  --gray:       #6b7c7e;
  --rule:       #D8ECEE;
  --orange:     #08595E;
  --orange-hover: #0A8A8F;
  --grad: linear-gradient(160deg,#08595E 0%,#0A8A8F 55%,#00C8C8 100%);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Outfit', sans-serif;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--ink); background: #fff; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── UTILITY ──────────────────────────────────────── */
.label {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--pool-aqua);
}
.serif { font-family: var(--serif); }
.teal-line {
  display: block; width: 40px; height: 2px;
  background: var(--grad); margin: 16px 0 24px;
}
.btn {
  display: inline-block;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; padding: 14px 36px;
  border: 1.5px solid var(--deep-teal); color: var(--deep-teal);
  transition: background .3s, color .3s, border-radius .3s;
  cursor: pointer; background: transparent;
  border-radius: 35px 14px 30px 18px;
}
.btn:hover, .btn-solid { background: var(--deep-teal); color: #fff; }
.btn-solid { border-color: var(--deep-teal); }
.btn-white { border-color: #fff; color: #fff; }
.btn-white:hover { background: #fff; color: var(--deep-teal); }

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── NAVIGATION ───────────────────────────────────── */
nav {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%); z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  width: 95%; max-width: 1250px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 40px 16px 36px 20px;
  transition: background .4s, padding .4s, box-shadow .4s, border-color .4s, top .4s, width .4s;
}
nav.scrolled {
  top: 16px;
  background: #ffffff; /* Solid white background */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 40px;
  box-shadow: 0 10px 40px rgba(8, 89, 94, 0.08);
  border: 1px solid rgba(8, 89, 94, 0.1);
  border-radius: 40px 16px 36px 20px;
}
.nav-logo {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  letter-spacing: .1em; color: #fff;
  display: flex; align-items: center; gap: 10px;
  transition: color .4s;
  flex-shrink: 0;
}
nav.scrolled .nav-logo { color: var(--deep-teal); }
.nav-logo span { color: var(--aqua); }
nav.scrolled .nav-logo span { color: var(--pool-aqua); }
.nav-logo svg { width: 28px; height: 28px; }
.nav-logo img {
  height: 75px;
  width: auto;
  transition: height 0.4s ease, filter 0.4s ease;
  filter: brightness(0) invert(1);
}
nav.scrolled .nav-logo img {
  height: 72px;
  filter: none;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin-left: 48px;
}
.nav-mobile-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}
.nav-socials-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: #ffffff; /* Crisp solid white */
  transition: color .3s; position: relative;
}
nav.scrolled .nav-links a { color: var(--deep-teal); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--aqua);
  transition: width .35s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--aqua); }
nav.scrolled .nav-links a:hover { color: var(--pool-aqua); }

.nav-links a.active-page,
.dropdown-trigger.active-page { color: var(--aqua) !important; }
nav.scrolled .nav-links a.active-page,
nav.scrolled .dropdown-trigger.active-page { color: var(--deep-teal) !important; }
.nav-links a.active-page::after,
.dropdown-trigger.active-page::after { width: 100% !important; }

/* Dropdown Container */
.dropdown {
  position: relative;
}
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.chevron-icon {
  transition: transform 0.3s ease;
}
.dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu Style */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(13, 31, 34, 0.95);
  backdrop-filter: blur(10px);
  min-width: 210px;
  border-radius: 16px;
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--aqua);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 24px;
  background: transparent;
}
nav.scrolled .dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(8, 89, 94, 0.08);
  border-top: 3px solid var(--pool-aqua);
  box-shadow: 0 10px 30px rgba(8, 89, 94, 0.15);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75) !important;
  transition: all 0.3s ease;
}
.dropdown-menu a::after {
  display: none !important;
}
nav.scrolled .dropdown-menu a {
  color: var(--ink) !important;
}
.dropdown-menu a:hover {
  color: var(--aqua) !important;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 28px;
}
nav.scrolled .dropdown-menu a:hover {
  color: var(--deep-teal) !important;
  background: rgba(8, 89, 94, 0.04);
  padding-left: 28px;
}

.dropdown-menu a.active {
  color: var(--aqua) !important;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 28px;
}
nav.scrolled .dropdown-menu a.active {
  color: var(--deep-teal) !important;
  background: rgba(8, 89, 94, 0.04);
}

/* Lang Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3px;
}
nav.scrolled .lang-switcher {
  background: rgba(8, 89, 94, 0.04);
  border: 1px solid rgba(8, 89, 94, 0.1);
}
.lang-switcher a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 14px;
  border-radius: 18px;
  transition: all 0.3s ease;
}
.lang-switcher a.fusha {
  font-family: 'Tajawal', Arial, sans-serif;
  text-transform: none;
  font-size: 11px;
}
nav.scrolled .lang-switcher a {
  color: var(--deep-teal);
}
.lang-switcher a.active {
  background: var(--aqua);
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(0, 200, 200, 0.3);
}
nav.scrolled .lang-switcher a.active {
  background: var(--pool-aqua);
  box-shadow: 0 4px 10px rgba(0, 175, 185, 0.3);
}
.lang-switcher a:hover:not(.active) {
  color: var(--aqua);
}
nav.scrolled .lang-switcher a:hover:not(.active) {
  color: var(--pool-aqua);
}
.lang-sep {
  display: none;
}

/* Nav Actions (Socials & CTA) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50% 40% 60% 45% / 45% 60% 40% 50%; /* Pebble shape */
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-social-icon:nth-child(2) {
  border-radius: 40% 60% 50% 50% / 50% 40% 50% 60%;
}
.nav-social-icon:hover {
  background: var(--white);
  color: var(--deep-teal);
  border-color: var(--white);
  transform: translateY(-3px) scale(1.05);
}
nav.scrolled .nav-social-icon {
  border-color: rgba(8, 89, 94, 0.2);
  color: var(--deep-teal);
}
nav.scrolled .nav-social-icon:hover {
  background: var(--deep-teal);
  color: var(--white);
  border-color: var(--deep-teal);
}
.btn-quote {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--aqua); /* Green/Aqua button color */
  padding: 12px 28px;
  border-radius: 40px 20px 35px 25px / 25px 35px 20px 40px; /* Elongated pebble shape */
  border: 1.5px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 200, 200, 0.2);
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
}
.btn-quote:hover {
  background: var(--deep-teal);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(8, 89, 94, 0.25);
}
nav.scrolled .btn-quote {
  background: var(--aqua) !important;
  color: #fff !important;
  border-color: var(--aqua) !important;
  box-shadow: 0 4px 15px rgba(0, 200, 200, 0.15) !important;
}
nav.scrolled .btn-quote:hover {
  background: var(--deep-teal) !important;
  color: #fff !important;
  border-color: var(--deep-teal) !important;
  box-shadow: 0 8px 20px rgba(8, 89, 94, 0.2) !important;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--grad);
}
/* animated water-ripple overlay */
.hero-ripple {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 120% 60% at 50% 130%, rgba(0,200,200,.18) 0%, transparent 70%);
  animation: ripplePulse 6s ease-in-out infinite alternate;
}
@keyframes ripplePulse {
  from { transform: scaleX(1) scaleY(1); opacity: .6; }
  to   { transform: scaleX(1.08) scaleY(1.12); opacity: 1; }
}
/* geometric rings */
.hero-rings { position: absolute; top: -80px; right: -80px; z-index: 1; }
.hero-rings circle { fill: none; stroke: rgba(255,255,255,.07); }

.hero-content {
  position: relative; z-index: 2;
  margin-top: 140px;
  padding: 0 60px 100px; max-width: 720px;
}
.hero-content .label { color: var(--aqua); margin-bottom: 20px;
  opacity: 0; animation: fadeUp .8s .2s forwards; }
.hero-content h1 {
  font-family: var(--serif); font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 300; line-height: 1.05; letter-spacing: .03em; color: #fff;
  opacity: 0; animation: fadeUp .8s .4s forwards;
}
.hero-content h1 em { font-style: italic; color: var(--aqua); }
.hero-sub {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.7); max-width: 440px; margin: 24px 0 36px;
  opacity: 0; animation: fadeUp .8s .6s forwards;
}
.hero-btns { display: flex; gap: 14px; opacity: 0; animation: fadeUp .8s .8s forwards; }
.hero-scroll {
  position: absolute; bottom: 36px; right: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.5); writing-mode: vertical-lr; }
.scroll-line { width: 1px; height: 48px; background: rgba(255,255,255,.3);
  position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%;
  width: 100%; height: 100%; background: var(--aqua);
  animation: scrollDrop 2s ease-in-out infinite; }
@keyframes scrollDrop { to { top: 200%; } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ── INTRO STRIP ──────────────────────────────────── */
.intro-strip {
  background: var(--deep-teal); padding: 28px 60px;
  display: flex; align-items: center; gap: 60px; overflow: hidden;
}
.intro-strip-text {
  font-size: 11px; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.intro-strip-text span { color: var(--aqua); margin: 0 24px; }

/* ── ABOUT ────────────────────────────────────────── */
.about { padding: 120px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visual { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 3/4;
  background: var(--grad); position: relative; overflow: hidden;
}
.about-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,89,94,.4) 0%, transparent 50%);
}
.about-img-float {
  position: absolute; bottom: -40px; right: -40px;
  width: 58%; aspect-ratio: 1; background: var(--sand);
  border: 5px solid #fff; display: flex; align-items: center; justify-content: center;
}
.about-float-inner { text-align: center; padding: 24px; }
.about-float-inner .num {
  font-family: var(--serif); font-size: 60px; font-weight: 300;
  color: var(--deep-teal); line-height: 1;
}
.about-float-inner .lbl {
  font-size: 10px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mid-teal); margin-top: 6px;
}

.about-text h2 { font-family: var(--serif); font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 300; line-height: 1.18; color: var(--ink); margin-bottom: 24px; }
.about-text h2 span { color: var(--deep-teal); }
.about-text p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--gray); margin-bottom: 18px; }
.about-sign { font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--deep-teal); margin-top: 24px; }

/* ── COLLECTIONS ──────────────────────────────────── */
.collections { background: var(--ink); padding: 100px 60px; }
.collections-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.collections-head h2 { font-family: var(--serif); font-size: clamp(32px,4vw,52px);
  font-weight: 300; color: #fff; }
.collections-head h2 em { color: var(--aqua); font-style: italic; }

.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.coll-card {
  position: relative;
  height: 520px;
  border-radius: 20px; /* Modern premium card edge */
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.coll-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.coll-card-bg {
  position: absolute; inset: -5%; /* Prevent edge bleed on scale */
  background-size: cover; background-position: center;
  transition: transform .8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.coll-card:hover .coll-card-bg { transform: scale(1.08); }

.coll-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,30,35,0.95) 0%, rgba(0,30,35,0.3) 50%, transparent 100%);
  transition: background .4s;
  z-index: 1;
}
.coll-card:hover .coll-card-overlay {
  background: linear-gradient(to top, rgba(0,30,35,0.95) 0%, rgba(8,89,94,0.6) 60%, transparent 100%);
}

.coll-card-pattern {
  position: absolute; inset: 0; opacity: .06;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
}

.coll-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 30px;
  z-index: 2;
}

.coll-card-tag {
  font-size: 11px; font-weight: 500; letter-spacing: .24em;
  text-transform: uppercase; color: var(--aqua); margin-bottom: 12px;
  transform: translateY(10px); opacity: 0; transition: all .5s .1s ease;
}
.coll-card:hover .coll-card-tag { transform: none; opacity: 1; }

.coll-card-name {
  font-family: var(--serif); font-size: 32px; font-weight: 300; color: #fff;
  margin-bottom: 8px;
}

.coll-card-desc {
  font-size: 14px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,.7);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: all .5s ease;
}
.coll-card:hover .coll-card-desc { max-height: 100px; opacity: 1; margin-top: 12px; }

@media (hover: none) {
  .coll-card-tag { transform: none; opacity: 1; }
  .coll-card-desc { max-height: 100px; opacity: 1; margin-top: 12px; }
  .coll-card-overlay { background: linear-gradient(to top, rgba(0,30,35,0.95) 0%, rgba(0,30,35,0.5) 60%, transparent 100%); }
}

.c1{ background-image: url('images/1.jpg'); }
.c2{ background-image: url('images/2.jpg'); }
.c3{ background-image: url('images/3.jpg'); }
.c4{ background-image: url('images/4.jpg'); }
/* ── PROCESS ──────────────────────────────────────── */
.process { padding: 120px 60px; background: #fff; }
.process-head { text-align: center; margin-bottom: 72px; }
.process-head h2 { font-family: var(--serif); font-size: clamp(32px,4vw,52px);
  font-weight: 300; color: var(--ink); }

.process-steps { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px; 
  position: relative; 
}

.process-steps::before { display: none; /* Removed the rigid straight line */ }

.step { 
  background: var(--sand);
  padding: 60px 30px; 
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  position: relative; 
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Pebble Shapes & Alternating Colors */
.step:nth-child(1) { border-radius: 60% 40% 50% 50% / 50% 40% 60% 50%; }
.step:nth-child(2) { border-radius: 50% 50% 40% 60% / 60% 50% 40% 50%; background: var(--grad); }
.step:nth-child(3) { border-radius: 40% 60% 50% 50% / 50% 40% 50% 60%; }
.step:nth-child(4) { border-radius: 50% 50% 60% 40% / 50% 60% 50% 40%; background: var(--ink); }

/* Text colors for dark background stones */
.step:nth-child(2) h3, .step:nth-child(2) p,
.step:nth-child(4) h3, .step:nth-child(4) p { color: #fff; }

/* Staggered vertical layout for stepping stone effect */
@media (min-width: 961px) {
  .step:nth-child(2) { margin-top: 50px; }
  .step:nth-child(3) { margin-top: -20px; }
  .step:nth-child(4) { margin-top: 30px; }
}

.step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.step-num {
  width: 64px; height: 64px; background: var(--grad); 
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%; /* Pebble number */
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  font-family: var(--serif); font-size: 22px; font-weight: 300; color: #fff;
  animation: numPebble 8s ease-in-out infinite alternate;
}

/* Adjust colors for dark stones */
.step:nth-child(2) .step-num, .step:nth-child(4) .step-num { 
  background: #fff; color: var(--deep-teal); 
}

.step h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--deep-teal); margin-bottom: 12px; }
.step p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--gray); }

@keyframes numPebble {
  0% { border-radius: 40% 60% 50% 50% / 50% 40% 50% 60%; }
  100% { border-radius: 60% 40% 60% 40% / 40% 60% 40% 50%; }
}

/* ── PORTFOLIO ────────────────────────────────────── */
.portfolio { padding: 100px 60px; background: var(--sand); }
.portfolio-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
.portfolio-head h2 { font-family: var(--serif); font-size: clamp(30px,4vw,50px);
  font-weight: 300; color: var(--ink); }
.portfolio-filters { display: flex; gap: 8px; }
.filter-btn {
  font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  padding: 8px 20px; border: 1px solid var(--rule); color: var(--gray);
  background: #fff; cursor: pointer; transition: all .3s;
  border-radius: 24px 10px 20px 12px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--deep-teal); color: #fff; border-color: var(--deep-teal);
}
.portfolio-grid { 
  display: flex; 
  flex-direction: row; 
  height: 450px; 
  gap: 16px; 
  padding: 20px 0; 
  width: 100%;
}
.proj-card { 
  position: relative; 
  flex: 1; 
  border-radius: 16px;
  overflow: hidden; 
  cursor: pointer; 
  transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}
.proj-card:hover {
  flex: 4;
  box-shadow: 0 20px 40px rgba(8, 89, 94, 0.2);
}

.p1 { background-image: url('https://images.pexels.com/photos/261102/pexels-photo-261102.jpeg'); }
.p2 { background-image: url('images/hero_home_1.jpg.jpeg'); }
.p3 { background-image: url('https://images.pexels.com/photos/32870/pexels-photo.jpg'); }
.p4 { background-image: url('https://images.pexels.com/photos/338504/pexels-photo-338504.jpeg'); }
.p5 { background-image: url('https://images.pexels.com/photos/1450360/pexels-photo-1450360.jpeg'); }
.p6 { background-image: url('https://images.pexels.com/photos/1268855/pexels-photo-1268855.jpeg'); }

/* Background Style */
.proj-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

/* Hover Zoom */
.proj-card:hover .proj-card-bg {
    transform: scale(1.08);
    filter: brightness(0.6);
}
.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,30,35,0.9) 0%, transparent 60%);
  opacity: 0.5; transition: opacity .4s;
  pointer-events: none;
}
.proj-card:hover .proj-overlay { opacity: 0.9; }

.proj-info {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; text-align: left;
  padding: 40px;
  transform: translateY(20px); opacity: 0; transition: all .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.proj-card:hover .proj-info { transform: translateY(0); opacity: 1; transition-delay: 0.1s; }

@media (hover: none) {
  .proj-card-bg { filter: brightness(0.7); }
  .proj-overlay { opacity: 0.6; }
  .proj-info { transform: scale(1); opacity: 1; }
}

.proj-cat { font-size: 11px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: var(--aqua); margin-bottom: 8px; }
.proj-name { font-family: var(--serif); font-size: 24px; font-weight: 400; color: #fff; margin-bottom: 6px; }
.proj-loc { font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: .05em; }

/* ── WHY ARWA ─────────────────────────────────────── */
.why { 
  padding: 100px 60px; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  background: var(--ink); 
  gap: 80px;
  align-items: center;
}
.why-visual {
  position: relative; 
  min-height: 550px;
  display: flex; align-items: center; justify-content: center;
  order: 2;
  border-radius: 80px 0 80px 0;
  background: var(--grad);
  z-index: 1;
}
.why-visual::after {
  content: '';
  position: absolute;
  inset: -20px 20px 20px -20px;
  border: 4px solid var(--deep-teal);
  border-radius: 80px 0 80px 0;
  z-index: -1;
}
.why-visual-inner { position: relative; z-index: 2; text-align: center; padding: 60px; }
.why-visual-inner blockquote {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 40px);
  font-weight: 300; font-style: italic; color: #fff; line-height: 1.3;
}
.why-visual-inner cite { display: block; font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--aqua); margin-top: 20px;
  font-style: normal; }

.why-content { 
  background: transparent; 
  padding: 0; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  order: 1;
}
.why-content h2 { font-family: var(--serif); font-size: clamp(28px,3vw,44px);
  font-weight: 300; color: #fff; margin-bottom: 8px; }
.why-content h2 em { color: var(--aqua); font-style: italic; }

.why-list { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.why-item { 
  display: flex; align-items: center; gap: 20px;
  padding: 24px; 
  background: rgba(255,255,255, 0.03); 
  border: 1px solid rgba(255,255,255, 0.05);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s, background 0.3s;
}
.why-item:hover {
  transform: translateX(10px);
  background: rgba(255,255,255, 0.06);
}
.why-icon { 
  width: 56px; height: 56px; 
  background: rgba(8, 89, 94, 0.4); 
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border-radius: 14px; 
}
.why-icon svg { width: 26px; height: 26px; stroke: var(--aqua); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.why-item-text h4 { font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: #fff; margin-bottom: 6px; }
.why-item-text p { font-size: 14px; font-weight: 300; line-height: 1.5; color: rgba(255,255,255,.6); margin: 0; }

/* ── STATS BAND ───────────────────────────────────── */
.stats { background: var(--grad); padding: 32px 60px;
  display: grid; grid-template-columns: repeat(4,1fr); }
.stat { text-align: center; padding: 8px; }
.stat-num { font-family: var(--serif); font-size: 54px; font-weight: 300; color: #fff; line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-top: 8px; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials { padding: 120px 60px; background: #fff; }
.testimonials-head { text-align: center; margin-bottom: 64px; }
.testimonials-head h2 { font-family: var(--serif); font-size: clamp(30px,4vw,50px);
  font-weight: 300; color: var(--ink); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  padding: 40px 36px; background: var(--mist);
  position: relative; transition: transform .3s;
  border-radius: 60px 18px 45px 24px;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-quote {
  font-family: var(--serif); font-size: 72px; font-weight: 300;
  color: var(--aqua); line-height: .7; margin-bottom: 16px;
}
.testi-text { font-size: 14.5px; font-weight: 300; line-height: 1.8;
  font-style: italic; color: #3a5558; margin-bottom: 24px; }
.testi-rule { width: 32px; height: 2px; background: var(--grad); margin-bottom: 16px; }
.testi-name { font-family: var(--serif); font-size: 16px; font-weight: 400; color: var(--deep-teal); }
.testi-role { font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gray); margin-top: 4px; }

/* ── CONTACT CTA ──────────────────────────────────── */
.cta-section {
  background: var(--deep-teal); padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0,200,200,.12) 0%, transparent 60%);
}
.cta-section::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%;
}
.cta-text { position: relative; z-index: 1; }
.cta-text h2 { font-family: var(--serif); font-size: clamp(32px,4vw,56px);
  font-weight: 300; color: #fff; line-height: 1.2; }
.cta-text h2 em { font-style: italic; color: var(--aqua); }
.cta-text p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.65);
  margin: 20px 0 36px; line-height: 1.8; }
.cta-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; padding: 14px 28px;
  font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  transition: background .3s;
  border-radius: 35px 14px 30px 18px;
}
.cta-whatsapp:hover { background: #1ea355; }
.cta-whatsapp svg { width: 18px; height: 18px; fill: #fff; }

.cta-form { position: relative; z-index: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-field {
  width: 100%; padding: 14px 16px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  outline: none; transition: border .3s;
}
.form-field::placeholder { color: rgba(255,255,255,.45); }
.form-field:focus { border-color: var(--aqua); background: rgba(255,255,255,.15); }
.form-field.full { width: 100%; margin-bottom: 12px; }
select.form-field option { color: var(--ink); background: #fff; }
.form-submit {
  width: 100%; padding: 16px; background: #fff; color: var(--deep-teal);
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; border: none; cursor: pointer;
  transition: background .3s, color .3s; margin-top: 4px;
  border-radius: 35px 14px 30px 18px;
}
.form-submit:hover { background: var(--aqua); color: #fff; }

/* ── FOOTER ───────────────────────────────────────── */
footer { background: var(--ink); padding: 80px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 64px; }
.footer-brand-name {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  letter-spacing: .1em; color: #fff; margin-bottom: 16px;
}
.footer-brand-name span { color: var(--aqua); }
.footer-brand-desc { font-size: 13px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.4); margin-bottom: 24px; }
.footer-socials { display: flex; gap: 16px; }
.social-btn { 
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); transition: all .4s cubic-bezier(0.16, 1, 0.3, 1); font-size: 14px;
  border-radius: 50% 40% 60% 45% / 45% 60% 40% 50%; /* Pebble shape */
}
.social-btn:nth-child(2) { border-radius: 40% 60% 50% 50% / 50% 40% 50% 60%; }
.social-btn:nth-child(3) { border-radius: 60% 50% 40% 60% / 50% 60% 40% 50%; }

.social-btn:hover { 
  border-color: var(--aqua); color: #fff; 
  background: var(--deep-teal);
  transform: translateY(-4px) scale(1.05);
}
.footer-col h4 { font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--aqua); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.45);
  transition: color .3s; }
.footer-col ul a:hover { color: var(--aqua); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--pool-aqua); fill: none;
  stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-bottom a { color: var(--pool-aqua); }
.footer-badge {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.2);
  display: flex; align-items: center; gap: 8px;
}
.footer-badge::before { content: ''; display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--aqua); }

/* ── HAMBURGER BUTTON ─────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 600;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: #fff;
  transition: transform .35s ease, opacity .35s ease, background .4s;
}
nav.scrolled .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── RESPONSIVE — TABLET (≤960px) ────────────────── */
@media (max-width: 960px) {
  /* Nav */
  nav { padding: 12px 24px; width: 96%; top: 16px; }
  nav.scrolled { padding: 10px 24px; top: 10px; }
  
  /* Fix containing block alignment and gaps when mobile menu is open */
  nav:has(#navLinks.open) {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  .nav-logo img {
    height: 75px;
  }
  nav.scrolled .nav-logo img {
    height: 65px;
  }
  .nav-hamburger { display: flex; }
  .nav-hamburger.open span {
    background: #fff !important;
  }
  
  .nav-menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 550;
    padding: 100px 24px 60px;
    overflow-y: auto;
    margin-left: 0 !important;
  }
  .nav-menu-wrapper.open {
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-mobile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    width: 100%;
    margin: auto 0;
  }
  
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  .nav-menu-wrapper .nav-links a {
    font-size: 14px;
    color: rgba(255,255,255,.75) !important;
    letter-spacing: .2em;
  }
  .nav-menu-wrapper .nav-links a:hover {
    color: var(--aqua) !important;
  }
  
  .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
  }
  .nav-socials-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
  }
  .nav-menu-wrapper .nav-social-icon {
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }
  .nav-menu-wrapper .nav-social-icon:hover {
    background: var(--white) !important;
    color: var(--deep-teal) !important;
    border-color: var(--white) !important;
  }
  .btn-quote {
    width: 200px;
    text-align: center;
  }
  
  /* Mobile Dropdown styling */
  .dropdown {
    width: 100%;
    text-align: center;
  }
  .dropdown-trigger {
    justify-content: center;
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    transform: none !important;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-top: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    width: 100%;
    padding: 0;
    margin-top: 10px;
    border-radius: 8px;
  }
  nav.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-top: none;
    box-shadow: none;
  }
  .dropdown.active .dropdown-menu {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
  }
  .dropdown.active .chevron-icon {
    transform: rotate(180deg);
  }
  .dropdown-menu a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 8px 0;
    text-align: center;
  }
  .dropdown-menu a:hover {
    color: var(--aqua) !important;
    padding-left: 0;
    background: transparent;
  }
  nav.scrolled .dropdown-menu a {
    color: rgba(255, 255, 255, 0.6) !important;
  }
  nav.scrolled .dropdown-menu a:hover {
    color: var(--aqua) !important;
    background: transparent;
  }

  /* Hero */
  .hero-content { padding: 0 24px 80px; max-width: 100%; }
  .hero-scroll { right: 20px; }
  .hero-rings { display: none; }

  /* About */
  .about { padding: 80px 24px; grid-template-columns: 1fr; gap: 48px; }
  .about-img-float { display: none; }
  .about-visual { width: 100% !important; }
  .about-img-main { width: 100% !important; height: 340px !important; margin-left: 0 !important; }
  .about-img-small { width: 160px !important; height: 220px !important; }

  /* Collections */
  .collections { padding: 80px 24px; }
  .collections-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .coll-card { height: 360px !important; }

  /* Process */
  .process { padding: 80px 24px; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .process-steps::before { display: none; }

  /* Portfolio */
  .portfolio { padding: 80px 24px; }
  .portfolio-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .portfolio-grid { gap: 8px; height: 400px; }

  /* Why */
  .why { grid-template-columns: 1fr; }
  .why-visual { min-height: 360px; padding: 40px 24px; }
  .why-visual blockquote { font-size: 28px !important; }
  .why-content { padding: 60px 24px; }

  /* Stats */
  .stats { grid-template-columns: repeat(2,1fr); gap: 32px; padding: 24px 24px; }

  /* Testimonials */
  .testimonials { padding: 80px 24px; }
  .testi-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px; }

  /* Footer */
  footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE — MOBILE (≤600px) ────────────────── */
@media (max-width: 600px) {
  /* Hero */
  .hero-content { padding: 0 20px 72px; }
  .hero-content h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero-sub { font-size: 14px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { text-align: center; }

  /* Intro strip */
  .intro-strip { padding: 20px; }

  /* About */
  .about { padding: 60px 20px; }
  .about-img-main { height: 280px !important; }
  .about-img-small { display: none !important; }

  /* Collections */
  .collections { padding: 60px 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .coll-card { height: 300px !important; }
  .coll-card-name { font-size: 30px !important; }

  /* Process */
  .process { padding: 60px 20px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }

  /* Portfolio */
  .portfolio { padding: 60px 20px; }
  .portfolio-grid { flex-direction: column; height: 600px; gap: 8px; }
  .portfolio-filters { flex-wrap: wrap; gap: 8px; }

  /* Why */
  .why-visual blockquote { font-size: 22px !important; }
  .why-content { padding: 48px 20px; }

  /* Stats */
  .stats { grid-template-columns: repeat(2,1fr); padding: 24px 20px; }
  .stat-num { font-size: 38px; }

  /* Testimonials */
  .testimonials { padding: 60px 20px; }

  /* CTA */
  .cta-section { padding: 60px 20px; }
  .cta-form { padding: 28px 20px !important; }

  /* Footer */
  footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-logo {
    height: 90px;
  }
}

/* ── GLOBAL FOOTER LOGO SIZING ────────────────────── */
.footer-logo {
  height: 110px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

/* ==========================================================================
   UNIFORM 3D DECK HOVER ANIMATION FOR PRODUCT CARDS
   ========================================================================== */

/* Parent Grid Container */
.pt-grid, .ps-grid, .pb-grid, .pf-grid {
  transform-style: preserve-3d !important;
  perspective: 1000px !important;
  max-width: 1160px !important;
}

/* Card Base overrides */
.pt-card, .ps-card, .pb-card, .pf-card {
  position: relative !important;
  transform-style: preserve-3d !important;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.5s ease, 
              z-index 0.5s !important;
  background: #0d1f22 !important; /* Premium dark brand background */
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
  margin: 0 !important;
}

/* Override aspect ratio to be uniform 1:1 square */
.pt-card__img-wrap, .ps-card__img-wrap, .pb-card__img-wrap, .pf-card__img-wrap {
  position: relative !important;
  width: 100% !important;
  padding-top: 100% !important; /* Square aspect ratio */
  border-radius: 16px !important;
  overflow: hidden !important;
  margin-bottom: 0 !important;
  z-index: 1 !important;
}

/* Primary and hover image transitions */
.pt-card__img, .ps-card__img, .pb-card__img, .pf-card__img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease !important;
}

/* Black tint overlay from top and bottom on hover */
.pt-card__img-wrap::before, 
.ps-card__img-wrap::before, 
.pb-card__img-wrap::before, 
.pf-card__img-wrap::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%) !important;
  z-index: 3 !important;
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
  pointer-events: none !important;
}

/* Desktop Only Hover Animations */
@media (min-width: 1025px) {
  /* Hovered card comes to front and scales up */
  .pt-card:hover,
  .ps-card:hover,
  .pb-card:hover,
  .pf-card:hover {
    transform: scale(1.12) translateY(-10px) !important;
    z-index: 10 !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.35) !important;
  }
}

/* Tablet & Mobile flat/translate hover */
@media (max-width: 1024px) {
  .pt-card:hover,
  .ps-card:hover,
  .pb-card:hover,
  .pf-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
  }
}

.pt-card:hover .pt-card__img-wrap::before,
.ps-card:hover .ps-card__img-wrap::before,
.pb-card:hover .pb-card__img-wrap::before,
.pf-card:hover .pf-card__img-wrap::before {
  opacity: 1 !important;
}

/* Make details button uniform across all product cards */
.pt-card__details-btn, .ps-card__details-btn, .pb-card__details-btn, .pf-card__details-btn {
  position: absolute !important;
  bottom: 24px !important;
  right: 24px !important;
  left: auto !important;
  transform: translateY(12px) !important;
  z-index: 5 !important;
  pointer-events: auto !important;
  opacity: 0 !important;
  margin: 0 !important;
  border-radius: 40px 15px 35px 15px / 15px 35px 15px 40px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px) !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 20px !important;
  color: var(--deep-teal) !important;
  font-family: var(--sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
  white-space: nowrap !important;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, color 0.3s ease, border-radius 0.4s ease !important;
}

/* SVGs inside the details buttons */
.pt-card__details-btn svg, 
.ps-card__details-btn svg, 
.pb-card__details-btn svg, 
.pf-card__details-btn svg {
  width: 16px !important; 
  height: 16px !important;
  flex-shrink: 0 !important;
  stroke: var(--deep-teal) !important;
  transition: transform 0.3s ease, stroke 0.3s ease !important;
  transform: none !important;
}

/* Hover state triggers details button visibility and position */
.pt-card:hover .pt-card__details-btn,
.ps-card:hover .ps-card__details-btn,
.pb-card:hover .pb-card__details-btn,
.pf-card:hover .pf-card__details-btn {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Hover state for details button itself */
.pt-card__details-btn:hover, 
.ps-card__details-btn:hover, 
.pb-card__details-btn:hover, 
.pf-card__details-btn:hover {
  background: var(--deep-teal) !important;
  color: #fff !important;
  border-radius: 15px 40px 15px 35px / 35px 15px 40px 15px !important;
}

.pt-card__details-btn:hover svg, 
.ps-card__details-btn:hover svg, 
.pb-card__details-btn:hover svg, 
.pf-card__details-btn:hover svg {
  stroke: #fff !important;
  transform: translateX(4px) !important;
}

/* Body / details container overlaid on card */
.pt-card__body, .ps-card__body, .pb-card__body, .pf-card__body {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  padding: 24px !important;
  box-sizing: border-box !important;
  z-index: 5 !important;
  pointer-events: none !important;
  background: transparent !important;
}

/* Product names shift and slide down from top on hover */
.pt-card__name, .ps-card__name, .pb-card__name, .pf-card__name {
  color: #ffffff !important;
  font-family: var(--sans) !important;
  font-weight: 600 !important;
  font-size: clamp(16px, 1.8vw, 22px) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  transform: translateY(-30px) !important;
  opacity: 0 !important;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease !important;
  transition-delay: 0.1s !important;
  margin: 0 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.pt-card:hover .pt-card__name,
.ps-card:hover .ps-card__name,
.pb-card:hover .pb-card__name,
.pf-card:hover .pf-card__name {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* ==========================================================================
   VERTICAL WAVE SLICE-UP ANIMATION FOR CARDS
   ========================================================================== */

/* Slice Container overlaying the image area */
.card-slice-container {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  z-index: 2 !important; /* Renders above the hover texture image */
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
}

/* Individual vertical slice */
.card-slice {
  width: 25% !important;
  height: 100% !important;
  background-size: 400% 100% !important; /* Expands image to full width */
  background-repeat: no-repeat !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Slide slices up/out on hover */
.pt-card:hover .card-slice,
.ps-card:hover .card-slice,
.pb-card:hover .card-slice,
.pf-card:hover .card-slice {
  transform: translateY(-100%) !important;
}

/* Hover background texture images setup beneath slices */
.pt-card__img--hover, .ps-card__img--hover, .pb-card__img--hover, .pf-card__img--hover {
  z-index: 1 !important;
}

.pt-card:hover .pt-card__img--hover,
.ps-card:hover .ps-card__img--hover,
.pb-card:hover .pb-card__img--hover,
.pf-card:hover .pf-card__img--hover {
  opacity: 1 !important;
  z-index: 1 !important;
}

/* ==========================================================================
   CTA BUTTON GROUP LAYOUT (FOR ALL PRODUCTS PAGES)
   ========================================================================== */

.pt-cta__btn-group, 
.ps-cta__btn-group, 
.pb-cta__btn-group, 
.pf-cta__btn-group {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  margin-top: 36px !important;
  width: 100% !important;
}

.pt-cta__btn, 
.ps-cta__btn, 
.pb-cta__btn, 
.pf-cta__btn {
  margin-top: 0 !important;
}

/* ==========================================================================
   GLOBAL PEBBLE DESIGN BUTTON OVERRIDES
   ========================================================================== */

.btn,
.btn-quote,
.pf-cta__btn,
.pt-cta__btn,
.ps-cta__btn,
.pb-cta__btn,
.git-btn,
.con-submit-btn,
.pt-card__details-btn,
.ps-card__details-btn,
.pb-card__details-btn,
.pf-card__details-btn,
.proj-filter-btn,
.filter-btn,
.btn-solid {
  border-radius: 40px 15px 35px 15px / 15px 35px 15px 40px !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-radius 0.4s ease !important;
}

/* Morph shape on hover */
.btn:hover,
.btn-quote:hover,
.pf-cta__btn:hover,
.pt-cta__btn:hover,
.ps-cta__btn:hover,
.pb-cta__btn:hover,
.git-btn:hover,
.con-submit-btn:hover,
.pt-card__details-btn:hover,
.ps-card__details-btn:hover,
.pb-card__details-btn:hover,
.pf-card__details-btn:hover,
.proj-filter-btn:hover,
.filter-btn:hover,
.btn-solid:hover {
  border-radius: 15px 40px 15px 35px / 35px 15px 40px 15px !important;
}

/* ==========================================================================
   LOGO SHIMMER REFLECTOR FOR BRAND PAGES
   ========================================================================== */
.brand-hero-logo-container {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}
.logo-reflector-wrap {
  position: relative !important;
  display: inline-flex !important;
  overflow: hidden !important;
  border-radius: 8px;
}
.logo-reflector-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-25deg);
  animation: imgReflector 5s infinite ease-in-out;
}
.hero-logo-img {
  height: clamp(80px, 12vw, 130px) !important;
  width: auto !important;
  display: block;
}

@keyframes imgReflector {
  0% {
    left: -150%;
  }
  30% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
/* ═══ ARABIC RTL STYLES ═══ */
[dir="rtl"] {
  font-family: 'Tajawal', 'Outfit', 'Cormorant Garamond', sans-serif;
  text-align: right;
}

[dir="rtl"] .nav-links {
  margin-right: 48px;
  margin-left: 0;
}

[dir="rtl"] .nav-socials-row {
  margin-right: auto;
}

[dir="rtl"] .chevron-icon {
  margin-right: 4px;
  margin-left: 0;
}

[dir="rtl"] h1, 
[dir="rtl"] h2, 
[dir="rtl"] h3 {
  font-family: 'Tajawal', serif;
  font-weight: 700;
  letter-spacing: 0;
}

[dir="rtl"] .label,
[dir="rtl"] .nav-links a,
[dir="rtl"] .btn {
  letter-spacing: 0;
  font-family: 'Tajawal', sans-serif;
}

[dir="rtl"] .hero-scroll {
  left: 60px;
  right: auto;
}

[dir="rtl"] .about-img-main {
  margin-right: auto;
  margin-left: 0;
}

[dir="rtl"] .about-img-small {
  right: -60px;
  left: auto;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .footer-content {
  text-align: right;
}

[dir="rtl"] .stats-box {
  border-left: none;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/* === RTL FIX FOR CARD SLICES === */
[dir="rtl"] .card-slice-container {
  flex-direction: row-reverse !important;
}
