@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
  --bg-dark: #050507;
  --bg-section: #111114;
  --bg-section-soft: #181a1f;
  --accent: #FFC800;
  --accent-dark: #d39a00;
  --text-main: #f7f7f7;
  --text-muted: #b4b4b4;
  --border-subtle: #26282e;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-accent: 0 10px 30px rgba(255, 200, 0, 0.2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.dropdown-submenu {
  position: relative;
}

/* =========================
   DESKTOP HOVER DROPDOWNS
========================= */

/* Hide all dropdowns by default */
.dropdown-menu,
.dropdown-submenu > .submenu {
  display: none;
}

/* First-level dropdown on hover */
.nav-dropdown:hover > .dropdown-menu {
  display: flex;
}

/* Second & third level submenu on hover */
.dropdown-submenu:hover > .submenu {
  display: flex;
}

/* Base positioning */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 1000;
}

/* Submenus open sideways */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .submenu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 260px;
  background: #ffffff;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  z-index: 1100;
}

/* Styling */
.dropdown-menu a,
.submenu a {
  padding: 10px 16px;
  text-decoration: none;
  color: #111;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.submenu a:hover {
  background-color: #f2f2f2;
}

/* Disable hover dropdowns on mobile */
@media (max-width: 991px) {
  .dropdown-menu,
  .submenu {
    display: none !important;
  }
}


.dropdown-submenu .submenu {
  position: absolute;
  top: 0;
  left: 100%;
}

/* FONT CHANGES START HERE */
body {
 font-family: "Google Sans", sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Heading font styles */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Hero specific fonts */
.hero-name {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Logo text font */
.logo-text {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Section titles */
.section-title {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Button font */
.btn {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Badge font */
.badge {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: 0.09em;
}

/* Testimonial quote styling */
.testimonial-content {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-style: italic;
  font-weight: 400;
}

/* Card titles */
.expertise-title,
.impact-title,
.gallery-title,
.modal-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Stat numbers */
.stat-number,
.testimonial-stat-number {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Navigation font */
nav {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
}

/* Footer fonts */
.footer-title {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
}

/* Dropdown menu font */
.dropdown-menu a,
.submenu a,
.mobile-nav-item,
.mobile-nav-dropdown-btn {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
}

/* FONT CHANGES END HERE */

/* DROPDOWN NAVIGATION STYLES */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-section-soft);
  border-radius: var(--radius-md);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(255, 200, 0, 0.05);
  padding-left: 1.5rem;
}

/* Submenu styles */
.dropdown-submenu {
  position: relative;
}

.submenu-toggle {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.submenu-toggle i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown-submenu:hover .submenu-toggle i {
  transform: rotate(90deg);
}

.submenu {
  position: absolute;
  top: -0.8rem;
  left: 100%;
  min-width: 200px;
  background: var(--bg-section-soft);
  border-radius: var(--radius-md);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  z-index: 101;
}

.dropdown-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* MOBILE MENU STYLES */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1rem;
  color: var(--text-main);
}

.mobile-nav-dropdown-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
}

.mobile-nav-dropdown-btn i {
  transition: transform 0.3s ease;
}

.mobile-nav-dropdown-btn.active i {
  transform: rotate(180deg);
}

.mobile-nav-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 1rem;
}

.mobile-nav-dropdown-content.active {
  max-height: 1000px;
}

.mobile-nav-dropdown-content a {
  display: block;
  padding: 0.8rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
}

.mobile-nav-subdropdown {
  margin-top: 0.5rem;
}

.mobile-nav-subdropdown-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  cursor: pointer;
}

.mobile-nav-subdropdown-btn i {
  transition: transform 0.3s ease;
}

.mobile-nav-subdropdown-btn.active i {
  transform: rotate(180deg);
}

.mobile-nav-subdropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 1rem;
}

.mobile-nav-subdropdown-content.active {
  max-height: 1000px;
}

.mobile-nav-subdropdown-content a {
  padding: 0.7rem 0;
  font-size: 0.9rem;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header-cta {
    margin-left: auto;
    margin-right: 1rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 1rem;
  }
  
  .header-cta .btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .logo-text {
    font-size: 0.7rem;
  }
}

img {
  height: 100%;
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #22252f 0, #050507 45%);
}

.container {
  width: min(1200px, 100% - 3rem);
  margin: 0 auto;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 7, 0.92);
  border-bottom: 1px solid rgba(255, 200, 0, 0.1);
  padding: 0.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 1.5rem;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(255, 200, 0, 0.1);
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
}

.logo-text span:first-child {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

nav a {
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--accent);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.header-cta .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #111;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 200, 0, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 200, 0, 0.5);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 200, 0, 0.15);
  transform: translateY(-2px);
  border-color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.15rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 200, 0, 0.1);
  border: 1px solid rgba(255, 200, 0, 0.4);
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.75rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 540px;
}

section {
  padding: 4rem 0;
}

