/* ===============================================
RAYMOND - Premium Portfolio CSS
Refined spacing, responsive design, and theme
=============================================== */
/* ================= ROOT & RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Colors */
  --gold: #c9a961;
  --gold-light: #d4b779;
  --gold-dark: #a68b4d;
  --navy: #0a1628;
  --navy-light: #152440;
  --navy-lighter: #1f3354;
  --white: #ffffff;
  --gray-light: #e8e9eb;
  --gray: #8b8d94;
  --accent: #9b7e46;
  /* Spacing System (8px base) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;
  /* Section Padding */
  --section-padding: 120px 60px;
  --section-padding-md: 100px 40px;
  --section-padding-sm: 80px 30px;
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;
  --transition-slower: 0.6s ease;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy);
  color: var(--gray-light);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= BACKGROUND EFFECTS ================= */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.floating-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float-orb 20s ease-in-out infinite;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold), transparent);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-light), transparent);
  top: 50%;
  right: -5%;
  animation-delay: 7s;
}
.orb-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent), transparent);
  bottom: -20%;
  left: 30%;
  animation-delay: 14s;
}
@keyframes float-orb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}
/* Ensure content is above background */
header, section, footer {
  position: relative;
  z-index: 1;
}

/* ================= HEADER & NAVIGATION ================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
  transition: all var(--transition-base);
}
header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.logo-badge {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 30px rgba(201, 169, 97, 0.5);
    transform: scale(1.05);
  }
}
.logo-badge i {
  font-size: 24px;
  color: var(--navy);
}
.logo-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  margin: 0;
}
.logo-text p {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}
.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: all var(--transition-base);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.nav-links a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
.nav-links a:hover::after {
  width: 100%;
}
.cta-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  color: var(--navy) !important;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width var(--transition-slower), height var(--transition-slower);
}
.cta-btn:hover::before {
  width: 300px;
  height: 300px;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.5);
}
.cta-btn::after {
  display: none;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  color: var(--gold);
  cursor: pointer;
  transition: transform var(--transition-base);
}
.menu-toggle:hover {
  transform: scale(1.1);
}

/* ================= HERO SECTION ================= */
.hero {
  padding: 180px 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}
