/* ============================================================
   UR-ARCHITECTURE — Premium Design System
   Elite Architectural Firm · Ultra-Modern Minimalist CSS
   ============================================================
   Table of Contents:
   0.  Custom Properties & Design Tokens
   1.  CSS Reset & Global Styles
   2.  Typography Scale
   3.  Container & Layout
   4.  Buttons (Global)
   5.  Navbar
   6.  Hero Section
   7.  Stats Bar
   8.  Overview
   9.  Services
   10. Projects
   11. About
   12. Reviews
   13. Team
   14. FAQ
   15. Contact
   16. Footer
   17. Scroll Animations
   18. Keyframe Animations
   19. Scrollbar & Selection
   20. Responsive — 1024px
   21. Responsive — 768px
   22. Responsive — 480px
   ============================================================ */


/* ==========================================================
   0. CUSTOM PROPERTIES & DESIGN TOKENS
   ========================================================== */

:root {
  /* ── Backgrounds (Light Gold Theme) ── */
  --color-bg-primary: #FCFAF2;     /* Warm ivory gold, mimics white but warmer/softer */
  --color-bg-secondary: #F5F1E1;   /* Warm light cream for alternate sections */
  --color-bg-tertiary: #EDE8D0;    /* Slightly deeper gold shade for details and shadows */
  --color-bg-card: rgba(255, 255, 255, 0.7); /* Translucent clean card background */

  /* ── Greens ── */
  --color-green-primary: #1C3F24;  /* Deep evergreen for strong text contrast & primary buttons */
  --color-green-light: #2D6A4F;    /* Rich green for secondary buttons & borders */
  --color-green-lighter: #40916C;  /* Accent green */
  --color-green-dark: #122B19;     /* Deep forest green */
  --color-green-darkest: #07130A;

  /* ── Golds ── */
  --color-gold: #C59B27;           /* Rich architectural gold, dark enough for AA text contrast on light bg */
  --color-gold-hover: #A77E1B;     /* Slightly darker gold for interactive states */
  --color-gold-dim: rgba(197, 155, 39, 0.08); /* Gold background tint */

  /* ── Text ── */
  --color-text-primary: #1E2229;   /* Slate/Charcoal color for high contrast body text (not pure black) */
  --color-text-secondary: #4A4F5C; /* Medium dark slate for descriptions */
  --color-text-muted: #7A8090;     /* Slate gray for labels, dates, placeholder texts */

  /* ── Glass ── */
  --color-glass-bg: rgba(252, 250, 242, 0.85); /* Semi-translucent primary background */
  --color-glass-border: rgba(28, 63, 36, 0.08); /* Translucent green-tinted border */
  --color-glass-highlight: rgba(255, 255, 255, 0.5);

  /* ── Fonts ── */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* ── Transitions ── */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;

  /* ── Shadows ── */
  --shadow-card: 0 10px 30px rgba(28, 34, 41, 0.05); /* Clean soft shadow for light cards */
  --shadow-elevated: 0 20px 50px rgba(28, 34, 41, 0.08);

  /* ── Radii ── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}


/* ==========================================================
   1. CSS RESET & GLOBAL STYLES
   ========================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
}

.section {
  padding: 7rem 0;
  position: relative;
}


/* ==========================================================
   2. TYPOGRAPHY SCALE
   ========================================================== */

.display-text {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1,
.h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

h2,
.h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
}

h3,
.h3 {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
}

.body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.body-text-lg {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
}

.small-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
}

.caption {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}


/* ==========================================================
   3. CONTAINER & LAYOUT
   ========================================================== */

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  width: 100%;
}


/* ==========================================================
   4. BUTTONS (Global)
   ========================================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-gold);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237, 195, 42, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(237, 195, 42, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid var(--color-green-primary);
  color: var(--color-green-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--color-green-primary);
  color: var(--color-bg-primary);
  background: var(--color-green-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-icon:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: var(--color-gold-dim);
  transform: translateY(-2px);
}


/* ==========================================================
   5. NAVBAR
   ========================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--color-glass-border);
  box-shadow: 0 2px 15px rgba(28, 34, 41, 0.05);
}

.navbar.nav-hidden {
  transform: translateY(0);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.nav-logo img {
  height: 44px;
  filter: brightness(1.1);
  transition: var(--transition-fast);
}

.nav-logo:hover img {
  filter: brightness(1.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta .btn-primary {
  padding: 0.75rem 1.75rem;
  font-size: 0.85rem;
}

/* ── Hamburger ── */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
}

