/* ===================================
Global Institutional Leadership Design
CSS Variables & Reset – PREMIUM MODERN THEME
=================================== */
:root {
  /* Base neutrals - DEEP BLUE-BLACK */
  --color-ivory: #0a0c14;          /* Deep midnight blue */
  --color-off-white: #121826;      /* Dark blue-gray surface */
  --color-light-cream: #1a2038;    /* Card background */
  --color-warm-gray: #2a3152;      /* Muted blue-neutral */
  --color-border-gray: #3a4266;    /* Elegant borders */

  /* Primary brand colors - SAPPHIRE */
  --color-deep-blue: #2d4263;      /* Rich sapphire blue */
  --color-navy: #243553;           /* Darker sapphire */
  --color-slate-blue: #355070;     /* Brighter sapphire */
  --color-light-blue: #1c2d4a;     /* Deep blue tint */

  /* Accent color - ROSE GOLD */
  --color-forest-green: #be7a1a;   /* Warm rose gold */
  --color-sage: #b8945c;           /* Darker rose gold */
  --color-mint: #2a241c;           /* Warm dark accent bg */

  /* Text colors */
  --color-charcoal: #ffffff;       /* Headings - white */
  --color-dark-gray: #e8eaf0;      /* Body text - light blue-gray */
  --color-medium-gray: #b8c1d9;    /* Muted text */
  --color-light-gray: #8a94b3;     /* Meta / footer */

  /* Typography (unchanged) */
  --font-serif: 'Crimson Pro', 'Georgia', serif;
  --font-display: 'Libre Baskerville', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-semibold : 600;

  /* Transitions (unchanged) */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Spacing (unchanged) */
  --section-padding: 8rem;
  --container-padding: clamp(1.25rem, 5vw, 4rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-ivory);
  color: var(--color-dark-gray);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  background:
    radial-gradient(
      1200px 600px at top center,
      rgba(207, 164, 74, 0.15),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.8),
      rgba(18, 18, 18, 1)
    );
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Hero, About, Portfolio, etc. (odd sections) */
section:nth-of-type(odd):not(.hero):not(.footer-section) {
  background: var(--color-ivory);
}

/* Leadership, Vision, etc. (even sections) */
section:nth-of-type(even):not(.footer-section) {
  background: var(--color-off-white);
}

/* Optional: Make the hero and footer special */
.hero {
  background: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-off-white) 100%);
}

.footer-section {
  background: #050811;
}

/* ===================================
Typography - UPDATED FOR DARK THEME
=================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-charcoal);
}

p {
  font-family: var(--font-sans);
  line-height: 1.8;
  color: var(--color-dark-gray);
}

strong {
  font-weight: 600;
  color: var(--color-forest-green);
}

/* ===================================
Navigation - DARK THEME
=================================== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 1.5rem var(--container-padding);
  border-bottom: 1px solid var(--color-border-gray);
  transition: var(--transition-smooth);
}

nav.scrolled {
  padding: 1rem var(--container-padding);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  background: rgba(26, 26, 26, 0.98);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
  color: var(--color-charcoal);
}

.logo-initials {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-forest-green);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-medium-gray);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition-base);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-forest-green);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-forest-green);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-forest-green);
  transition: var(--transition-base);
  border-radius: 2px;
}

/* ===================================
Contact Navigation Button - Warm Copper Gradient (Circular)
=================================== */
.nav-contact-btn {
  margin-left: 1rem;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2.5rem !important;
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  color: white !important;
  border-radius: 50px !important;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.3);
  box-shadow: 0 4px 16px rgba(180, 83, 9, 0.25);
}

.btn-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-contact:hover::before {
  left: 100%;
}

.btn-contact:hover {
  background: linear-gradient(135deg, #b45309 0%, #f59e0b 120%);
  box-shadow: 
    0 8px 24px rgba(180, 83, 9, 0.35),
    0 4px 8px rgba(217, 119, 6, 0.15);
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.5);
}

.btn-contact:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.3);
}