.hero-text {
  position: relative;
  z-index: 2;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 24px;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  animation: slide-in-left 0.8s ease-out;
}
.label-icon {
  animation: rotate-star 4s linear infinite;
  display: inline-block;
}
@keyframes rotate-star {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
  letter-spacing: -1px;
  animation: fade-in-up 0.8s ease-out 0.2s both;
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-text h2 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
.hero-text h2 .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.hero-text p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  animation: fade-in-up 0.8s ease-out 0.4s both;
}
/* Hero Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
  animation: fade-in-up 0.8s ease-out 0.6s both;
}
.stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  flex: 1 1 150px;
  max-width: 180px;
  min-width: 140px;
}
.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 169, 97, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  transition: all var(--transition-base);
}
.stat-item:hover .stat-icon {
  background: rgba(201, 169, 97, 0.25);
  transform: rotate(10deg);
}
.stat-icon i {
  color: var(--gold);
  font-size: 24px;
}
.stat-item h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 28px);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 5px;
}
.stat-item p {
  font-size: clamp(11px, 1.5vw, 12px);
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fade-in-up 0.8s ease-out 0.8s both;
}
.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  animation: pulse-glow-large 4s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes pulse-glow-large {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  z-index: 1;
}
.image-container:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.05) contrast(1.1);
  transition: transform 0.5s ease;
}
.image-container:hover img {
  transform: scale(1.05);
}
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.4) 100%);
  transition: opacity 0.5s ease;
}
.image-container:hover .image-overlay {
  opacity: 0.7;
}
.image-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.image-container:hover .image-border {
  opacity: 0.6;
}
/* Raymond Logo Badge at Bottom of Image */
.raymond-logo-badge {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 100%);
  padding: 6px;
  border-radius: 50%;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 4px rgba(201, 169, 97, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
  z-index: 3;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-slow);
  border: 3px solid rgba(201, 169, 97, 0.2);
}
.raymond-logo-badge:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 0 0 4px rgba(201, 169, 97, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
  border-color: rgba(201, 169, 97, 0.4);
}
.logo-badge-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 2px solid rgba(201, 169, 97, 0.15);
  position: relative;
  overflow: hidden;
}
.logo-badge-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(201, 169, 97, 0.05), transparent);
  transform: rotate(45deg);
  transition: all var(--transition-slower);
}
.raymond-logo-badge:hover .logo-badge-inner::before {
  transform: rotate(90deg);
}
.logo-badge-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  filter: brightness(1) contrast(1.1);
  transition: all var(--transition-slow);
  position: relative;
  z-index: 1;
}
.raymond-logo-badge:hover .logo-badge-inner img {
  filter: brightness(1.1) contrast(1.15);
  transform: scale(1.05);
}
/* Hero Info - Name and Title */
.hero-info {
  text-align: center;
  margin-top: 2rem;
  z-index: 1;
}
.hero-name {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.hero-title {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 0;
  text-transform: uppercase;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 0 var(--space-2xl);
  max-width: 1400px;
  margin: 0 auto;
}
/* Raymond Overview */
.raymond-overview {
  margin: var(--space-2xl) 0 var(--space-3xl);
  padding: var(--space-3xl) var(--space-2xl);
  background: linear-gradient(135deg, rgba(31, 51, 84, 0.4), rgba(21, 36, 64, 0.4));
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(201, 169, 97, 0.15);
  text-align: center;
}
.profile-label-container {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.raymond-overview .section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}
.raymond-overview .label-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.raymond-overview .label-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.raymond-overview h2 {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  text-transform: uppercase;
}
.raymond-overview h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 42px);
  color: var(--white);
  margin-bottom: var(--space-md);
  font-weight: 700;
}
.overview-tagline {
  font-size: clamp(18px, 2.5vw, 20px);
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-weight: 600;
  letter-spacing: 2px;
}
.overview-description {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  color: var(--gray);
  max-width: 900px;
  margin: 0 auto var(--space-3xl);
}
.overview-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  max-width: 800px;
  margin: var(--space-3xl) auto;
}
.overview-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-slow);
}
.overview-images img:hover {
  transform: translateY(-8px);
}
.overview-quote {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.6;
  color: var(--white);
  font-style: italic;
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-lg);
  border-left: 4px solid var(--gold);
  text-align: left;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
}
.overview-quote cite {
  display: block;
  font-size: 14px;
  color: var(--gold);
  margin-top: var(--space-sm);
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* Biography Section */
.biography-section {
  margin: var(--space-3xl) 0;
}
.bio-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
}
.bio-header h2 {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  text-transform: uppercase;
}
.bio-header h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 42px);
  color: var(--white);
  margin-bottom: var(--space-md);
  font-weight: 700;
}
.bio-header p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--gray);
  line-height: 1.8;
}
.bio-segment {
  max-width: 1100px;
  margin: 0 auto var(--space-2xl);
  padding: var(--space-xl);
  background: rgba(31, 51, 84, 0.2);
  border: 1px solid rgba(201, 169, 97, 0.1);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
}
.bio-segment::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
  transition: left var(--transition-slower);
}
.bio-segment:hover::before {
  left: 100%;
}
.bio-segment:hover {
  background: rgba(31, 51, 84, 0.35);
  border-color: rgba(201, 169, 97, 0.25);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.bio-segment h4 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 28px);
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-weight: 600;
  transition: all var(--transition-base);
  position: relative;
}
.bio-segment:hover h4 {
  color: var(--gold-light);
  transform: translateX(5px);
}
.bio-segment p {
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.9;
  color: var(--gray-light);
  margin-bottom: var(--space-md);
  transition: color var(--transition-base);
}
.bio-segment:hover p {
  color: var(--white);
}
.bio-segment p strong {
  color: var(--white);
  font-weight: 600;
  transition: color var(--transition-base);
}
.bio-segment:hover p strong {
  color: var(--gold-light);
}
.bio-segment ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}
.bio-segment ul li {
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 12px;
  transition: all var(--transition-base);
  position: relative;
  padding-left: 10px;
}
.bio-segment ul li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  transition: all var(--transition-base);
}
.bio-segment:hover ul li::before {
  opacity: 1;
  left: -10px;
}
.bio-segment:hover ul li {
  color: var(--gray-light);
  transform: translateX(5px);
}
.bio-segment ul li strong {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition-base);
}
.bio-segment:hover ul li strong {
  color: var(--gold-light);
}
.bio-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  max-width: 1000px;
  margin: var(--space-2xl) auto;
}
.bio-images img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-slow);
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
}
.bio-images img:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 169, 97, 0.5);
  filter: brightness(1.1);
}
/* Significance Section */
.significance-section {
  margin: var(--space-3xl) 0;
  padding: var(--space-3xl) var(--space-md);
}
.significance-section h2 {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
.significance-section h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 42px);
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  text-align: center;
}
.significance-intro {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  color: var(--gray);
  max-width: 1000px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}