.hamburger span:nth-child(1) {
  top: 5px;
}

.hamburger span:nth-child(2) {
  top: 13px;
}

.hamburger span:nth-child(3) {
  top: 21px;
}

.hamburger.active span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

/* ── Mobile Menu ── */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(252, 250, 242, 0.97); /* Ivory gold matching light theme */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
  z-index: 1050;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  padding: 80px 20px;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  color: var(--color-green-primary);
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-smooth);
  z-index: 1100;
  line-height: 1;
}

.mobile-menu-close:hover {
  color: var(--color-gold);
  transform: rotate(90deg);
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-green-primary); /* High contrast deep green */
  margin: 0.75rem 0;
  transition: var(--transition-fast);
  position: relative;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--color-gold);
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}

.mobile-menu a:hover::after,
.mobile-menu a.active::after {
  width: 60%;
}

.mobile-menu .btn-primary {
  margin-top: 2rem;
}


/* ==========================================================
   6. HERO SECTION
   ========================================================== */

#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(45, 106, 79, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(237, 195, 42, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out 2s infinite;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--color-gold);
  border-radius: 50px;
  padding: 0.45rem 1.15rem;
  background: var(--color-gold-dim);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.05);
  width: fit-content;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  animation: pulse-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
    box-shadow: 0 0 0 0 rgba(197, 155, 39, 0.5);
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
    box-shadow: 0 0 0 5px rgba(197, 155, 39, 0.2);
  }
  100% {
    transform: scale(0.8);
    opacity: 0.5;
    box-shadow: 0 0 0 0 rgba(197, 155, 39, 0.5);
  }
}



.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4vw + 0.5rem, 3.4375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline .accent {
  color: var(--color-gold);
}

.hero-bullets {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 550px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hero-bullet-icon {
  color: var(--color-gold);
  font-size: 1.15rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hero-bullet-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-bullet-title {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 1.05rem;
  font-family: var(--font-body);
}

.hero-bullet-desc {
  color: var(--color-text-secondary);
  font-size: 0.925rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Hero Visual ── */

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.hero-visual-art {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  animation: spin-slow 30s linear infinite;
}

.hero-visual-art::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--color-gold);
  border-right-color: var(--color-green-light);
  opacity: 0.6;
}

.hero-visual-art::after {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-bottom-color: var(--color-green-lighter);
  border-left-color: var(--color-gold);
  opacity: 0.4;
  animation: spin-slow 20s linear infinite reverse;
}

/* Geometric inner shapes */
.hero-visual-art .geo-ring {
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(237, 195, 42, 0.15);
  border-radius: 50%;
}

.hero-visual-art .geo-diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(64, 145, 108, 0.2);
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-visual-art .geo-square {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(237, 195, 42, 0.1);
  transform: translate(-50%, -50%) rotate(22.5deg);
}

.hero-visual-art .geo-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(237, 195, 42, 0.4);
}

/* Floating background elements */
.hero-float-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero-float-element:nth-child(1) {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  opacity: 0.4;
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.hero-float-element:nth-child(2) {
  width: 4px;
  height: 4px;
  background: var(--color-green-light);
  opacity: 0.3;
  top: 60%;
  right: 80%;
  animation-delay: 1.5s;
}

.hero-float-element:nth-child(3) {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  opacity: 0.2;
  bottom: 20%;
  right: 25%;
  animation-delay: 3s;
}

.hero-float-element:nth-child(4) {
  width: 3px;
  height: 3px;
  background: var(--color-green-lighter);
  opacity: 0.5;
  top: 35%;
  left: 10%;
  animation-delay: 2s;
}


/* ==========================================================
   7. STATS BAR
   ========================================================== */

#stats {
  background: linear-gradient(
    135deg,
    #12161A 0%,  /* Deep charcoal grey / light black */
    #1A222C 50%, /* Sleek slate grey-blue */
    #202D3D 100% /* Muted dark sky blue */
  );
  padding: 4rem 0;
  position: relative;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.03),
    transparent 70%
  );
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-4px);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(210, 224, 238, 0.15),
    transparent
  );
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