.btn-contact::after {
  display: none !important;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-contact:hover {
  transform: translateX(4px);
}

.btn-contact:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

/* ===================================
   RESPONSIVE BREAKPOINTS - CONTACT BUTTON
   =================================== */

/* Large Tablets and Small Desktops (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-contact-btn {
    margin-left: 0.5rem;
  }
  
  .btn-contact {
    padding: 0.65rem 1.75rem !important;
    font-size: 0.85rem;
  }
}

/* Tablets and Mobile Landscape (481px - 768px) */
@media (max-width: 768px) {
  .nav-contact-btn {
    margin: 1rem 0 0 0;
    width: 100%;
  }
  
  .btn-contact {
    justify-content: center;
    width: 100%;
    padding: 0.9rem 2rem !important;
  }
  
  .nav-links.active .nav-contact-btn {
    order: 999;
  }
}

/* Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
  .btn-contact {
    padding: 0.85rem 1.75rem !important;
    font-size: 0.9rem;
  }
}

/* iPhone 14 Pro Max, 14 Plus, 13 Pro Max, 12 Pro Max, XS Max, XR, 11 Pro Max, 11 (428px) */
@media (max-width: 428px) {
  .btn-contact {
    padding: 0.85rem 1.6rem !important;
  }
}

/* iPhone 14 Pro, 14, 13 Pro, 13, 12 Pro, 12 (390px) */
@media (max-width: 390px) {
  .btn-contact {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.88rem;
  }
}

/* iPhone SE (3rd gen), SE (2nd gen), 8, 7, 6s, 6 (375px) */
@media (max-width: 375px) {
  .btn-contact {
    padding: 0.75rem 1.4rem !important;
    font-size: 0.85rem;
  }
}

/* Small Mobile Devices (320px - 360px) */
@media (max-width: 360px) {
  .btn-contact {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.85rem;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-contact-btn {
  animation: slideInRight 0.5s ease-out 0.3s both;
}

@keyframes contactPulse {
  0% {
    box-shadow: 0 4px 16px rgba(180, 83, 9, 0.25);
  }
  50% {
    box-shadow: 0 4px 16px rgba(180, 83, 9, 0.4);
  }
  100% {
    box-shadow: 0 4px 16px rgba(180, 83, 9, 0.25);
  }
}

.btn-contact.pulse {
  animation: contactPulse 2s infinite;
}

@media (prefers-color-scheme: dark) {
  .btn-contact {
    background: linear-gradient(135deg, #92400e 0%, #b45309 100%);
    border-color: rgba(180, 83, 9, 0.4);
  }
  
  .btn-contact:hover {
    background: linear-gradient(135deg, #92400e 0%, #d97706 120%);
  }
}

@media print {
  .nav-contact-btn {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-contact::before,
  .btn-contact,
  .btn-arrow {
    transition: none !important;
    animation: none !important;
  }
  
  .btn-contact:hover {
    transform: none !important;
  }
  
  .btn-contact:hover .btn-arrow {
    transform: none !important;
  }
}

/* ===================================
Hero Section - DARK THEME
=================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem var(--container-padding) 6rem;
  background: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-off-white) 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(15, 61, 62, 0.3) 100%);
  opacity: 0.4;
  z-index: 0;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

.hero-label {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero-label span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-forest-green);
  padding: 0.6rem 1.5rem;
  background: var(--color-mint);
  border-left: 3px solid var(--color-forest-green);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--color-charcoal);
  letter-spacing: -1px;
  transition: text-shadow 0.4s ease;
}

.hero-title:hover {
  text-shadow: 0 8px 30px rgba(15, 61, 62, 0.25);
}

.hero-credentials {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 2rem 0;
  border-top: 2px solid var(--color-border-gray);
  border-bottom: 2px solid var(--color-border-gray);
}

.hero-label,
.hero-title,
.hero-credentials,
.hero-tagline,
.hero-cta-group,
.hero-stats {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.9s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.55s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.credential-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.credential-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-forest-green);
}

.credential-org {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-medium-gray);
}

.credential-divider {
  width: 1px;
  height: 50px;
  background: var(--color-border-gray);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.9;
  color: var(--color-dark-gray);
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 2px solid;
  cursor: pointer;
  border-radius: 50px !important;
  position: relative;
  overflow: hidden;
  min-width: 160px;
}

.btn-primary {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  color: white;
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow: 0 4px 16px rgba(180, 83, 9, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b45309 0%, #f59e0b 120%);
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(180, 83, 9, 0.35),
    0 4px 8px rgba(217, 119, 6, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-secondary:hover {
  background: var(--color-navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(36, 53, 83, 0.4);
}

.btn-secondary-gold {
  background: transparent;
  color: var(--color-forest-green);
  border-color: var(--color-forest-green);
}

.btn-secondary-gold:hover {
  background: var(--color-forest-green);
  color: var(--color-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 167, 106, 0.4);
}

.btn-primary::after {
  content: '→';
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover::after {
  transform: translateX(4px);
}

.btn-secondary::before {
  content: '↓';
  font-size: 1.1rem;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.btn-secondary:hover::before {
  transform: translateY(2px);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

.btn-primary:active,
.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }
}

.btn-primary,
.btn-secondary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:active::before,
.btn-secondary:active::before {
  width: 300px;
  height: 300px;
}



.hero-image-container {
  position: relative;
}

.hero-image-frame {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.portrait-placeholder {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: var(--color-off-white);
  border: 2px solid var(--color-forest-green);
  padding: 10px;
  box-shadow:
    0 8px 24px rgba(207, 164, 74, 0.2),
    0 2px 8px rgba(207, 164, 74, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portrait-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 61, 62, 0.05) 0%,
    rgba(207, 164, 74, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
  border-radius: 16px;
}

.portrait-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-deep-blue) 0%, var(--color-forest-green) 100%);
  transition: width 0.5s ease;
  border-radius: 16px 16px 0 0;
  z-index: 3;
}

.portrait-placeholder:hover::before {
  opacity: 1;
}

.portrait-placeholder:hover::after {
  width: 100%;
}

.portrait-placeholder:hover {
  background: #1a1a1a;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px rgba(207, 164, 74, 0.2);
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(207, 164, 74, 0.3);
}

.hero-portrait {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  filter: saturate(1.1) contrast(1.02);
  transition: all 0.4s ease;
}

.portrait-placeholder:hover .hero-portrait {
  filter: saturate(1.18) contrast(1.06) brightness(1.03);
  transform: scale(1.02);
}

.image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-forest-green) 100%);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease;
}

.portrait-placeholder:hover ~ .image-accent {
  opacity: 0.2;
  transform: scale(1.3) rotate(15deg);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--color-off-white);
  border: 2px solid var(--color-forest-green);
  border-radius: 16px;
  box-shadow:
    0 6px 18px rgba(207, 164, 74, 0.2),
    0 2px 6px rgba(207, 164, 74, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 61, 62, 0.05) 0%,
    rgba(207, 164, 74, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.hero-stats::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-deep-blue) 0%, var(--color-forest-green) 100%);
  transition: width 0.5s ease;
  border-radius: 20px 20px 0 0;
  z-index: 3;
}

.hero-stats:hover::before {
  opacity: 1;
}

.hero-stats:hover::after {
  width: 100%;
}

.hero-stats:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.4),
    inset 0 0 0 2px rgba(207, 164, 74, 0.2);
  background: #1a1a1a;
  border-color: rgba(207, 164, 74, 0.3);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(207, 164, 74, 0.3) 50%,
    transparent 100%
  );
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-forest-green) 0%, var(--color-sage) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 8px rgba(207, 164, 74, 0.4));
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-medium-gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
  color: var(--color-forest-green);
  letter-spacing: 2px;
}

/* ===================================
Section Styles - DARK THEME
=================================== */
section {
  padding: var(--section-padding) var(--container-padding);
  position: relative;
}

.section-header {
  max-width: 900px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-forest-green);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--color-mint);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.section-description {
  font-size: 1.15rem;
  color: var(--color-medium-gray);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
About Section - DARK THEME
=================================== */
.about-section {
  background: var(--color-off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  margin-bottom: 2rem;
  align-items: start;
}

.about-intro {
  margin-bottom: 0;
}

.lead-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--color-charcoal);
  font-weight: 500;
}

/* ================================
IMAGE + QUOTE BLOCK (PREMIUM) - DARK THEME
================================ */
.about-image-block {
  margin: 3.5rem 0 2rem;
  max-width: 560px;
  position: relative;
  transition: transform 0.5s ease;
  background: var(--color-off-white);
  border: 2px solid var(--color-forest-green);
  border-radius: 32px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-image-block:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.3);
}

.about-image {
  position: relative;
  padding: 0;
  border-radius: 26px;
  background: transparent;
}

.about-image img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) brightness(0.98);
  transition: all 0.6s ease;
}

.about-image-block:hover img {
  transform: scale(1.02);
  filter: contrast(1.05) brightness(1);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 10px;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
  filter: blur(30px);
  border-radius: 30px;
}

/* ================================
ATTACHED QUOTE STYLING - DARK THEME
================================ */
.about-image-quote {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  font-size: 16.5px;
  font-style: italic;
  line-height: 1.75;
  color: var(--color-dark-gray);
  border-left: 4px solid var(--color-forest-green);
  position: relative;
  background: transparent;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-radius: 0;
  box-shadow: none;
}

.about-image-quote::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--color-forest-green);
  transition: height 0.6s ease;
}

.about-image-block:hover .about-image-quote::before {
  height: 100%;
}

.about-image-quote::after {
  content: '"';
  position: absolute;
  top: -12px;
  left: -6px;
  font-size: 64px;
  color: var(--color-forest-green);
  opacity: 0.1;
  font-family: serif;
}

.about-body{
  margin-top: 2rem;
}

.about-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 100%;
  text-align: justify;
  color: var(--color-dark-gray);
  margin-bottom: 1.5rem;
}

.about-body p:last-child {
  margin-bottom: 0;
}

/* ===================================
About Sidebar & Achievements (Enhanced) - DARK THEME
=================================== */
.about-sidebar {
  margin-top: 40px;
}

.sidebar-card {
  background: var(--color-light-cream);
  border: 2px solid var(--color-forest-green);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.sidebar-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(207, 164, 74, 0.2);
  border-color: rgba(207, 164, 74, 0.3);
  background: var(--color-off-white);
}

.sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-forest-green);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-forest-green);
}

/* Achievement List - FIXED FOR IPHONE SE */
.achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievement-list li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border-gray);
  transition: all 0.3s ease;
  align-items: flex-start; /* KEY FIX: Changed from center to flex-start */
}

.achievement-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.achievement-list li:hover {
  transform: translateX(4px);
}

.achievement-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(207, 164, 74, 0.1);
  color: var(--color-forest-green);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.achievement-list li:hover .achievement-icon {
  background: var(--color-forest-green);
  color: var(--color-charcoal);
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(207, 164, 74, 0.3);
}

.achievement-content {
  flex: 1;
  min-width: 0; /* KEY FIX: Prevents content overflow */
}

.achievement-content h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  word-wrap: break-word; /* KEY FIX: Ensures text wraps properly */
}

.achievement-list li:hover .achievement-content h4 {
  color: var(--color-forest-green);
}

.achievement-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-medium-gray);
  transition: color 0.3s ease;
  word-wrap: break-word; /* KEY FIX: Ensures text wraps properly */
}

.achievement-list li:hover .achievement-content p {
  color: var(--color-dark-gray);
}

.sidebar-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 61, 62, 0.05), rgba(207, 164, 74, 0.05));
  opacity: 0;
  pointer-events: none;
  border-radius: 25px;
  transition: opacity 0.4s ease;
}

