/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/* Global Styles - Navy/Gold Theme */

:root {
  --primary-navy: #1a365d;
  --dark-navy: #0f3460;
  --gold: #d4a574;
  --gold-dark: #c9a961;
  --text-dark: #1a202c;
  --text-light: #ffffff;
  --bg-light: #f7fafc;
  --border-color: #e2e8f0;
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

/* Header & Navigation */
.header {
  background-color: var(--primary-navy);
  color: var(--text-light);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
}

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

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  color: var(--text-light);
  border-radius: 8px;
  margin: 2rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.tagline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e0e7ff;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--gold);
  color: var(--primary-navy);
}

/* Services Section */
.services-overview {
  padding: 4rem 0;
}

.services-overview h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: white;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.service-card h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.service-card a:hover {
  color: var(--gold-dark);
}

/* Credentials Section */
.credentials {
  padding: 4rem 0;
  border-top: 2px solid var(--border-color);
}

.credentials h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-navy);
}

.credentials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.credential {
  padding: 2rem;
  background-color: white;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
}

.credential strong {
  display: block;
  color: var(--primary-navy);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.credential p, .credential ul {
  color: #4a5568;
  line-height: 1.8;
}

.credential ul {
  list-style: none;
  padding-left: 1rem;
}

.credential li::before {
  content: "→ ";
  color: var(--gold);
  margin-right: 0.5rem;
}

/* CTA Section */
.cta-booking {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  color: var(--text-light);
  border-radius: 8px;
  margin: 4rem 0;
}

.cta-booking h2 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.cta-booking p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background-color: var(--primary-navy);
  color: var(--text-light);
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  border-top: 2px solid var(--gold);
}

.footer p {
  margin: 0.5rem 0;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Contact Page */
.contact-hero {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  color: var(--text-light);
  border-radius: 8px;
  margin: 2rem 0;
}

.contact-hero h1 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #e0e7ff;
}

.contact-methods {
  padding: 3rem 0;
}

.contact-methods h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  padding: 2rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card .btn {
  margin-top: auto;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.contact-card p {
  color: #4a5568;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-detail {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 1rem;
}

.contact-form-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  padding: 4rem 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form-container h2 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.contact-form-container > p {
  color: #4a5568;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

.success-message {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  color: #155724;
}

.success-message h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.contact-info-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  margin: 3rem 0;
}

.info-item {
  padding: 1.5rem;
  background: white;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
}

.info-item strong {
  color: var(--primary-navy);
  display: block;
  margin-bottom: 0.5rem;
}

.info-item p {
  color: #4a5568;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .contact-hero h1 {
    font-size: 1.8rem;
  }
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

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

  .credentials-list {
    grid-template-columns: 1fr;
  }
}

/* Services Detail Page */
.services-hero {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  color: var(--text-light);
  border-radius: 8px;
  margin: 2rem 0;
}

.services-hero h1 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.services-hero p {
  font-size: 1.1rem;
  color: #e0e7ff;
  max-width: 700px;
  margin: 0 auto;
}

.services-hero p a,
.services-hero p a:visited {
  color: var(--gold);
  font-weight: 600;
}

.services-hero p a:hover {
  color: var(--gold-dark);
}

.services-hero p.justified {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}

.service-detail {
  padding: 4rem 0;
  scroll-margin-top: 100px;
}

.service-detail + .service-detail {
  border-top: 2px solid var(--border-color);
}