.significance-content {
  max-width: 1100px;
  margin: 0 auto;
  counter-reset: item;
}
.sig-point {
  margin-bottom: var(--space-xl);
  padding: 35px 35px 35px 100px;
  background: rgba(31, 51, 84, 0.2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 97, 0.1);
  position: relative;
  transition: all var(--transition-base);
}
.sig-point::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(201, 169, 97, 0.2);
  line-height: 1;
}
.sig-point:hover {
  background: rgba(31, 51, 84, 0.35);
  border-color: rgba(201, 169, 97, 0.3);
  transform: translateX(10px);
}
.sig-point:hover::before {
  color: rgba(201, 169, 97, 0.4);
}
.sig-point h4 {
  font-size: clamp(20px, 3vw, 24px);
  color: var(--gold);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.sig-point p {
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.8;
  color: var(--gray-light);
}
/* Values Section */
.values-section {
  margin: var(--space-3xl) 0;
  text-align: center;
}
.values-section h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--white);
  margin-bottom: var(--space-3xl);
  font-weight: 700;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}
.value-card {
  background: rgba(31, 51, 84, 0.2);
  border: 1px solid rgba(201, 169, 97, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: all var(--transition-slow);
  text-align: center;
}
.value-card:hover {
  background: rgba(31, 51, 84, 0.4);
  border-color: rgba(201, 169, 97, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 169, 97, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: all var(--transition-slow);
}
.value-card:hover .value-icon {
  background: rgba(201, 169, 97, 0.25);
  transform: scale(1.1);
}
.value-icon i {
  font-size: 24px;
  color: var(--gold);
}
.value-card h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}
.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

/* ================= PILLARS SECTION ================= */
.raymond-section {
  padding: var(--section-padding);
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
}
.raymond-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}
.label-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.label-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 48px);
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}
.section-header p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  color: var(--gray);
}
.pillars-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}
.pillar-card {
  background: rgba(31, 51, 84, 0.4);
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: var(--radius-lg);
  padding: 80px 40px 50px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}
.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform var(--transition-slower);
}
.pillar-card:hover .card-shine {
  transform: translateX(100%);
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}
.pillar-card:hover::before {
  transform: scaleX(1);
}
.pillar-card:hover {
  transform: translateY(-15px);
  background: rgba(31, 51, 84, 0.6);
  border-color: rgba(201, 169, 97, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
.pillar-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(166, 139, 77, 0.2));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  transition: all var(--transition-slow);
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.pillar-card:hover .pillar-icon {
  transform: translateX(-50%) scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.3), rgba(166, 139, 77, 0.3));
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}
.pillar-icon i {
  font-size: 32px;
  color: var(--gold);
  transition: transform var(--transition-slow);
}
.pillar-card:hover .pillar-icon i {
  transform: scale(1.1);
}
.pillar-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 28px);
  color: var(--gold);
  margin-top: 60px;
  margin-bottom: var(--space-md);
  font-weight: 600;
  transition: color var(--transition-base);
}
.pillar-card:hover h3 {
  color: var(--gold-light);
}
.pillar-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  transition: color var(--transition-base);
}
.pillar-card:hover p {
  color: var(--gray-light);
}
.card-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-slow);
}
.pillar-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.card-arrow i {
  color: var(--gold);
  font-size: 16px;
}