.sidebar-card:hover::after {
  opacity: 1;
}

/* Read More Button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  color: white !important;
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 2rem;
  box-shadow: 0 4px 16px rgba(180, 83, 9, 0.25);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.read-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.read-more-btn:hover::before {
  left: 100%;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #b45309 0%, #f59e0b 120%);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 24px rgba(180, 83, 9, 0.35),
    0 4px 8px rgba(217, 119, 6, 0.15);
  border-color: rgba(245, 158, 11, 0.5);
}

.read-more-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.3);
}

.btn-icon {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.read-more-btn:hover .btn-icon {
  transform: translateX(5px);
}

.read-more-btn:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 3px;
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.read-more-btn {
  position: relative;
  overflow: hidden;
}

.read-more-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.read-more-btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

@keyframes subtlePulse {
  0% {
    box-shadow: 0 4px 16px rgba(180, 83, 9, 0.25);
  }
  50% {
    box-shadow: 0 4px 16px rgba(180, 83, 9, 0.35);
  }
  100% {
    box-shadow: 0 4px 16px rgba(180, 83, 9, 0.25);
  }
}

.read-more-btn.pulse {
  animation: subtlePulse 2s infinite;
}

@media (max-width: 768px) {
  .read-more-btn {
    padding: 0.9rem 2rem;
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
  }
}

.read-more-btn.loading {
  opacity: 0.8;
  cursor: wait;
}

.read-more-btn.loading .btn-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Modal/Overlay Styles - DARK THEME */
.read-more-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

.read-more-modal.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: var(--color-off-white);
  max-width: 900px;
  margin: 3rem auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 3rem;
  border-bottom: 2px solid var(--color-forest-green);
  background: var(--color-light-cream);
  border-radius: 20px 20px 0 0;
}

.modal-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-forest-green);
  margin: 0;
}

.close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-charcoal);
  transition: all 0.3s ease;
  border-radius: 50%;
}

.close-btn:hover {
  background: var(--color-forest-green);
  color: var(--color-charcoal);
  transform: rotate(90deg);
}

.modal-body {
  padding: 3rem;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-intro {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--color-light-cream);
  border-left: 4px solid var(--color-forest-green);
  border-radius: 12px;
}

.modal-intro .lead-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-charcoal);
  margin: 0;
}

.modal-body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-forest-green);
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(207, 164, 74, 0.3);
}

.modal-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-dark-gray);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.modal-body ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.modal-body ul li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-dark-gray);
}

.modal-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-forest-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: var(--color-light-cream);
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--color-forest-green);
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--color-sage);
}

@media (max-width: 768px) {
  .modal-content {
    margin: 1rem;
    border-radius: 15px;
  }

  .modal-header {
    padding: 1.5rem;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
  }
}

/* ===================================
Leadership Section - DARK THEME
=================================== */
.leadership-section {
  background: var(--color-light-cream);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.leadership-card {
  background: var(--color-off-white);
  border: 2px solid var(--color-forest-green);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.leadership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-deep-blue) 0%, var(--color-forest-green) 100%);
  transition: width 0.5s ease;
  border-radius: 16px 16px 0 0;
}

.leadership-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 61, 62, 0.02) 0%,
    rgba(207, 164, 74, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 16px;
}

.leadership-card:hover::before {
  width: 100%;
}

.leadership-card:hover::after {
  opacity: 1;
}

.leadership-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 8px 16px rgba(0, 0, 0, 0.3),
    inset 0 0 0 2px rgba(207, 164, 74, 0.2);
  background: var(--color-ivory);
  border-color: rgba(207, 164, 74, 0.3);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.card-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(207, 164, 74, 0.15);
  line-height: 1;
  transition: all 0.4s ease;
}

.leadership-card:hover .card-number {
  color: rgba(207, 164, 74, 0.25);
  transform: scale(1.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(207, 164, 74, 0.1);
  color: var(--color-forest-green);
  border-radius: 50%;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.leadership-card:last-child .card-icon {
  overflow: hidden;
}

.leadership-card:last-child .card-icon svg {
  width: 24px;
  height: 24px;
  transform: scale(0.8);
}

.leadership-card:last-child:hover .card-icon svg {
  transform: scale(0.9);
}

.leadership-card:hover .card-icon {
  background: var(--color-forest-green);
  color: var(--color-charcoal);
  transform: scale(1.15);
  box-shadow: 0 6px 15px rgba(207, 164, 74, 0.3);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.leadership-card:hover .card-title {
  color: var(--color-forest-green);
}

.card-organization {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-forest-green);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.leadership-card:hover .card-organization {
  letter-spacing: 1px;
  color: var(--color-sage);
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-medium-gray);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.leadership-card:hover .card-description {
  color: var(--color-dark-gray);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-gray);
  transition: border-color 0.3s ease;
}

.leadership-card:hover .card-meta {
  border-top-color: rgba(207, 164, 74, 0.2);
}

.meta-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(207, 164, 74, 0.1);
  color: var(--color-forest-green);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.leadership-card:hover .meta-badge {
  background: var(--color-forest-green);
  color: var(--color-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(207, 164, 74, 0.3);
}

/* ===================================
Portfolio Section - DARK THEME
=================================== */
.portfolio-section {
  background: var(--color-off-white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: var(--color-light-cream);
  border: 2px solid var(--color-forest-green);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 500px;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-deep-blue) 0%, var(--color-forest-green) 100%);
  transition: width 0.5s ease;
  z-index: 10;
  border-radius: 20px 20px 0 0;
}

.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 61, 62, 0.02) 0%,
    rgba(207, 164, 74, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 20px;
}

.portfolio-card:hover::before {
  width: 100%;
}

.portfolio-card:hover::after {
  opacity: 1;
}

.portfolio-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.3),
    inset 0 0 0 2px rgba(207, 164, 74, 0.2);
  border-color: rgba(207, 164, 74, 0.3);
  background: var(--color-off-white);
}

.portfolio-content {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.portfolio-logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.portfolio-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--color-forest-green);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: saturate(1);
}

.portfolio-card:nth-child(8) .portfolio-logo img {
  object-fit: contain !important;
  padding: 8px;
  background: white !important;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.portfolio-card:nth-child(8):hover .portfolio-logo img {
  transform: scale(1.02) rotate(5deg);
  padding: 4px;
}

.portfolio-card:nth-child(8) .portfolio-logo {
  background: white !important;
}

.portfolio-card:nth-child(7) .portfolio-logo img {
  object-fit: contain !important;
  padding: 8px;
  background: white;
}

.portfolio-card:nth-child(7):hover .portfolio-logo img {
  transform: scale(1.05) rotate(5deg);
}

.portfolio-card:nth-child(4) .portfolio-logo img {
  background: white !important;
  background-color: white !important;
  background-image: none !important;
  position: relative;
  padding: 8px;
  filter: brightness(1.05) contrast(1.1);
  box-sizing: content-box;
}

portfolio-card:nth-child(4) .portfolio-logo img {
  filter: 
    brightness(1.15) 
    contrast(1.3)
    saturate(1.2)
    invert(0.1)
    drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  object-fit: contain !important;
  padding: 10px;
  width: 100%;
  height: 100%;
  background: white !important;
  box-sizing: border-box;
  box-shadow: 
    inset 0 0 0 1px rgba(255,255,255,0.5),
    0 0 10px rgba(255,255,255,0.3);
}

.portfolio-card:nth-child(3) .portfolio-logo img {
  object-fit: contain !important;
  padding: 5px;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.portfolio-card:nth-child(3):hover .portfolio-logo img {
  transform: scale(1) scale(1.08);
}

.portfolio-card:nth-child(3) .portfolio-logo {
  background: white;
  padding: 2px;
}

.portfolio-card:hover .portfolio-logo img {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(207, 164, 74, 0.5);
}

.portfolio-card:hover .portfolio-logo {
  transform: scale(1.1) rotate(5deg);
}

.portfolio-logo::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-forest-green);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-logo::before {
  opacity: 0.3;
  transform: scale(1.25);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-border-gray);
  transition: border-color 0.3s ease;
}