#stats .stat-number {
  color: #EDC32A; /* Vibrant gold for strong contrast on dark bg */
}

.stat-suffix {
  font-size: 60%;
  opacity: 0.8;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
}

#stats .stat-label {
  color: #D2E0EE; /* Soft sky blue for readability */
}


/* ==========================================================
   8. OVERVIEW
   ========================================================== */

#overview {
  padding: 6rem 0;
  background: linear-gradient(
    180deg,
    var(--color-bg-primary) 0%,
    var(--color-bg-secondary) 100%
  );
}

.overview-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.overview-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.overview-title .accent {
  color: var(--color-gold);
}

.overview-text {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.overview-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.overview-feature {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.overview-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-glass-highlight),
    transparent
  );
}

.overview-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.overview-feature i {
  color: var(--color-green-light);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.overview-feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.overview-feature p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}


/* ==========================================================
   9. SERVICES
   ========================================================== */

#services {
  padding: 7rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.section-title .accent {
  color: var(--color-gold);
}

/* ── Service Tabs ── */

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--color-glass-border);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.tab-btn.active {
  background: var(--color-gold);
  color: #0a0a0f;
  border-color: var(--color-gold);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(237, 195, 42, 0.25);
}

.tab-btn:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-text-primary);
  background: rgba(255, 255, 255, 0.03);
}

/* ── Service Panels ── */

.services-panel {
  display: none;
}

.services-panel.active {
  display: block;
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Service Card ── */

.service-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-gold),
    var(--color-green-light),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(237, 195, 42, 0.2);
  box-shadow: var(--shadow-elevated);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--color-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.service-card:hover .card-icon {
  background: rgba(237, 195, 42, 0.2);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}

.service-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-card .sample-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--color-green-dark);
  color: var(--color-green-lighter);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  border: 1px solid rgba(82, 183, 136, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.service-card .sample-badge:hover {
  background: var(--color-gold);
  color: var(--color-green-darkest);
  border-color: var(--color-gold);
  transform: scale(1.08);
}


/* ==========================================================
   10. PROJECTS
   ========================================================== */

#projects {
  padding: 7rem 0;
  background: var(--color-bg-secondary);
}

/* ── Featured Project ── */

.project-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-main-image {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--color-bg-tertiary) 0%,
    var(--color-green-darkest) 50%,
    var(--color-bg-tertiary) 100%
  );
}

.project-main-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(237, 195, 42, 0.05) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(64, 145, 108, 0.05) 50%, transparent 52%);
  background-size: 60px 60px;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(
    to top,
    rgba(10, 15, 12, 0.95) 0%,
    rgba(10, 15, 12, 0.6) 50%,
    rgba(10, 15, 12, 0.2) 80%,
    transparent 100%
  );
  z-index: 2;
}

.project-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: #ffffff; /* High contrast white */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9); /* Legibility glow */
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.project-overlay p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

/* ── Project Meta ── */

.project-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.project-meta h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.project-meta .meta-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.project-meta .meta-detail i {
  color: var(--color-gold);
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* ── Project Grid ── */

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.project-card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: linear-gradient(
    135deg,
    var(--color-bg-tertiary),
    var(--color-green-darkest)
  );
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(60deg, transparent 40%, rgba(255, 255, 255, 0.02) 50%, transparent 60%);
  z-index: 1;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-card);
}

.project-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 12, 0.85) 0%,
    rgba(10, 15, 12, 0.4) 40%,
    transparent 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