/* ================= JOURNEY SECTION ================= */
.journey-section {
  padding: var(--section-padding);
  max-width: 1400px;
  margin: 0 auto;
}
.timeline {
  max-width: 1000px;
  margin: 0 auto;
}
.timeline-item {
  background: rgba(31, 51, 84, 0.4);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  border-left: 5px solid var(--gold);
  position: relative;
  transition: all var(--transition-slow);
}
.timeline-item:nth-child(odd) {
  margin-left: 0;
  margin-right: 80px;
}
.timeline-item:nth-child(even) {
  margin-left: 80px;
  margin-right: 0;
  border-left: none;
  border-right: 5px solid var(--gold);
}
.timeline-item:hover {
  transform: scale(1.02);
  background: rgba(31, 51, 84, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.timeline-item::before {
  content: "★";
  position: absolute;
  top: -15px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
  transition: all var(--transition-base);
}
.timeline-item:nth-child(even)::before {
  left: auto;
  right: 30px;
}
.timeline-item:hover::before {
  transform: rotate(360deg) scale(1.2);
}
.timeline-year {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201, 169, 97, 0.15);
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(201, 169, 97, 0.3);
}
.timeline-content h3 {
  font-size: clamp(20px, 3vw, 24px);
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
  transition: color var(--transition-base);
}
.timeline-item:hover .timeline-content h3 {
  color: var(--gold-light);
}
.timeline-content p {
  font-size: clamp(15px, 2vw, 16px);
  color: var(--gray-light);
  line-height: 1.8;
}

/* ================= IMPACT SECTION ================= */
.impact-section {
  padding-top: -20px;
  padding-bottom: var(--section-padding);
  background: linear-gradient(180deg, var(--navy), var(--navy-light));
  position: relative;
  margin-bottom: -120px;
}

/* ================= ACHIEVEMENTS SECTION ================= */
.achievements-section {
  padding: var(--section-padding);
  background: var(--navy);
  
}
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  max-width: 1400px;
  margin: 0 auto;
}
.achievement-card {
  background: rgba(31, 51, 84, 0.3);
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  transition: all var(--transition-slow);
  text-align: center;
  cursor: pointer;
}
.achievement-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 169, 97, 0.35);
}
.achievement-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-slow);
}
.achievement-card:hover .achievement-icon {
  transform: scale(1.2) rotate(5deg);
  color: var(--gold-light);
}
.achievement-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3vw, 26px);
  color: var(--gold);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
.achievement-card p {
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.8;
  color: var(--gray);
}

/* ================= PASSION SECTION ================= */
.passion-section {
  min-height: 100vh;
  padding: var(--section-padding);
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.passion-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.passion-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.5));
  pointer-events: none;
  z-index: 0;
}
.passion-section > * {
  position: relative;
  z-index: 1;
}
.passion-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding: 0 var(--space-lg);
}
.passion-card {
  background: rgba(31, 51, 84, 0.4);
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: var(--radius-xl);
  padding: 80px 40px 50px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  min-height: 320px;
}
.passion-card .card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform var(--transition-slower);
}
.passion-card:hover .card-shine {
  transform: translateX(100%);
}
.passion-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}
.passion-card:hover::before {
  transform: scaleX(1);
}
.passion-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  opacity: 0;
  transition: opacity var(--transition-slower);
  z-index: 0;
}
.passion-card:hover .passion-glow {
  opacity: 1;
}
.passion-card::after {
  content: "";
  position: absolute;
  top: -60%;
  right: -60%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
  transition: transform var(--transition-slower);
  z-index: 0;
}
.passion-card:hover::after {
  transform: translate(-20%, 20%);
}
.passion-card:hover {
  border-color: rgba(201, 169, 97, 0.4);
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  background: rgba(31, 51, 84, 0.6);
}
.passion-card i {
  font-size: 44px;
  color: var(--gold);
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  transition: all var(--transition-slow);
  z-index: 2;
}
.passion-card:hover i {
  transform: translateX(-50%) scale(1.15) rotate(5deg);
  color: var(--gold-light);
}
.passion-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3vw, 26px);
  color: var(--white);
  margin-top: 60px;
  margin-bottom: var(--space-md);
  font-weight: 600;
  transition: color var(--transition-base);
  position: relative;
  z-index: 2;
}
.passion-card:hover h3 {
  color: var(--gold-light);
}
.passion-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
  transition: color var(--transition-base);
  position: relative;
  z-index: 2;
}
.passion-card:hover p {
  color: var(--gray-light);
}
.passion-card .card-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-slow);
  z-index: 2;
}
.passion-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.passion-card .card-arrow i {
  color: var(--gold);
  font-size: 16px;
  position: static;
  transform: none;
}
.passion-card:hover .card-arrow i {
  transform: none;
}