.portfolio-card:hover .portfolio-header {
  border-bottom-color: rgba(207, 164, 74, 0.2);
}

.portfolio-title-group {
  flex: 1;
  min-width: 0;
}

.portfolio-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-card:hover .portfolio-title {
  color: var(--color-forest-green);
}

.portfolio-role {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-forest-green);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-card:hover .portfolio-role {
  color: var(--color-sage);
  letter-spacing: 0.5px;
}

.portfolio-year {
  flex-shrink: 0;
  background: rgba(207, 164, 74, 0.1);
  color: var(--color-forest-green);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.portfolio-card:hover .portfolio-year {
  background: var(--color-forest-green);
  color: var(--color-charcoal);
  transform: scale(1.03);
  box-shadow: 0 3px 10px rgba(207, 164, 74, 0.25);
}

.portfolio-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-medium-gray);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-card:hover .portfolio-description {
  color: var(--color-dark-gray);
}

.portfolio-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 2px solid var(--color-border-gray);
  transition: border-color 0.3s ease;
}

.portfolio-card:hover .portfolio-meta {
  border-top-color: rgba(207, 164, 74, 0.2);
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-medium-gray);
  padding: 0.3rem 0.75rem;
  background: rgba(207, 164, 74, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.meta-item svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.portfolio-card:hover .meta-item {
  background: var(--color-forest-green);
  color: var(--color-charcoal);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(207, 164, 74, 0.25);
}

/* ===================================
Gallery Section - DARK THEME
=================================== */
.gallery-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b8860b, transparent);
    opacity: 0.3;
}

.gallery-section .container {
    max-width: 1400px;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #b8860b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(184, 134, 11, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.section-title {
    font-family: 'Crimson Pro', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.gallery-container {
    position: relative;
}

.slider-controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.slider-header h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 600;
}

.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-nav {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #b8860b;
    font-size: 18px;
    backdrop-filter: blur(4px);
}

.slider-nav:hover:not(:disabled) {
    background: #b8860b;
    color: #000;
    border-color: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-wrapper {
    position: relative;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 2rem 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.slider-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.slide-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slide-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(184, 134, 11, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.slide-box.active {
    border-color: #b8860b;
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.25);
    transform: translateY(-10px);
}

.slide-box.active::before {
    opacity: 1;
}

.slide-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(184, 134, 11, 0.3);
    border-color: #b8860b;
}

.slide-box:hover::before {
    opacity: 1;
}

.box-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.slide-box:hover .box-image img {
    transform: scale(1.08);
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-image {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.stack-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image {
    z-index: 3;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
}

.secondary-image {
    z-index: 2;
    top: 10px;
    right: 10px;
    width: 90%;
    height: 90%;
    transform: rotate(2deg);
    border: 2px solid rgba(184, 134, 11, 0.3);
}

.tertiary-image {
    z-index: 1;
    top: 20px;
    right: 20px;
    width: 85%;
    height: 85%;
    transform: rotate(-1deg);
    border: 2px solid rgba(184, 134, 11, 0.2);
}

.slide-box:hover .secondary-image {
    transform: rotate(1deg) translateX(-5px) translateY(-5px);
    border-color: rgba(184, 134, 11, 0.5);
}

.slide-box:hover .tertiary-image {
    transform: rotate(-0.5deg) translateX(-8px) translateY(-8px);
    border-color: rgba(184, 134, 11, 0.4);
}

.image-count-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 4;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.box-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 0%, 
                rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.slide-box:hover .box-overlay {
    opacity: 1;
}

.view-btn {
    background: linear-gradient(135deg, #b8860b, #d4a017);
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}

.slide-box:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background: linear-gradient(135deg, #d4a017, #b8860b);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.6);
}

.box-content {
    padding: 1.5rem;
    background: rgba(25, 25, 25, 0.9);
    height: calc(400px - 220px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.box-content h4 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-weight: 600;
}

.box-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.slide-indicator {
    font-weight: 700;
    color: #b8860b;
    background: rgba(184, 134, 11, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.row-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.row-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.row-dot.active {
    background: #b8860b;
    transform: scale(1.3);
    border-color: rgba(184, 134, 11, 0.3);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.5);
}

.row-dot:hover {
    background: #b8860b;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.4);
}

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.image-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-slider {
    width: 90%;
    height: 90%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-slide {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
}

.modal-slide.active {
    display: block;
}

.modal-slide img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.7);
    color: #b8860b;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-close:hover {
    background: rgba(184, 134, 11, 0.2);
    border-color: #b8860b;
    transform: rotate(90deg);
    color: #ffffff;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: #b8860b;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(184, 134, 11, 0.2);
    border-color: #b8860b;
    transform: translateY(-50%) scale(1.1);
    color: #ffffff;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* ===================================
Vision Section - DARK THEME
=================================== */
.vision-section {
  background: var(--color-light-cream);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(207, 164, 74, 0.05) 0%, transparent 50%);
  border-radius: 50%;
  z-index: 0;
}

.vision-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 66, 99, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.vision-content {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.vision-statement {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 3rem 2.5rem;
  background: var(--color-off-white);
  border-radius: 25px 80px 25px 25px;
  position: relative;
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.vision-statement::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-forest-green) 100%);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.vision-statement:hover::before {
  opacity: 0.4;
}

.vision-statement:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.statement-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(207, 164, 74, 0.06);
  position: absolute;
  top: 0.25rem;
  left: 1rem;
  line-height: 1;
  transition: transform 0.4s ease;
  z-index: 0;
}

.vision-statement:hover .statement-mark {
  transform: scale(1.05) rotate(3deg);
  color: rgba(207, 164, 74, 0.09);
}

.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.7;
  color: var(--color-charcoal);
  font-style: italic;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 0.75rem;
  margin: 0;
}

.statement-text::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-deep-blue) 0%, var(--color-forest-green) 100%);
  margin: 1.5rem auto 0;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.vision-statement:hover .statement-text::after {
  width: 80px;
  opacity: 0.5;
}

.vision-statement:hover .statement-text {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.pillar-card {
  position: relative;
  background: var(--color-off-white);
  border: 2px solid var(--color-border-gray);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  max-width: 320px;
  margin: 0 auto;
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-forest-green) 100%);
  border-radius: 23px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pillar-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(45, 66, 99, 0.02) 0%, 
    rgba(207, 164, 74, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  z-index: 0;
}

.pillar-card .decorative-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--color-forest-green);
  border-radius: 50%;
  top: 15px;
  right: 15px;
  opacity: 0.08;
  transition: all 0.3s ease;
  z-index: 2;
}

.pillar-card > * {
  position: relative;
  z-index: 1;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-forest-green) 0%, var(--color-sage) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  line-height: 1;
  transition: all 0.3s ease;
  text-align: center;
}

.pillar-icon-container {
  width: 64px;
  height: 64px;
  background: rgba(207, 164, 74, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.pillar-icon {
  color: var(--color-forest-green);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  line-height: 1.3;
  text-align: center;
}

.pillar-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-medium-gray);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  max-width: 90%;
  margin: 0 auto;
  text-align:center;
}

.pillar-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: transparent;
}

.pillar-card:hover::before {
  opacity: 0.7;
  transform: scale(1.01);
}

.pillar-card:hover::after {
  opacity: 0.8;
}

.pillar-card:hover .decorative-dot {
  opacity: 0.2;
  transform: scale(1.3);
}

.pillar-card:hover .pillar-number {
  transform: scale(1.05);
  filter: drop-shadow(0 3px 6px rgba(212, 167, 106, 0.2));
}