/* Trigger content slide-in when card is revealed on screen */
.project-card.overlay-active .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-card .card-overlay h4 {
  color: #ffffff; /* High contrast white */
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.project-card .card-overlay p {
  color: #E2E8F0; /* Soft light grey/white for readability */
  font-size: 0.825rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover img {
  transform: scale(1.08);
}


/* ==========================================================
   11. ABOUT
   ========================================================== */

#about {
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.about-text h2 .accent {
  color: var(--color-green-light);
}

.about-text p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* ── Channel Badges ── */

.channel-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.channel-badge {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.channel-badge:hover {
  transform: translateX(8px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-card);
}

.channel-badge i {
  font-size: 2rem;
  flex-shrink: 0;
}

.channel-badge .icon-whatsapp {
  color: #25d366;
}

.channel-badge .icon-telegram {
  color: #0088cc;
}

.channel-badge .icon-email {
  color: var(--color-gold);
}

.channel-badge i.fa-whatsapp,
.channel-badge i[class*="whatsapp"] {
  color: #25d366;
}

.channel-badge i.fa-telegram,
.channel-badge i[class*="telegram"] {
  color: #0088cc;
}

.channel-badge i.fa-envelope,
.channel-badge i[class*="email"],
.channel-badge i[class*="mail"] {
  color: var(--color-gold);
}

.channel-badge .badge-info h4 {
  color: var(--color-text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.channel-badge .badge-info p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.4;
}


/* ==========================================================
   12. REVIEWS
   ========================================================== */

#reviews {
  padding: 7rem 0;
  background: var(--color-bg-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.25rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  position: relative;
  box-shadow: var(--shadow-card);
}

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

.review-stars {
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--color-text-secondary);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.975rem;
}

.review-text::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--color-gold-dim);
  position: absolute;
  top: -15px;
  left: -5px;
  line-height: 1;
  pointer-events: none;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--color-glass-border);
  padding-top: 1.25rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-green-primary),
    var(--color-green-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid var(--color-bg-primary);
  box-shadow: 0 0 0 2px var(--color-gold-dim);
}

.review-info h4 {
  color: var(--color-text-primary);
  font-size: 0.975rem;
  font-weight: 600;
}

.review-info p {
  color: var(--color-text-muted);
  font-size: 0.825rem;
  margin-top: 0.15rem;
}

.review-badge {
  background: var(--color-gold-dim);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin-left: auto;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ==========================================================
   13. TEAM
   ========================================================== */

#team {
  padding: 7rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
  border-color: rgba(255, 255, 255, 0.1);
}

.team-avatar {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-bg-tertiary) 0%,
    var(--color-green-darkest) 40%,
    var(--color-bg-secondary) 100%
  );
}

.team-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(45, 106, 79, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(237, 195, 42, 0.05) 0%, transparent 40%);
}

.team-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    to top,
    var(--color-glass-bg),
    transparent
  );
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-avatar img {
  transform: scale(1.08);
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  color: var(--color-text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-info .role {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
}

.team-info p {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.team-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  border-top: 1px solid var(--color-glass-border);
  padding-top: 1rem;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-glass-border);
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.team-social a:hover {
  background: var(--color-gold);
  color: var(--color-bg-primary);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}


/* ==========================================================
   14. FAQ
   ========================================================== */

#faq {
  padding: 7rem 0;
  background: var(--color-bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 0.75rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid var(--color-glass-border);
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: rgba(237, 195, 42, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--color-text-primary);
  font-weight: 500;
  font-size: 1.05rem;
  transition: var(--transition-fast);
  user-select: none;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-question .faq-toggle {
  color: var(--color-gold);
  font-size: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 2rem 1.5rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}


/* ==========================================================
   15. CONTACT
   ========================================================== */

#contact {
  padding: 7rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.contact-info h2 .accent {
  color: var(--color-gold);
}

.contact-info p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--color-text-secondary);
}

.contact-detail-item i {
  color: var(--color-gold);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-detail-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.contact-detail-item p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* ── Contact Form ── */

.contact-form {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(237, 195, 42, 0.2),
    transparent
  );
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(237, 195, 42, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a5a6e' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

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

/* ── Form Validation States ── */

.form-group .error-msg {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group.error .error-msg {
  display: block;
}

/* ── Custom Dropdowns ── */

.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
  user-select: none;
}

.custom-select-trigger:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 155, 39, 0.3);
}

.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(237, 195, 42, 0.15);
}

.custom-select-trigger.placeholder span {
  color: var(--color-text-muted);
}

.custom-select-trigger span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 1rem;
}

