/* ============================================
   DDPRINT N PACKAGING - Professional Design
   Premium B2B Manufacturing Website
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Primary Colors - Sophisticated & Trustworthy */
  --color-navy: #1a2744;
  --color-navy-dark: #0f1a2e;
  --color-navy-light: #2a3a5a;
  
  /* Accent Colors */
  --color-gold: #c9a227;
  --color-gold-light: #e8c547;
  --color-gold-dark: #a88520;
  
  /* Neutral Colors */
  --color-cream: #faf8f5;
  --color-cream-dark: #f0ebe3;
  --color-white: #ffffff;
  
  /* Text Colors */
  --color-text-primary: #1a2744;
  --color-text-secondary: #4a5568;
  --color-text-muted: #718096;
  --color-text-light: #a0aec0;
  
  /* Semantic Colors */
  --color-success: #059669;
  --color-error: #dc2626;
  --color-warning: #d97706;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;
  
  /* Spacing */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(26, 39, 68, 0.05);
  --shadow-sm: 0 2px 4px rgba(26, 39, 68, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 39, 68, 0.08);
  --shadow-lg: 0 8px 30px rgba(26, 39, 68, 0.12);
  --shadow-xl: 0 16px 50px rgba(26, 39, 68, 0.15);
  --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.25);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Container */
  --container-max: 1280px;
  --container-narrow: 960px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-secondary);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

ul, ol {
  list-style: none;
}

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

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

/* Selection */
::selection {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p {
  margin-bottom: var(--space-sm);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: var(--text-xl);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Layout
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--dark {
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
}

.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--color-white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.95);
}

.section--pattern {
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(201, 162, 39, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(26, 39, 68, 0.02) 0%, transparent 50%);
}

/* ============================================
   Header & Navigation
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 39, 68, 0.06);
  transition: all var(--transition-base);
}

.header.scrolled {
  padding: var(--space-xs) 0;
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--color-gold);
}

.logo__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: var(--radius-md);
  color: var(--color-gold);
  flex-shrink: 0;
  overflow: hidden;
}

.logo__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  position: relative;
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  padding: var(--space-xs) 0;
  letter-spacing: 0.01em;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link.active {
  color: var(--color-navy);
}

.nav__link--cta {
  padding: var(--space-xs) var(--space-md) !important;
  background: var(--color-gold);
  color: var(--color-navy-dark) !important;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  min-height: 48px;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--color-navy-dark);
}

.btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn--secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-3px);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn--white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-base);
  min-height: 56px;
}

.btn--sm {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
  min-height: 36px;
}

.btn__icon {
  width: 18px;
  height: 18px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--color-cream-dark);
  color: var(--color-navy);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.hero__badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
}

.hero__title {
  margin-bottom: var(--space-lg);
}

.hero__title span {
  display: block;
  font-size: 0.4em;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero__cta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero__stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-cream-dark);
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1;
}

.hero__stat-value span {
  color: var(--color-gold);
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.hero__media {
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 39, 68, 0.4) 100%);
  z-index: 1;
}

.hero__image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero__image-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__image-badge svg {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
}

.hero__image-badge-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
}

.hero__image-badge-text span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
}

/* Floating elements */
.hero__float {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  z-index: 3;
}

.hero__float--1 {
  top: 20%;
  right: -30px;
}

.hero__float--2 {
  bottom: 30%;
  left: -20px;
}

.hero__float-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  color: var(--color-gold);
}

.hero__float-text {
  font-size: var(--text-xs);
}

.hero__float-text strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-navy);
}

/* ============================================
   Trust Indicators
   ============================================ */

.trust-bar {
  padding: var(--space-lg) 0;
  background: var(--color-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-white);
}

.trust-bar__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-gold);
}

.trust-bar__icon svg {
  width: 20px;
  height: 20px;
}

.trust-bar__text {
  font-size: var(--text-sm);
}

.trust-bar__text strong {
  display: block;
  font-weight: 600;
  color: var(--color-white);
}

.trust-bar__text span {
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section-header__label::before,
.section-header__label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-gold);
}

.section-header__title {
  margin-bottom: var(--space-sm);
}

.section-header__description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
}

/* ============================================
   Services Section
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 39, 68, 0.06);
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 39, 68, 0.9) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.service-card__icon {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  color: var(--color-gold);
  z-index: 2;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__body {
  padding: var(--space-lg);
}

.service-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.service-card__description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}

/* ============================================
   Features/Why Choose Us
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-navy-dark);
  box-shadow: var(--shadow-gold);
}

.feature-card__icon svg {
  width: 32px;
  height: 32px;
}

.feature-card__title {
  font-size: var(--text-xl);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.feature-card__description {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   Process Section
   ============================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 3px solid var(--color-gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-navy);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.process-step:hover .process-step__number {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  transform: scale(1.1);
}

.process-step__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.process-step__description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials-section {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 39, 68, 0.06);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
  color: var(--color-gold);
}

.testimonial-card__quote {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-gold);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-weight: 700;
  font-size: var(--text-lg);
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial-card__role {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Ensure all CTA text is highly visible on dark background */
.cta-section h2,
.cta-section .cta-section__title {
  color: #ffffff !important;
  margin-bottom: var(--space-sm);
}