.pillar-card:hover .pillar-icon-container {
  background: linear-gradient(135deg, var(--color-forest-green) 0%, var(--color-sage) 100%);
  transform: rotate(8deg) scale(1.05);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 15px rgba(212, 167, 106, 0.2);
}

.pillar-card:hover .pillar-icon {
  color: white;
  transform: scale(1.05);
}

.pillar-card:hover .pillar-title {
  color: var(--color-forest-green);
  transform: translateY(-1px);
}

.pillar-card:hover .pillar-description {
  color: var(--color-dark-gray);
  transform: translateY(-1px);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.pillar-card:nth-child(1) {
  animation: float 6s ease-in-out infinite;
}

.pillar-card:nth-child(2) {
  animation: float 6s ease-in-out infinite 2s;
}

.pillar-card:nth-child(3) {
  animation: float 6s ease-in-out infinite 4s;
}

.pillar-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-deep-blue) 0%, var(--color-forest-green) 100%);
  border-radius: 0 0 25px 25px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover .pillar-progress {
  width: 100%;
}

/* ===================================
FOOTER SECTION - UPDATED SEND BUTTON
=================================== */
.footer-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
    padding-top: 60px;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(184, 134, 11, 0.3) 50%, transparent 100%);
}

.footer-main {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 3rem;
    text-align: center;
}

.footer-name {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.footer-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b8860b, transparent);
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-tagline span {
    color: #b8860b;
    font-weight: 500;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 0;
}

.footer-column {
    position: relative;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 25px;
    height: 2px;
    background: #b8860b;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-list li:hover {
    color: #ffffff;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #b8860b;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2), 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* ===================================
SEND MESSAGE BUTTON - REDESIGNED
=================================== */

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, #b8860b 0%, #d4a017 100%);
    color: #000000;
    border: none;
    border-radius: 45px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 20px; /* Changed from 100% to auto */
    min-width: 180px;
    margin-top: 0.3rem;
    margin-left: 30px;
    box-shadow: 0 3px 15px rgba(184, 134, 11, 0.25);
    text-transform: uppercase;
 
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #d4a017 0%, #fbbf24 100%);
    transform: translateY(-4px);
    box-shadow: 
        0 8px 25px rgba(184, 134, 11, 0.5),
        0 4px 12px rgba(184, 134, 11, 0.3);
    color: #000000;
    letter-spacing: 1px;
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.btn-submit:focus-visible {
    outline: 2px solid #fbbf24;
    outline-offset: 3px;
    background: linear-gradient(135deg, #d4a017 0%, #fbbf24 100%);
}

.btn-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(3px);
}

/* Button loading state */
.btn-submit.loading {
    opacity: 0.8;
    cursor: wait;
}

.btn-submit.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Button success state */
.btn-submit.success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-submit.success:hover {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    transform: translateY(-4px);
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.5),
        0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Button error state */
.btn-submit.error {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.btn-submit.error:hover {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    transform: translateY(-4px);
    box-shadow: 
        0 8px 25px rgba(239, 68, 68, 0.5),
        0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Button disabled state */
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.2) !important;
}

.btn-submit:disabled:hover {
    background: linear-gradient(135deg, #b8860b 0%, #d4a017 100%);
    transform: none !important;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.2) !important;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0 2rem 0;
    align-items: start;
}

.disclaimer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.disclaimer-content {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #b8860b;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.disclaimer-content svg {
    flex-shrink: 0;
    color: #fbbf24;
    margin-top: 2px;
}

.disclaimer-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.disclaimer-content strong {
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.95rem;
}

.acquisition-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(184, 134, 11, 0.5);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        border-color: rgba(184, 134, 11, 0.5);
        box-shadow: 0 0 0 rgba(184, 134, 11, 0);
    }
    50% {
        border-color: rgba(251, 191, 36, 0.8);
        box-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
    }
}