.service-detail h2 {
  font-size: 2.25rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.service-detail-intro {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 760px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.service-detail-subhead {
  font-size: 1.3rem;
  color: var(--primary-navy);
  margin: 2.5rem 0 1rem;
}

.arrow-list {
  list-style: none;
  max-width: 760px;
}

.arrow-list li {
  padding: 0.4rem 0;
  color: #4a5568;
  line-height: 1.7;
}

.arrow-list li::before {
  content: "→ ";
  color: var(--gold);
  font-weight: 600;
  margin-right: 0.4rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 2.5rem;
}

.approach-steps {
  list-style: none;
  counter-reset: step;
  max-width: 760px;
  margin: 1.5rem 0 2.5rem;
}

.approach-steps li {
  counter-increment: step;
  position: relative;
  padding: 0.75rem 0 0.75rem 2.75rem;
  color: #4a5568;
  line-height: 1.7;
}

.approach-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-steps strong {
  display: block;
  color: var(--primary-navy);
}

.security-note {
  background-color: var(--bg-light);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  max-width: 760px;
}

.security-note h3 {
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.security-note p {
  color: #4a5568;
  line-height: 1.8;
}

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

.service-detail-brief {
  color: #4a5568;
  max-width: 760px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.citation {
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 1px;
}

.citation a {
  color: var(--gold);
  text-decoration: none;
}

.citation a:hover {
  text-decoration: underline;
}

.references-list {
  max-width: 900px;
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.8;
  padding-left: 1.5rem;
}

.references-list li {
  margin-bottom: 0.4rem;
}

.references-list a {
  color: var(--gold);
  text-decoration: none;
  word-break: break-word;
}

.references-list a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 1.8rem;
  }

  .service-detail h2 {
    font-size: 1.75rem;
  }
}

/* Blog Listing Page */
.blog-hero {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  color: var(--text-light);
  border-radius: 8px;
  margin: 2rem 0;
}

.blog-hero h1 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.blog-hero p {
  font-size: 1.1rem;
  color: #e0e7ff;
  max-width: 700px;
  margin: 0 auto;
}

.blog-list {
  padding: 3rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: white;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.blog-card-meta {
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 0.5rem;
}

.blog-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.blog-card h2 a {
  color: var(--primary-navy);
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--gold-dark);
}

.blog-card p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-read-more {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  align-self: flex-start;
}

.blog-read-more:hover {
  color: var(--gold-dark);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.blog-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-navy);
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.blog-empty h2 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.blog-empty p {
  color: #4a5568;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Blog Post Detail Page */
.post {
  padding: 2rem 0 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.post-back {
  margin-bottom: 1.5rem;
}

.post-back a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
}

.post-back a:hover {
  text-decoration: underline;
}

.post-hero {
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 2rem;
}

.post-hero h1 {
  font-size: 2.25rem;
  color: var(--primary-navy);
  margin: 0.5rem 0 1rem;
}

.post-meta {
  font-size: 0.9rem;
  color: #718096;
}

.post-content {
  color: #2d3748;
  line-height: 1.8;
  font-size: 1.05rem;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content h2 {
  font-size: 1.6rem;
  color: var(--primary-navy);
  margin: 2.5rem 0 1rem;
}

.post-content h3 {
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin: 2rem 0 1rem;
}

.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
}

.post-quote {
  border-left: 4px solid var(--gold);
  background-color: var(--bg-light);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #4a5568;
  border-radius: 4px;
}

.post-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 1.8rem;
  }

  .post-hero h1 {
    font-size: 1.6rem;
  }

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

/* Interview Agent Widget */
.agent-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.agent-fab {
  background-color: var(--gold);
  color: var(--primary-navy);
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}

.agent-fab:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
}

.agent-panel {
  width: min(360px, calc(100vw - 2rem));
  max-height: min(520px, calc(100vh - 8rem));
  margin-bottom: 0.75rem;
  background: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.agent-panel-header {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  color: var(--text-light);
  padding: 0.9rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.agent-close-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
}

.agent-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.agent-starter-prompts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agent-starter-prompts p {
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 0.25rem;
}

.agent-starter-btn {
  text-align: left;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-dark);
}

.agent-starter-btn:hover {
  border-color: var(--gold);
  background: #fdf8f1;
}

.agent-message {
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 90%;
  white-space: pre-wrap;
}

.agent-message-user {
  align-self: flex-end;
  background: var(--gold);
  color: var(--primary-navy);
}

.agent-message-assistant {
  align-self: flex-start;
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.agent-typing {
  font-style: italic;
  color: #718096;
}

.agent-message-error {
  align-self: stretch;
  background: #fff5f5;
  color: #c53030;
  border: 1px solid #feb2b2;
}

.agent-panel-input {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.agent-panel-input input {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
}

.agent-panel-input .btn {
  padding: 0.55rem 1.1rem;
}

@media (max-width: 480px) {
  .agent-widget {
    right: 1rem;
    bottom: 1rem;
  }
}