/* ================= GALLERY SECTION ================= */
.gallery-section {
  padding: var(--section-padding);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
/* Gallery Grid */
.gallery-grid {
  max-width: 1400px;
  margin: var(--space-3xl) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
  padding: 0 var(--space-lg);
}
/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: rgba(31, 51, 84, 0.3);
  border: 1px solid rgba(201, 169, 97, 0.1);
  transition: all var(--transition-slow);
}
.gallery-item:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 169, 97, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
/* Gallery Image */
.gallery-item img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  transition: transform var(--transition-slower);
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 22, 40, 0.6) 50%,
    rgba(10, 22, 40, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
/* Gallery Content */
.gallery-content {
  transform: translateY(20px);
  transition: transform var(--transition-slow);
}
.gallery-item:hover .gallery-content {
  transform: translateY(0);
}
.gallery-content h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}
.gallery-content p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}
/* Gallery Category Badge */
.gallery-category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: rgba(201, 169, 97, 0.9);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  z-index: 2;
}
.gallery-item:hover .gallery-category {
  background: var(--gold);
  transform: translateY(-5px);
}
/* Gallery Icon Overlay */
.gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: rgba(201, 169, 97, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-slow);
  z-index: 2;
}
.gallery-item:hover .gallery-icon {
  transform: translate(-50%, -50%) scale(1);
}
.gallery-icon i {
  color: var(--navy);
  font-size: 24px;
}
/* Gallery Filter Buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-3xl);
  flex-wrap: wrap;
}
.filter-btn {
  padding: 12px 28px;
  background: rgba(31, 51, 84, 0.5);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: var(--radius-sm);
  color: var(--gray-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-base);
}
.filter-btn:hover {
  background: rgba(201, 169, 97, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}
/* Lightbox Modal (for full-screen image view) */
.gallery-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.98);
  z-index: 10000;
  padding: var(--space-2xl);
  animation: fadeIn 0.3s ease;
}
.gallery-lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}
.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 97, 0.2);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}
.lightbox-close:hover {
  background: var(--gold);
  transform: scale(1.1);
}
.lightbox-close i {
  color: var(--white);
  font-size: 20px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(201, 169, 97, 0.2);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}
.lightbox-nav:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-nav.prev {
  left: -70px;
}
.lightbox-nav.next {
  right: -70px;
}
.lightbox-nav i {
  color: var(--white);
  font-size: 24px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Gallery Loading State */
.gallery-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(201, 169, 97, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================= GALLERY RESPONSIVE STYLES ================= */
/* Tablet (1024px) */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* iPad Mini & Small Tablets (820px) */
@media (max-width: 820px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile (768px) */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .gallery-filters {
    gap: var(--space-sm);
  }
  .filter-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  .lightbox-nav {
    display: none;
  }
}
/* Small Mobile (480px) */
@media (max-width: 480px) {
  .gallery-filters {
    gap: var(--space-xs);
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 11px;
  }
  .gallery-content h3 {
    font-size: 16px;
  }
  .gallery-content p {
    font-size: 13px;
  }
}
/* Extra Small (375px) */
@media (max-width: 375px) {
  .gallery-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-btn {
    width: 100%;
    text-align: center;
  }
  .gallery-category {
    font-size: 10px;
    padding: 4px 12px;
  }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: var(--section-padding);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.contact-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 48px);
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-weight: 700;
}
.contact-section p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--gray);
  margin-bottom: var(--space-3xl);
}
.social-links {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: rgba(31, 51, 84, 0.5);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: var(--radius-md);
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.social-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent);
  transform: translate(-50%, -50%);
  transition: width var(--transition-slower), height var(--transition-slower);
  border-radius: 50%;
}
.social-btn:hover::before {
  width: 400px;
  height: 400px;
}
.social-btn:hover {
  background: rgba(201, 169, 97, 0.15);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}