.acquisition-title {
    display: block;
    color: #fbbf24;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.acquisition-details {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.acquisition-email {
    color: #fbbf24;
    font-weight: 700;
    text-decoration: none;
    padding: 0.15rem 0.3rem;
    background: rgba(184, 134, 11, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.acquisition-email:hover {
    color: #000000;
    background: #fbbf24;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-self: end;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: transparent;
}

.footer-social-icons a.facebook {
    background: #1877F2;
}

.footer-social-icons a.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.footer-social-icons a.linkedin {
    background: #0077B5;
}

.footer-social-icons a svg {
    fill: #ffffff;
    width: 18px;
    height: 18px;
}

.footer-social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.footer-social-icons a.facebook:hover {
    background: #166FE5;
}

.footer-social-icons a.instagram:hover {
    opacity: 0.95;
}

.footer-social-icons a.linkedin:hover {
    background: #0066A3;
}

.back-to-top {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.07);
    color: #b8860b;
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #b8860b;
    color: #000;
    transform: translateY(-5px);
}

.back-to-top svg {
    stroke: currentColor;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-social-icons {
        justify-self: center;
    }
    
    .footer-social-icons a {
        width: 40px;
        height: 40px;
    }
    
    .footer-social-icons a svg {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
Animations
=================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

/* ===================================
Responsive Design
=================================== */
@media (max-width: 1200px) {
  :root {
    --section-padding: 6rem;
  }

  .hero-title {
    font-size: 3.8rem;
  }

  .section-title {
    font-size: 3rem;
  }
  
  .slider-wrapper {
    padding: 1.5rem;
  }
  
  .slide-box {
    height: 380px;
  }
  
  .box-image {
    height: 200px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr 1.2fr 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 1024px) {
  
  .hero-container {
    display: grid !important;
    grid-template-columns: 1.2fr 0.8fr !important;
    gap: 3rem !important;
    align-items: center;
   
  }
  
  .hero-content {
    display: block !important;
  }
  
  .hero-image-container {
    display: block !important;
  }
  
  .hero-label,
  .hero-title,
  .hero-image-frame,
  .hero-credentials,
  .hero-tagline,
  .hero-cta-group,
  .hero-stats {
    order: 0 !important;
  }
  
  .hero-image-frame { 
    margin: 0 auto !important;
    max-width: 380px !important;
  }
  
  .portrait-placeholder {
    padding: 10px;
  }
  
  .hero-credentials { 
    flex-direction: row !important;
    gap: 1.5rem !important;
    padding: 1.5rem 0 !important;
    margin: 2rem 0 2.5rem !important;
    border-top: 2px solid var(--color-border-gray);
    border-bottom: 2px solid var(--color-border-gray);
  }
  
  .credential-divider {
    display: block !important;
    width: 1px;
    height: 50px;
    background: var(--color-border-gray);
    margin: 0;
  }
  
  .credential-item {
    flex: 1;
    min-width: 0;
    text-align: left;
  }
  
  .credential-title {
    font-size: 1rem;
  }
  
  .credential-org {
    font-size: 0.85rem;
  }
  
  .hero-title {
    font-size: 3.5rem !important;
    line-height: 1.15;
  }
  
  .hero-tagline {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }
  
  .hero-cta-group {
    flex-direction: row !important;
    gap: 1.25rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: auto !important;
    min-width: 150px;
    padding: 0.9rem 2rem;
  }
  
  .hero-stats {
    flex-direction: row !important;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
    max-width: 380px;
    margin: 2.5rem auto 0;
  }
  
  .stat-item:not(:last-child)::after {
    right: -1rem !important;
    left: auto !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    width: 2px !important;
    height: 60% !important;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vision-pillars {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .pillar-card {
    padding: 1.75rem 1.5rem;
    border-radius: 18px;
  }

  .pillar-card::before {
    border-radius: 21px;
  }
  
  .pillar-number {
    font-size: 2.5rem;
  }
  
  .pillar-icon-container {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }
  
  .pillar-icon {
    font-size: 1.25rem;
  }
  
  .pillar-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  
  .pillar-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .vision-statement {
    padding: 3rem 2.5rem;
    border-radius: 25px 80px 25px 25px;
    margin-bottom: 4rem;
  }
  
  .statement-mark {
    font-size: 6rem;
  }
  
  .gallery-section {
    padding: 100px 0 60px;
  }
  
  .slider-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .slide-box {
    height: 360px;
  }
  
  .box-content h4 {
    font-size: 1.3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .social-column {
    justify-content: flex-start;
  }
  
  .social-media {
    max-width: 100%;
  }
  
  .footer-name {
    font-size: 2.2rem;
  }
  
  /* Send button on tablets */
  .btn-submit {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }

  nav {
    padding: 1rem var(--container-padding);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-off-white);
    padding: 2rem;
    gap: 1.5rem;
    border-top: 2px solid var(--color-border-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 7rem var(--container-padding) 3.5rem;
  }
  
  .hero-image-container {
    order: 3 !important;
    margin: 1.5rem 0;
  }
  
  .hero-label {
    order: 1 !important;
  }
  
  .hero-title {
    order: 2 !important;
    font-size: 2.8rem;
  }
  
  .hero-credentials {
    order: 4 !important;
  }
  
  .hero-tagline {
    order: 5 !important;
  }
  
  .hero-cta-group {
    order: 6 !important;
  }
  
  .hero-stats {
    order: 7 !important;
    margin-top: 2rem;
  }
  
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-content {
    display: contents;
  }

  .hero-image-frame {
    max-width: 400px !important;
    margin: 0 auto 2rem !important;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero-credentials {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem var(--container-padding);
    margin: 2rem auto 2.5rem;
    max-width: 100%;
  }

  .credential-divider {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .leadership-grid,
  .portfolio-grid,
  .vision-pillars {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .stat-item:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1rem;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
  }

  .stat-item {
    align-items: center;
    text-align: center;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image-block {
    margin: 2rem 0 1.5rem;
  }
  
  .sidebar-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  /* Achievement list - Keep in row for all devices except very small */
  .achievement-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .achievement-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  .achievement-content {
    flex: 1;
  }
  
  .achievement-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  
  .achievement-content p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .portfolio-card {
    max-height: 450px;
  }
  
  .portfolio-content {
    padding: 1.5rem 1.25rem;
  }
  
  .portfolio-logo {
    width: 84px;
    height: 84px;
  }
  
  .portfolio-title {
    font-size: 1.1rem;
    -webkit-line-clamp: 2;
  }
  
  .portfolio-description {
    font-size: 0.85rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
  }
  
  .vision-content {
    margin-top: 2rem;
  }
  
  .vision-pillars {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .vision-statement {
    max-width: 100%;
    padding: 2.5rem 2rem;
    border-radius: 20px 60px 20px 20px;
    margin-bottom: 3rem;
  }
  
  .statement-mark {
    font-size: 5rem;
    top: 0.2rem;
    left: 0.75rem;
  }
  
  .statement-text {
    font-size: 1.3rem;
    line-height: 1.8;
  }
  
  .pillar-card {
    max-width: 280px;
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }

  .pillar-card::before {
    border-radius: 19px;
  }
  
  .pillar-number {
    font-size: 2.25rem;
  }
  
  .pillar-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .pillar-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .pillar-icon-container {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .pillar-icon{
    font-size: 1.1rem;
  }
  
  .pillar-card .decorative-dot {
    width: 12px;
    height: 12px;
    top: 12px;
    right: 12px;
  }

  .pillar-card {
    animation: none !important;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .slider-wrapper {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .slider-track {
    gap: 1.25rem;
  }
  
  .slide-box {
    height: 340px;
    background: rgba(25, 25, 25, 0.9);
  }
  
  .box-image {
    height: 180px;
  }
  
  .box-content {
    padding: 1.25rem;
    background: rgba(25, 25, 25, 0.95);
  }
  
  .box-content h4 {
    font-size: 1.2rem;
  }
  
  .modal-slider {
    height: 400px;
  }
  
  .footer-section {
    padding: 3rem 0 1.5rem;
    padding-top: 50px;
    scroll-margin-top: 60px;
  }
  
  .footer-name {
    font-size: 2rem;
  }
  
  .footer-brand {
    margin-bottom: 2rem;
  }
  
  .disclaimer-content,
  .acquisition-notice,
  .social-media {
    padding: 1rem;
  }
  
  .footer-bottom-grid {
    margin: 1rem 0 1.5rem 0;
    gap: 1rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .disclaimer-content {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .disclaimer-content svg,
  .acquisition-notice svg {
    align-self: flex-start;
  }
  
  /* Send button on mobile */
  .btn-submit {
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

/* iPad Mini (768px) & iPad Air (820px) Specific Styles */
@media (min-width: 768px) and (max-width: 834px) {
  .hero {
    padding: 6rem var(--container-padding) 3.5rem;
  }
  
  .hero-container {
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr !important;
    gap: 3rem !important;
    align-items: center;
  }
  
  .hero-content {
    display: block !important;
  }
  
  .hero-image-container {
    display: block !important;
  }
  
  .hero-label,
  .hero-title,
  .hero-image-frame,
  .hero-credentials,
  .hero-tagline,
  .hero-cta-group,
  .hero-stats {
    order: 0 !important;
  }
  
  .hero-label span {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
  }
  
  .hero-image-frame { 
    margin: 0 auto !important;
    max-width: 320px !important;
  }
  
  .portrait-placeholder {
    padding: 8px;
  }
  
  .hero-credentials { 
    flex-direction: row !important;
    gap: 1.5rem !important;
    padding: 1.5rem 0 !important;
    margin: 1.75rem 0 2rem !important;
    border-top: 2px solid var(--color-border-gray);
    border-bottom: 2px solid var(--color-border-gray);
  }
  
  .credential-divider {
    display: block !important;
    width: 1px;
    height: 45px;
    background: var(--color-border-gray);
    margin: 0;
  }
  
  .credential-item {
    flex: 1;
    min-width: 0;
    text-align: left;
  }
  
  .credential-title {
    font-size: 0.95rem;
  }
  
  .credential-org {
    font-size: 0.8rem;
  }
  
  .hero-title {
    font-size: 2.8rem !important;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .hero-cta-group {
    flex-direction: row !important;
    gap: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    width: auto !important;
    min-width: 140px;
    padding: 0.85rem 1.75rem;
    font-size: 0.85rem;
  }
  
  .hero-stats {
    flex-direction: row !important;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    max-width: 320px;
    margin: 2rem auto 0;
  }
  
  .stat-item:not(:last-child)::after {
    right: -1rem !important;
    left: auto !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    width: 2px !important;
    height: 60% !important;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  /* Footer grid for iPad */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-form {
    grid-column: span 2;
  }
  
  .btn-submit {
    width: 50%;
    align-self: flex-start;
  }
}

@media (min-width: 820px) and (max-width: 834px) {
  .hero {
    padding: 6.5rem var(--container-padding) 4rem;
  }
  
  .hero-container {
    gap: 3.5rem !important;
  }
  
  .hero-title {
    font-size: 3.2rem !important;
    margin-bottom: 1.75rem;
  }
  
  .hero-tagline {
    font-size: 1.15rem;
  }
  
  .hero-credentials {
    padding: 1.75rem 0 !important;
    gap: 2rem !important;
    margin: 2rem 0 2.25rem !important;
  }
  
  .credential-divider {
    height: 48px;
  }
  
  .hero-image-frame {
    max-width: 350px !important;
  }
  
  .btn-primary,
  .btn-secondary {
    min-width: 150px;
    padding: 0.9rem 2rem;
  }
  
  .hero-stats {
    max-width: 350px;
    margin: 2.5rem auto 0;
    padding: 1.5rem 1.75rem;
  }
  
  .stat-number {
    font-size: 2.4rem;
  }
}

/* iPad Pro 11" (834px - 1024px) Specific Styles */
@media (min-width: 835px) and (max-width: 1024px) {
  .hero {
    padding: 7rem var(--container-padding) 4.5rem;
  }
  
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr !important;
    gap: 3.5rem !important;
  }
  
  .hero-title {
    font-size: 3.6rem !important;
    line-height: 1.15;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
  }
  
  .hero-image-frame {
    max-width: 360px !important;
  }
  
  .hero-credentials {
    gap: 2rem !important;
    padding: 1.75rem 0 !important;
  }
  
  .hero-stats {
    max-width: 360px;
    padding: 1.5rem 2rem;
  }
  
  .btn-primary,
  .btn-secondary {
    min-width: 155px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-credentials {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 2rem !important;
    padding: 1.5rem 0 !important;
    margin: 2rem 0 2.5rem !important;
    width: 100%;
    border-top: 2px solid var(--color-border-gray);
    border-bottom: 2px solid var(--color-border-gray);
  }
  
  .credential-divider {
    display: block !important;
    width: 1px;
    height: 50px;
    background: var(--color-border-gray);
    margin: 0;
  }
  
  .credential-item {
    flex: 1;
    text-align: left;
    min-width: 0;
  }
  
  /* Footer adjustments for tablets */
  .contact-form {
    gap: 0.85rem;
  }
  
  .btn-submit {
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .hero-credentials {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .hero-credentials .credential-item:not(:last-child)::after {
    display: none !important;
  }
  
  .credential-divider {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* ===================================
iPhone SE (320px-375px) Specific Fixes
=================================== */
@media (max-width: 375px) {
  .hero {
    padding: 5.5rem 1.25rem 2.5rem !important;
    min-height: auto !important;
  }
  
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
    display: grid !important;
  }
  
  .hero-image-container {
    order: 1 !important;
    display: block !important;
    width: 100% !important;
  }
  
  .hero-image-frame {
    max-width: 100% !important;
    margin: 0 auto 1.25rem !important;
    width: 100% !important;
  }
  
  .portrait-placeholder {
    padding: 8px !important;
    width: 100% !important;
  }
  
  .hero-portrait {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .hero-label {
    order: 2 !important;
  }
  
  .hero-title {
    order: 3 !important;
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-credentials {
    order: 4 !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    padding: 1.5rem 1rem !important;
    margin: 1.5rem 0 !important;
  }
  
  .credential-divider {
    display: none !important;
  }
  
  .hero-tagline {
    order: 5 !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
  }
  
  .hero-cta-group {
    order: 6 !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    padding: 0.9rem 2rem !important;
  }
  
  .hero-stats {
    order: 7 !important;
    padding: 1.5rem 1.25rem !important;
    max-width: 100% !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  .stat-item {
    text-align: center !important;
  }
  
  .about-sidebar {
    margin-top: 30px;
  }
  
  .sidebar-card {
    padding: 1.25rem;
    border-radius: 18px;
    margin-bottom: 1.25rem;
  }
  
  .sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
  }
  
  /* FIX: Achievement list - Keep icon and text in same row */
  .achievement-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }
  
  .achievement-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
    margin-top: 0.25rem;
  }
  
  .achievement-content {
    flex: 1;
  }
  
  .achievement-content h4 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.35rem;
  }
  
  .achievement-content p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  .read-more-btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
    margin-top: 1.25rem;
  }
  
  .btn-icon {
    font-size: 0.9rem;
  }
  
  /* Send button on very small screens */
  .btn-submit {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }
  
  .btn-submit i {
    font-size: 1rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }
}

/* Small Mobile Phones */
@media (max-width: 576px) {
  .hero {
    padding: 6.5rem 1.5rem 3rem !important;
  }
  
  .hero-image-container {
    order: 1 !important;
    display: block !important;
  }
  
  .hero-label {
    order: 2 !important;
  }
  
  .hero-title {
    order: 3 !important;
    font-size: 2.2rem !important;
  }
  
  .hero-credentials {
    order: 4 !important;
    flex-direction: column !important;
    padding: 1.75rem 1.25rem !important;
  }
  
  .hero-tagline {
    order: 5 !important;
  }
  
  .hero-cta-group {
    order: 6 !important;
    flex-direction: column !important;
  }
  
  .hero-stats {
    order: 7 !important;
  }
  
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    display: grid !important;
  }
  
  .hero-image-frame {
    max-width: 100% !important;
    margin: 0 auto 1.5rem !important;
  }
  
  .credential-divider {
    display: none !important;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100% !important;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .lead-text {
    font-size: 1.2rem;
  }

  .vision-statement {
    padding: 2.5rem 2rem;
  }

  .statement-text {
    font-size: 1.3rem;
  }
  
  .portfolio-card {
    border-radius: 16px;
  }
  
  .portfolio-content {
    padding: 1.25rem 1rem;
  }
  
  .portfolio-logo {
    width: 72px;
    height: 72px;
    border-width: 2px;
  }
  
  .portfolio-title {
    font-size: 1rem;
  }
  
  .portfolio-description {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  .meta-item {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }
  
  .portfolio-year {
    padding: 0.25rem 0.6rem;
    font-size: 0.65rem;
  }
  
  .slider-track {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .slide-box {
    height: 350px;
  }
  
  .box-image {
    height: 200px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .slider-controls-wrapper {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .modal-slider {
    height: 300px;
  }
  
  .modal-prev,
  .modal-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .slider-wrapper {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .vision-statement {
    padding: 2rem 1.5rem;
    border-radius: 18px 50px 18px 18px;
    margin-bottom: 2.5rem;
  }
  
  .statement-mark {
    font-size: 4rem;
    top: 0.15rem;
    left: 0.5rem;
  }
  
  .statement-text {
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0 0.5rem;
  }
  
  .statement-text::after {
    width: 50px;
    margin: 1rem auto 0;
  }
  
  .vision-statement:hover .statement-text::after {
    width: 60px;
  }
  
  .footer-section {
    padding: 2.5rem 0 1.5rem;
    padding-top: 40px;
  }
  
  .footer-name {
    font-size: 1.8rem;
  }
  
  .footer-bottom-grid {
    margin: 0.75rem 0 1.25rem 0;
    gap: 0.75rem;
  }
  
  .acquisition-notice {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .acquisition-notice svg {
    align-self: flex-start;
  }
  
  /* Send button on small phones */
  .btn-submit {
    padding: 0.8rem 1.75rem;
    font-size: 0.88rem;
  }
}

/* Extra Small Mobile Phones */
@media (max-width: 480px) {
  .hero {
    padding: 6rem 1.25rem 2.75rem !important;
  }
  
  .hero-image-container {
    order: 1 !important;
    display: block !important;
  }
  
  .hero-label {
    order: 2 !important;
  }
  
  .hero-title {
    order: 3 !important;
    font-size: 2.1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-credentials {
    order: 4 !important;
    padding: 1.5rem 1rem !important;
    gap: 1rem !important;
    flex-direction: column !important;
  }
  
  .hero-tagline {
    order: 5 !important;
  }
  
  .hero-cta-group {
    order: 6 !important;
  }
  
  .hero-stats {
    order: 7 !important;
  }
  
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    display: grid !important;
  }
  
  .hero-image-frame {
    max-width: 100% !important;
    margin: 0 auto 1.5rem !important;
  }
  
  .credential-item {
    align-items: center;
    text-align: center;
  }
  
  .about-grid {
    gap: 1.5rem;
  }
  
  .about-image-block {
    margin: 1.5rem 0 1rem;
    padding: 1rem;
  }
  
  .sidebar-card {
    padding: 1.25rem;
  }
  
  /* FIX: Keep achievement items in row even on very small screens */
  .achievement-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
  }
  
  .achievement-content h4 {
    font-size: 0.9rem;
  }
  
  .achievement-content p {
    font-size: 0.8rem;
  }

  .vision-statement {
    padding: 1.75rem 1.25rem;
    border-radius: 16px 40px 16px 16px;
    margin-bottom: 2rem;
  }
  
  .statement-mark {
    font-size: 3rem;
    top: 0.1rem;
    left: 0.25rem;
  }
  
  .statement-text {
    font-size: 1rem;
    line-height: 1.55;
    padding: 0;
  }
  
  .statement-text::after {
    width: 40px;
    margin: 0.75rem auto 0;
  }
  
  .pillar-card {
    max-width: 100%;
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .pillar-card::before {
    border-radius: 17px;
  }
  
  .pillar-number {
    font-size: 2rem;
  }
  
  .pillar-icon-container {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
  }
  
  .pillar-icon {
    font-size: 1rem;
  }

  .pillar-title {
    font-size: 1.1rem;
  }
  
  .pillar-description {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  /* Contact form on very small screens */
  .contact-form {
    gap: 0.75rem;
  }
  
  .btn-submit {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }
}

/* Very Small Screens (320px and below) */
@media (max-width: 320px) {
  .hero {
    padding: 5rem 1rem 2.25rem !important;
  }
  
  .hero-image-container {
    order: 1 !important;
  }
  
  .hero-label {
    order: 2 !important;
  }
  
  .hero-title {
    order: 3 !important;
    font-size: 1.85rem !important;
    line-height: 1.2 !important;
  }
  
  .hero-credentials {
    order: 4 !important;
  }
  
  .hero-tagline {
    order: 5 !important;
    font-size: 1rem !important;
  }
  
  .hero-cta-group {
    order: 6 !important;
  }
  
  .hero-stats {
    order: 7 !important;
  }
  
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .hero-image-frame {
    max-width: 100% !important;
    margin: 0 auto 1.25rem !important;
  }
  
  .portrait-placeholder {
    padding: 6px !important;
  }
  
  .sidebar-card {
    padding: 1rem;
  }
  
  /* FIX: For extremely small screens, still keep row layout but adjust spacing */
  .achievement-list li {
    gap: 0.65rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  
  .achievement-icon {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  
  .achievement-content h4 {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .achievement-content p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .read-more-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  /* Send button on extremely small screens */
  .btn-submit {
    padding: 0.7rem 1.25rem;
    font-size: 0.8rem;
    gap: 0.4rem;
  }
  
  .btn-submit i {
    font-size: 0.9rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.65rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .btn-contact::before,
  .btn-contact,
  .btn-arrow,
  .pillar-card,
  .vision-statement,
  .statement-mark,
  .pillar-number,
  .pillar-icon-container,
  .pillar-icon,
  .btn-submit::before,
  .btn-submit {
    transition: none !important;
    animation: none !important;
  }
  
  .btn-contact:hover,
  .pillar-card:hover,
  .vision-statement:hover,
  .btn-submit:hover {
    transform: none !important;
  }
  
  .btn-contact:hover .btn-arrow,
  .btn-submit:hover i {
    transform: none !important;
  }
}

/* Print styles */
@media print {
  .nav-contact-btn {
    display: none !important;
  }
  
  .btn-submit {
    display: none !important;
  }
}

/* Glow Effects for Gallery */
.slide-box.active::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.4), transparent);
  z-index: -1;
  animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* Scrollbar Styling for Gallery */
.slider-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.slider-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.slider-wrapper::-webkit-scrollbar-thumb {
  background: rgba(184, 134, 11, 0.5);
  border-radius: 10px;
}

.slider-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(184, 134, 11, 0.7);
}

.vision-statement.minimal {
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 3rem;
}

.vision-statement.minimal::before {
  display: none;
}

.vision-statement.minimal .statement-mark {
  display: none;
}

.vision-statement.minimal .statement-text {
  font-size: 1.2rem;
  line-height: 1.6;
  font-style: normal;
  text-align: left;
  padding: 0;
}

.vision-statement.minimal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.vision-statement.simple {
  background: transparent;
  border: 2px solid rgba(207, 164, 74, 0.1);
  box-shadow: none;
  padding: 2rem;
  border-radius: 20px;
}

.vision-statement.simple::before {
  display: none;
}

.vision-statement.simple .statement-mark {
  display: none;
}

.vision-statement.simple .statement-text {
  font-size: 1.15rem;
  line-height: 1.7;
  text-align: center;
  font-style: italic;
  color: var(--color-dark-gray);
}

.vision-statement.simple:hover {
  border-color: rgba(207, 164, 74, 0.3);
  transform: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pillar-card.minimal {
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--color-border-gray);
}

.pillar-card.minimal::before {
  display: none;
}

.pillar-card.minimal .pillar-number {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.pillar-card.minimal .pillar-icon-container {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background: rgba(207, 164, 74, 0.05);
}

.pillar-card.minimal .pillar-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pillar-card.minimal .pillar-description {
  font-size: 0.85rem;
  line-height: 1.5;
}

.pillar-card.minimal:hover {
  transform: translateY(-4px);
  border-color: var(--color-forest-green);
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .vision-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===================================
   CRITICAL MOBILE ORDER FIX - FINAL OVERRIDE
   Applied Last - Do Not Remove
   =================================== */

/* Force image first on all mobile devices - FINAL */
/* iPad Padding Reduction - FINAL */
@media (min-width: 768px) and (max-width: 834px) {
  .hero {
    padding: 6rem var(--container-padding) 3.5rem !important;
  }
}

@media (min-width: 835px) and (max-width: 1024px) {
  .hero {
    padding: 7rem var(--container-padding) 4.5rem !important;
  }
}
/* ===================================
HERO SECTION RESPONSIVE LAYOUT - CONSISTENT ORDER
Required Order: Label → Image → Stats → Credentials → Title → Tagline → CTA
Optimized for iPhone SE (320px) and all mobile devices
=================================== */

/* All mobile and tablet devices */
@media (max-width: 768px) {
  .hero {
    padding: 7rem var(--container-padding) 3.5rem;
  }

  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem;
  }

  /* CONSISTENT ORDER FOR ALL MOBILE BREAKPOINTS */
  .hero-label {
    order: 1;
  }

  .hero-image-container {
    order: 2;
  }

  .hero-stats {
    order: 3;
    max-width: 100%;
    padding: 1.5rem 1.5rem;
    margin: 0;
  }

  .hero-credentials {
    order: 4;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    margin: 0 0 1.5rem;
  }

  .hero-title {
    order: 5;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero-tagline {
    order: 6;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .hero-cta-group {
    order: 7;
  }

  /* Remove divider on mobile */
  .credential-divider {
    display: none;
  }

  .credential-item {
    text-align: center;
  }

  /* Responsive image sizing */
  .hero-image-frame {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-portrait {
    width: 100%;
    height: auto;
  }
}

/* Small phones - vertical stats layout */
@media (max-width: 480px) {
  .hero {
    padding: 6rem 1.25rem 2.75rem;
  }

  .hero-container {
    gap: 1.75rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }

  .stat-item {
    text-align: center;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }
}

/* iPhone SE and very small screens (320px-375px) */
@media (max-width: 375px) {
  .hero {
    padding: 5.5rem 1rem 2.5rem;
  }

  .hero-container {
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .hero-tagline {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-credentials {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .hero-stats {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-image-frame {
    max-width: 100%;
  }

  .portrait-placeholder {
    padding: 8px;
  }
}

/* Extra small screens - 320px and below */
@media (max-width: 320px) {
  .hero {
    padding: 5rem 0.875rem 2.25rem;
  }

  .hero-container {
    gap: 1.25rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .hero-label span {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }

  .hero-stats {
    padding: 1rem 0.875rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .portrait-placeholder {
    padding: 6px;
  }
}

@media (min-width: 834px) and (max-width: 1366px) {

  /* Shift entire hero section up */
  .hero {
    padding-top: 60px;      /* reduce from desktop */
    min-height: auto;       /* remove forced height */
  }

  /* Fine-tune container position */
  .hero-container {
    margin-top: 60px;      /* moves hero upward */
  }

}