.cta-section p,
.cta-section .cta-section__description {
  font-size: var(--text-lg);
  color: #ffffff !important;
  margin-bottom: var(--space-xl);
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.cta-section__contact {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-white);
}

.cta-section__contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
}

.cta-section__contact-item a {
  color: var(--color-white);
}

.cta-section__contact-item a:hover {
  color: var(--color-gold);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--color-navy-dark);
  color: var(--color-white);
  padding: var(--space-3xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr minmax(140px, 1fr) minmax(140px, 1fr) minmax(200px, 1.5fr);
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand .logo {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.footer__certifications {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__certification {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.8);
}

.footer__certification svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
}

.footer__title,
.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff !important;
  margin-bottom: var(--space-lg);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-gold);
  padding-left: var(--space-xs);
}

.footer__contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__contact-item p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact-item a:hover {
  color: var(--color-gold);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  transform: translateY(-3px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

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

/* ============================================
   Page Header
   ============================================ */

.page-header {
  padding: 160px 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.page-header__breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: var(--text-sm);
}

.page-header__breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.page-header__breadcrumb a:hover {
  color: var(--color-gold);
}

.page-header__breadcrumb span {
  color: var(--color-gold);
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  position: relative;
}

.page-header__description {
  font-size: var(--text-lg);
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Contact Form
   ============================================ */

.contact-section {
  padding: var(--space-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
}

.contact-info {
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  border-radius: var(--radius-2xl);
  color: var(--color-white);
}

.contact-info__title {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info__item:last-child {
  margin-bottom: 0;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__content h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.contact-info__content p,
.contact-info__content a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.95);
}

.contact-info__content a:hover {
  color: var(--color-gold);
}

.contact-info__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info__social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  color: var(--color-white);
  transition: all var(--transition-base);
}

.contact-info__social a:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

.contact-info__social svg {
  width: 20px;
  height: 20px;
}

/* Form Styles */
.contact-form {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.form-group label .required {
  color: var(--color-error);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 2px solid var(--color-cream-dark);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

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

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

.form-group__help {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.form-submit {
  margin-top: var(--space-lg);
}

/* ============================================
   Map
   ============================================ */

.map-section {
  padding-top: var(--space-3xl);
}

.map-container {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* ============================================
   Gallery
   ============================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
}

.gallery__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__item:nth-child(2) {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery__item:hover::after {
  opacity: 1;
}

/* ============================================
   Policy Pages
   ============================================ */

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.policy-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-lg);
}

.policy-content ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.policy-content li {
  margin-bottom: var(--space-xs);
  color: var(--color-text-secondary);
  position: relative;
  padding-left: var(--space-md);
}

.policy-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

.policy-content .last-updated {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-cream-dark);
  border-radius: var(--radius-md);
  display: inline-block;
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-toolbar {
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-search {
  position: relative;
  max-width: 400px;
}

.faq-search__input {
  width: 100%;
  padding: var(--space-md) var(--space-md) var(--space-md) 3rem;
  border: 1px solid rgba(26, 39, 68, 0.12);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-navy);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.faq-search__input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.faq-search__icon {
  position: absolute;
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.faq-category-btn {
  padding: var(--space-xs) var(--space-md);
  border: 1px solid rgba(26, 39, 68, 0.12);
  border-radius: var(--radius-md);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-category-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.faq-category-btn.active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

.faq-category-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.4);
}

.faq-list {
  margin: 0;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(26, 39, 68, 0.06);
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  font-weight: 600;
  color: var(--color-navy);
  transition: all var(--transition-fast);
}

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

.faq-item__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 var(--space-lg);
  transition: grid-template-rows var(--transition-base);
}

.faq-item.active .faq-item__answer {
  grid-template-rows: 1fr;
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-item__answer > * {
  min-height: 0;
  overflow: hidden;
}

.faq-item__answer p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.faq-item__answer a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__answer a:hover {
  color: var(--color-gold-dark);
}

.faq-empty {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(26, 39, 68, 0.1);
}

.faq-empty__icon {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.faq-empty__title {
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.faq-empty__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

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

/* ============================================
   Director Cards
   ============================================ */

.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.director-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 39, 68, 0.06);
  text-align: center;
  transition: all var(--transition-base);
}

.director-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.director-card__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border-radius: 50%;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
}

.director-card h3 {
  margin-bottom: var(--space-xs);
}

.director-card__role {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-cream);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.director-card__din {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   Page Image
   ============================================ */

.page-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-3xl);
}

.page-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============================================
   Split with Image
   ============================================ */

.split-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split-with-image__media {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-with-image__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============================================
   Utility Classes
   ============================================ */

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

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

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

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

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

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ============================================
   Animations
   ============================================ */

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

/* AOS adjustments */
[data-aos] {
  pointer-events: auto;
}