.social-btn i {
  font-size: 22px;
  transition: transform var(--transition-base);
}
.social-btn:hover i {
  transform: scale(1.2) rotate(5deg);
}
.social-btn span {
  position: relative;
  z-index: 1;
}

/* ================= FOOTER ================= */
footer {
  background: var(--navy-lighter);
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
  border-top: 1px solid rgba(201, 169, 97, 0.1);
}
footer p {
  color: var(--gray);
  font-size: 14px;
}

/* ================= RESPONSIVE DESIGN ================= */
/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 100px 40px;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .hero {
    padding: 160px 40px 50px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .passion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    margin-left: 40px;
    margin-right: 40px;
  }
}

/* iPad Mini & Small Tablets (820px and below) */
@media (max-width: 820px) {
  nav {
    padding: var(--space-md) var(--space-xl);
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
  }
  .menu-toggle:hover {
    background: rgba(201, 169, 97, 0.2);
    border-color: var(--gold);
    transform: scale(1.05);
  }
  .menu-toggle:active {
    transform: scale(0.95);
  }
  .menu-toggle i {
    font-size: 20px;
  }
  .logo-section {
    gap: 12px;
  }
  .logo-badge {
    width: 45px;
    height: 45px;
  }
  .logo-badge i {
    font-size: 22px;
  }
  .logo-text h1 {
    font-size: 19px;
  }
  .logo-text p {
    font-size: 10.5px;
  }

  /* ENHANCED LAYOUT FOR IPAD MINI */
  :root {
    --section-padding: 90px 30px;
  }
  .hero {
    padding: 150px 30px 50px;
  }
  .hero-stats {
    gap: var(--space-md);
    justify-content: center;
  }
  .values-grid,
  .achievements-grid,
  .pillars-grid,
  .passion-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
  }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    margin-left: 20px;
    margin-right: 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .social-btn {
    padding: 14px 24px;
    font-size: 13px;
  }
}



/* Medium Desktop (1280px and below) */
@media (max-width: 1280px) {
  .nav-links {
    gap: var(--space-md);
  }
  .nav-links a {
    font-size: 12px;
  }
  .cta-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px 30px;
    --space-3xl: 64px;
    --space-2xl: 48px;
  }
  nav {
    padding: var(--space-sm) var(--space-lg);
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-sm);
  }
  .menu-toggle i {
    font-size: 18px;
  }
  .logo-badge {
    width: 40px;
    height: 40px;
  }
  .logo-badge i {
    font-size: 20px;
  }
  .logo-text h1 {
    font-size: 18px;
  }
  .hero {
    padding: 140px 30px 40px;
  }
  .hero-stats {
    gap: var(--space-md);
  }
  /* Hero Image Mobile Adjustments */
  .image-container {
    max-width: 380px;
  }
  .raymond-logo-badge {
    width: 85px;
    height: 85px;
    bottom: -25px;
  }
  .logo-badge-inner {
    padding: 15px;
  }
  .hero-name {
    font-size: 1.25rem;
  }
  .hero-title {
    font-size: 0.8rem;
  }
  .stat-item {
    flex: 1 1 120px;
    max-width: 150px;
    padding: var(--space-md) var(--space-md);
  }
  .stat-icon {
    width: 50px;
    height: 50px;
  }
  .stat-icon i {
    font-size: 20px;
  }
  .about-section {
    padding: 0 var(--space-lg);
  }
  .raymond-overview,
  .significance-section {
    padding: var(--space-3xl) var(--space-lg);
  }
  .bio-segment {
    padding: var(--space-lg) var(--space-md);
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    border-right: none;
    border-left: 5px solid var(--gold);
  }
  .timeline-item::before {
    left: 30px !important;
    right: auto !important;
  }
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .passion-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .passion-card {
    padding: 55px 26px 40px;
  }
  .pillar-card {
    padding: 60px 30px 40px;
  }
  footer {
    padding: var(--space-lg);
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  :root {
    --space-2xl: 40px;
    --space-xl: 32px;
  }
  .hero {
    padding: 130px 20px 30px;
  }
  .hero-stats {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: stretch;
  }
  .stat-item {
    max-width: 100%;
    flex: 1 1 auto;
  }
  /* Hero Image Extra Small Mobile */
  .image-container {
    max-width: 320px;
  }
  .raymond-logo-badge {
    width: 75px;
    height: 75px;
    bottom: -22px;
  }
  .logo-badge-inner {
    padding: 13px;
  }
  .hero-name {
    font-size: 1.1rem;
  }
  .hero-title {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }
  .overview-quote {
    font-size: 18px;
    padding: var(--space-md);
  }
  .sig-point {
    padding: 25px 25px 25px 70px;
  }
  .sig-point::before {
    font-size: 36px;
    left: 15px;
  }
  .social-links {
    flex-direction: column;
    gap: var(--space-md);
  }
  .social-btn {
    width: 100%;
    justify-content: center;
  }
}