/* HERO */
.hero {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-name {
  font-size: 2.8rem;
  margin-bottom: 0.35rem;
  line-height: 1.1;
}

.hero-name span {
  color: var(--accent);
}

.hero-roles {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}

.hero-roles span {
  display: block;
}

.hero-summary {
  font-size: 1rem;
  max-width: 580px;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta span {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 200, 0, 0.05);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 26px;
  background: radial-gradient(circle at top, #20222e 0, #0e0f13 55%, #060608 100%);
  padding: 1.5rem 1.5rem 1.2rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(255, 200, 0, 0.15);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 210deg,
    rgba(255, 200, 0, 0.15),
    transparent,
    transparent,
    rgba(255, 200, 0, 0.2),
    transparent
  );
  opacity: 0.9;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1rem;
  background: linear-gradient(145deg, #101116, #07080b);
  border: 1px solid rgba(255, 200, 0, 0.2);
  overflow: hidden;
}

.hero-photo-wrap {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #222;
  border: 3px solid var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tag {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.hero-tag strong {
  color: var(--accent);
  font-weight: 500;
}

.hero-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #111;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

/* ABOUT & STATS */
.section-heading {
  margin-bottom: 2.5rem;
  text-align: left;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 2.5rem;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
}

.about-text p + p {
  margin-top: 1rem;
}

.role-list {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.5rem;
  font-size: 0.92rem;
}

.role-list li {
  list-style: none;
  position: relative;
  padding-left: 1.2rem;
}

.role-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.stats-card {
  border-radius: var(--radius-lg);
  background: var(--bg-section-soft);
  padding: 1.8rem 1.8rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  height: fit-content;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.stat {
  padding: 0.4rem 0.1rem;
}

.stat-number {
  font-size: 1.8rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* EXPERTISE */
.expertise {
  background: var(--bg-section);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.expertise-card {
  border-radius: var(--radius-md);
  background: #15171c;
  border: 1px solid var(--border-subtle);
  padding: 1.5rem 1.3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 200, 0, 0.5);
}

.expertise-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 200, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.expertise-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.expertise-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CLIENTS */
.clients {
  background: #121318;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.client-item {
  border-radius: var(--radius-md);
  background: rgba(255, 200, 0, 0.05);
  border: 1px solid rgba(255, 200, 0, 0.1);
  padding: 1.2rem 0.8rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.client-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 200, 0, 0.1);
  border-color: rgba(255, 200, 0, 0.3);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--bg-section);
  padding: 4rem 0;
}

.testimonial-slider {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
}

.testimonial-card {
  min-width: 100%;
  border-radius: var(--radius-lg);
  background: #15171c;
  border: 1px solid var(--border-subtle);
  padding: 2rem 1.8rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonial-card {
    min-width: calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    min-width: calc(33.333% - 1.33rem);
  }
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 200, 0, 0.5);
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-size: 2.5rem;
  color: rgba(255, 200, 0, 0.3);
  font-family: serif;
}

.testimonial-content {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 200, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  border: 2px solid rgba(255, 200, 0, 0.3);
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  font-size: 1rem;
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.testimonial-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  text-align: center;
}

.testimonial-stat {
  padding: 0 1rem;
}

.testimonial-stat-number {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.testimonial-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* GALLERY */
.gallery-section {
  background: var(--bg-section);
  padding: 4rem 0;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 3rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 200, 0, 0.3);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(255, 200, 0, 0.15);
  color: var(--accent);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #15171c;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
  position: relative;
  height: 280px;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 200, 0, 0.5);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(5, 5, 7, 0.95), transparent);
  padding: 1.5rem 1.2rem 1rem;
  color: white;
  transform: translateY(10px);
  transition: transform 0.3s ease;
  opacity: 0;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.gallery-category {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 7, 0.95);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  background: var(--bg-section-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 200, 0, 0.2);
  box-shadow: var(--shadow-soft);
}

.modal-img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

.modal-info {
  padding: 1.5rem;
}

.modal-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.modal-category {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(5, 5, 7, 0.8);
  border: 1px solid rgba(255, 200, 0, 0.3);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent);
  color: #111;
  transform: rotate(90deg);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(5, 5, 7, 0.8);
  border: 1px solid rgba(255, 200, 0, 0.3);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-nav:hover {
  background: var(--accent);
  color: #111;
}

.modal-prev {
  left: 1.5rem;
}

.modal-next {
  right: 1.5rem;
}

/* IMPACT */
.impact {
  background: var(--bg-section);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.impact-card {
  border-radius: var(--radius-md);
  background: #15171c;
  border: 1px solid var(--border-subtle);
  padding: 1.8rem 1.5rem;
  position: relative;
}

.impact-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.impact-list {
  list-style: none;
}

.impact-list li {
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.impact-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* CTA */
.cta {
  padding: 4rem 0;
  background: radial-gradient(circle at center, #1a1b20 0, #050507 70%);
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: #050507;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 1.5rem;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.1fr 1.1fr 1.1fr;
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 200, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent);
  color: #111;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner,
  .about-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .expertise-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .hero-name {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .expertise-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .role-list {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .gallery-item {
    height: 240px;
  }
  
  .testimonial-stats {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 1.9rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .clients-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 200px;
  }
}