.custom-select-trigger i {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.custom-select-wrapper.open .custom-select-trigger i {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.custom-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(28, 34, 41, 0.15);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.99);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  overflow: hidden;
  padding: 0.4rem 0;
}

.custom-select-wrapper.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-option {
  padding: 0.75rem 1.25rem;
  color: var(--color-text-secondary);
  font-size: 0.925rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-option:hover {
  background: rgba(197, 155, 39, 0.08);
  color: var(--color-gold);
}

.custom-option.selected {
  background: rgba(197, 155, 39, 0.12);
  color: var(--color-gold);
  font-weight: 600;
}

.custom-option.selected::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  margin-left: 0.5rem;
  color: var(--color-gold);
}

.form-group.error .custom-select-trigger {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ── Submit ── */

.form-submit .btn-primary {
  width: 100%;
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}


/* ==========================================================
   16. FOOTER
   ========================================================== */

.footer {
  padding: 5rem 0 2rem;
  background: #060609;
  border-top: 1px solid var(--color-glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

/* ── Footer Brand ── */

.footer-brand img {
  height: 36px;
  margin-bottom: 1rem;
  filter: brightness(0.9);
}

.footer-brand p {
  color: #CBD5E1; /* High contrast slate silver */
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

/* ── Footer Columns ── */

.footer-col h4 {
  color: #FCFAF2; /* High contrast warm off-white */
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: #CBD5E1; /* High contrast slate silver */
  font-size: 0.875rem;
  transition: var(--transition-fast);
  position: relative;
}

.footer-col a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

/* ── Footer Bottom ── */

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #CBD5E1; /* High contrast slate silver */
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: var(--color-gold-dim);
  transform: translateY(-3px);
}


/* ==========================================================
   17. SCROLL ANIMATIONS
   ========================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.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;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Reveal from different directions */

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}


/* ==========================================================
   18. KEYFRAME ANIMATIONS
   ========================================================== */

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse-glow {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes borderGlow {
  0%,
  100% {
    border-color: rgba(237, 195, 42, 0.1);
  }
  50% {
    border-color: rgba(237, 195, 42, 0.3);
  }
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section description (used in section headers) */
.section-description {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0.75rem auto 0;
}

/* About channels wrapper */
.about-channels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Contact form wrapper (glassmorphic card) */
.contact-form-wrapper {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-form-wrapper .contact-form {
  padding: 2.5rem;
}

/* Additional reveal delays */
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Nav link active state */
.nav-links a.active {
  color: var(--color-gold);
}

.nav-links a.active::after {
  width: 100%;
}


/* ==========================================================
   19. SCROLLBAR & SELECTION
   ========================================================== */

::selection {
  background: rgba(237, 195, 42, 0.3);
  color: var(--color-text-primary);
}

::-moz-selection {
  background: rgba(237, 195, 42, 0.3);
  color: var(--color-text-primary);
}

/* WebKit scrollbar */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(237, 195, 42, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(237, 195, 42, 0.5);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(237, 195, 42, 0.3) var(--color-bg-primary);
}


/* ==========================================================
   20. RESPONSIVE — 1024px (Tablet Landscape)
   ========================================================== */

@media (max-width: 1024px) {

  /* Navbar */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 0; /* Clear double-padding accumulation */
    padding-bottom: 3rem;
  }

  .hero-content {
    text-align: left;
    align-items: flex-start;
    padding: 1.5rem 0;
  }

  .hero-tagline {
    justify-content: flex-start;
  }

  .hero-description {
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-visual-art {
    width: 320px;
    height: 320px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 3rem;
  }

  .stat-item:nth-child(2n)::after {
    display: none;
  }

  /* Horizontal dividers between row 1 and row 2 */
  .stat-item:nth-child(1)::before,
  .stat-item:nth-child(2)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(210, 224, 238, 0.15),
      transparent
    );
  }

  /* Overview */
  .overview-features {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Projects */
  .project-featured {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}


/* ==========================================================
   21. RESPONSIVE — 768px (Tablet Portrait)
   ========================================================== */

@media (max-width: 768px) {

  .section {
    padding: 5rem 0;
  }

  /* Stats */
  #stats {
    padding: 3rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  /* Overview */
  .overview-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Services */
  .services-tabs {
    gap: 0.35rem;
  }

  .tab-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Projects — horizontal scroll */
  .project-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .project-grid::-webkit-scrollbar {
    height: 4px;
  }

  .project-grid::-webkit-scrollbar-thumb {
    background: rgba(237, 195, 42, 0.2);
    border-radius: 2px;
  }

  .project-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
    aspect-ratio: 4 / 3;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  /* Contact form */
  .contact-form {
    padding: 2rem 1.5rem;
  }


  /* Mobile Menu adjustments */
  .mobile-menu a {
    font-size: 1.75rem;
  }
}


/* ==========================================================
   22. RESPONSIVE — 480px (Mobile)
   ========================================================== */

@media (max-width: 480px) {

  .section {
    padding: 3.5rem 0;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-avatar {
    height: 200px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .stat-number {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  /* Hero */
  .hero-content {
    padding: 1.5rem 0;
  }


  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-visual-art {
    width: 250px;
    height: 250px;
  }

  /* Buttons */
  .btn-primary,
  .btn-secondary {
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Services tabs */
  .services-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn {
    text-align: center;
  }

  /* FAQ */
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
  }

  .faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
  }

  /* Channel badges */
  .channel-badge {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .channel-badge i {
    font-size: 1.5rem;
  }

  /* Reviews */
  .review-card {
    padding: 1.5rem;
  }

  /* Contact */
  .contact-form {
    padding: 1.5rem 1.25rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem 1rem;
  }

  /* Overview */
  .overview-feature {
    padding: 1.5rem;
  }

  /* Navbar */
  .nav-container {
    height: 64px;
  }

  .nav-logo img {
    height: 36px;
  }

  /* Hero Grid spacing */
  .hero-grid {
    padding-top: 64px; /* Clear mobile navbar */
  }

  /* Mobile menu */
  .mobile-menu a {
    font-size: 1.5rem;
    margin: 0.6rem 0;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-brand p {
    max-width: 100%;
  }
}


/* ==========================================================
   PRELOADER
   ========================================================== */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-line {
  width: 60px;
  height: 2px;
  background: var(--color-glass-border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.preloader-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-gold);
  animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}


/* ==========================================================
   BACK TO TOP BUTTON
   ========================================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #0a0a0f;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(237, 195, 42, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-gold-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(237, 195, 42, 0.4);
}


/* ==========================================================
   SCROLL INDICATOR
   ========================================================== */

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ==========================================================
   HERO GRID & SVG ALIASES
   ========================================================== */

.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr; /* Widen content, shrink image */
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
  padding-top: 80px;
}

.hero-svg {
  width: 100%;
  height: auto;
  max-width: 420px;
}

.rotate-slow {
  animation: spin-slow 30s linear infinite;
  transform-origin: center;
}

.rotate-slow-reverse {
  animation: spin-slow 25s linear infinite reverse;
  transform-origin: center;
}

.float {
  animation: float 6s ease-in-out infinite;
}

.float-delay {
  animation: float 6s ease-in-out 2s infinite;
}

/* Hero float elements (match HTML class names) */
.hero-float {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero-float-1 {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  opacity: 0.4;
  top: 20%;
  right: 15%;
}

.hero-float-2 {
  width: 4px;
  height: 4px;
  background: var(--color-green-light);
  opacity: 0.3;
  top: 60%;
  left: 10%;
  animation-delay: 1.5s;
}

.hero-float-3 {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  opacity: 0.2;
  bottom: 25%;
  right: 20%;
  animation-delay: 3s;
}




/* ==========================================================
   LOGO FALLBACK
   ========================================================== */

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
}


/* ==========================================================
   CARD PLACEHOLDER (SVG art containers)
   ========================================================== */

.card-placeholder {
  margin-top: 1.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  background: var(--color-bg-secondary);
}

.card-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
}

.card-placeholder svg rect[fill="#0f0f17"],
.card-placeholder svg rect:first-of-type {
  fill: var(--color-bg-secondary) !important;
}

.card-placeholder svg text {
  fill: var(--color-text-secondary) !important;
}


/* ==========================================================
   BUTTON VARIANTS
   ========================================================== */

.btn-sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
}

.mobile-cta {
  margin-top: 2rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}


/* ==========================================================
   PROJECT CARD ART & IMAGE ART
   ========================================================== */

.project-card-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.project-card:hover .project-card-art {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.project-card-art svg {
  width: 100%;
  height: 100%;
}

.project-image-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.project-main-image:hover .project-image-art {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.project-image-art svg {
  width: 100%;
  height: 100%;
}


/* ==========================================================
   CHANNELS TITLE & MISC
   ========================================================== */

.channels-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.badge-arrow {
  margin-left: auto;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.channel-badge:hover .badge-arrow {
  color: var(--color-gold);
  transform: translateX(4px);
}


/* ==========================================================
   HONEYPOT (hidden from users)
   ========================================================== */

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}


/* ==========================================================
   PROJECT TAG & CARD TAG
   ========================================================== */

.project-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  background: rgba(237, 195, 42, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.project-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  background: rgba(237, 195, 42, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.35rem;
}

.project-excerpt {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.project-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}


/* ==========================================================
   FOOTER ADDITIONAL
   ========================================================== */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FCFAF2; /* High contrast warm off-white */
}

.footer-office {
  margin-top: 1.5rem;
}

.footer-office h4 {
  margin-bottom: 0.5rem;
  color: #FCFAF2; /* High contrast warm off-white */
}

.footer-office p {
  color: #CBD5E1; /* High contrast slate silver */
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-credits {
  font-size: 0.8rem;
  color: #CBD5E1; /* High contrast slate silver */
}

.footer-credits a {
  color: var(--color-gold);
  text-decoration: underline;
  transition: var(--transition-fast);
}

.footer-credits a:hover {
  color: var(--color-gold-hover);
}


/* ==========================================================
   CONTACT DETAILS
   ========================================================== */

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail i {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-top: 0.2rem;
  width: 24px;
  flex-shrink: 0;
}

.contact-detail h4 {
  color: var(--color-text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}


/* ==========================================================
   RESPONSIVE ADDITIONS
   ========================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 2rem;
  }

  .hero-grid .hero-content {
    align-items: flex-start;
  }

  .hero-tagline {
    justify-content: flex-start;
  }

  .hero-description {
    margin-left: 0;
    margin-right: auto;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    min-height: auto;
    padding-top: 80px; /* Clear navbar (80px height on tablet) */
    padding-bottom: 3rem;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-visual-art {
    width: 280px;
    height: 280px;
  }
}


/* ==========================================================
   UTILITY CLASSES
   ========================================================== */

.text-gold {
  color: var(--color-gold);
}

.text-green {
  color: var(--color-green-light);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-secondary {
  color: var(--color-text-secondary);
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ==========================================================
   PREFERS REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .hero-visual-art {
    animation: none;
  }

  .hero-float-element {
    animation: none;
  }
}


/* ==========================================================
   LIGHTBOX POPUP MODAL
   ========================================================== */

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(28, 34, 41, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.lightbox-modal.visible {
  opacity: 1;
  visibility: visible;
}

.lightbox-wrapper {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  max-width: 900px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 3rem 2rem 2rem;
}

.lightbox-modal.visible .lightbox-wrapper {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
  background: none;
  border: none;
  padding: 0;
}

.lightbox-close:hover {
  color: var(--color-gold);
  transform: scale(1.1);
}

.lightbox-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content svg {
  width: 100%;
  max-height: 70vh;
  height: auto;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--color-glass-border);
}

.lightbox-content svg rect[fill="#0f0f17"],
.lightbox-content svg rect:first-of-type {
  fill: var(--color-bg-secondary) !important;
}

.lightbox-content svg text {
  fill: var(--color-text-primary) !important;
}

.lightbox-content h3 {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-primary);
  text-align: center;
}


/* ==========================================================
   PRINT STYLES
   ========================================================== */

@media print {
  body {
    background: #fff;
    color: #000;
  }

  .navbar,
  .hamburger,
  .mobile-menu,
  .hero-visual,
  .footer-social,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }

  .section {
    padding: 2rem 0;
    break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