/* 📱 iPhone SE & Extra Small Screens (≤ 375px) */
@media (max-width: 375px) {
  :root {
    --section-padding: 70px 20px;
    --space-3xl: 56px;
    --space-2xl: 40px;
    --space-xl: 28px;
    --space-lg: 24px;
  }
  /* Header adjustments */
  nav {
    padding: var(--space-sm) 16px;
  }
  .logo-text h1 {
    font-size: 16px;
  }
  .logo-text p {
    font-size: 10px;
  }
  /* Hero section */
  .hero {
    padding: 120px 16px 30px;
  }
  .hero-content {
    gap: var(--space-xl);
  }
  .hero-text h2 {
    font-size: clamp(28px, 8vw, 48px);
  }
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
  }
  .stat-item {
    max-width: 100% !important;
    min-width: auto;
    padding: 16px;
  }
  .stat-item h3 {
    font-size: 22px;
  }
  /* Labels & Headers */
  .section-label,
  .raymond-overview .section-label {
    font-size: 12px;
    gap: 6px;
  }
  .label-line {
    width: 30px;
  }
  /* Bio & Impact */
  .bio-segment,
  .sig-point {
    padding: 20px 16px 20px 60px;
  }
  .sig-point::before {
    left: 12px;
    font-size: 32px;
  }
  .bio-header h3,
  .significance-section h3,
  .section-header h2 {
    font-size: clamp(26px, 6vw, 36px);
  }
  /* Grids → single column */
  .values-grid,
  .achievements-grid,
  .pillars-grid,
  .passion-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-md);
  }
  .passion-card,
  .pillar-card {
    padding: 50px 20px 35px;
    min-height: auto;
  }
  .passion-card i,
  .pillar-icon {
    top: 30px;
  }
  .passion-card h3,
  .pillar-card h3 {
    margin-top: 45px;
    font-size: 22px;
  }
  /* Timeline */
  .timeline-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: var(--space-lg);
  }
  .timeline-item::before {
    left: 20px !important;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .timeline-year {
    padding: 6px 14px;
    font-size: 14px;
  }
  /* Footer */
  footer {
    padding: var(--space-md) 16px;
    font-size: 13px;
  }
  /* Prevent overflow */
  body {
    overflow-x: hidden;
  }
  section,
  .about-section,
  .hero,
  .raymond-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Fix menu toggle alignment on tiny screens */
@media (max-width: 375px) {
  .menu-toggle {
    font-size: 24px;
    margin-left: auto;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-toggle i {
    font-size: 16px;
  }
}



/* ================= UTILITY CLASSES ================= */
.text-center {
  text-align: center;
}
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

/* ================= PRINT STYLES ================= */
@media print {
  header, footer, .floating-orbs, #particleCanvas {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  section {
    page-break-inside: avoid;
  }
}