/* ============================================================
       GRC - ABOUT PAGE STYLESHEET & VARIABLES
	   (About Golden Ratio Consulting)
============================================================ */


/* ============================================================
       GLOBAL STYLES & VARIABLES
============================================================ */
:root {
  --color-gray-900: #0a0a0a;
  --color-gray-800: #1a1a1a;
  --color-gray-700: #2d2d2d;
  --color-gray-100: #f5f5f5;
  --color-primary: #DAA520;
  --color-primary-dark: #B8860B;
  --color-primary-light: #FFD700;
  --card-radius: 1rem;
  --transition-base: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
       TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, .hero__title, .card__title, .stat-number, .member-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-eyebrow {
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.section-header p {
  font-size: 1.125rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.gold-text {
  color: #b8860b !important;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================================
       BUTTONS
============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  box-shadow: 0 4px 12px rgba(218, 165, 32, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(218, 165, 32, 0.35);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

/* ============================================================
       SECTION BACKGROUNDS
============================================================ */
.section {
  padding: 5rem 0;
}

.section--alt {
  background-color: var(--color-gray-100);
}

/* ============================================================
       PAGE HERO
============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #0a0a2e 0%, #16213e 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  color: white;
  overflow: hidden;
}

.page-hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
       STATS SECTION
============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

/* ============================================================
       ANIMATIONS
============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
       HEADER SECTION
============================================================ */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__image {
  height: 90px;
  width: auto;
  max-width: 100%;
  display: block;
}

/* ============================================================
       NAVIGATION
============================================================ */
.nav-list-desktop ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list-desktop a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111111;
  transition: var(--transition-base);
}

.nav-list-desktop a:hover {
  color: var(--color-primary);
}

.nav-list-desktop a.active-link {
  color: var(--color-primary);
}

.nav-list-desktop .btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
}

.nav-list-desktop .btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  transform: translateY(-2px);
}

/* ============================================================
       STORY SECTION (ABOUT)
============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story__content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #111;
}

.about-story__content p {
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.about-story__image img {
  width: 100%;
  border-radius: var(--card-radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
}

/* ============================================================
       TEAM SECTION - ENHANCED TYPOGRAPHY
============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.team-card {
  background: white;
  border-radius: var(--card-radius, 1rem);
  padding: 2rem;
  text-align: center;
  border: 1px solid #eee;
  transition: var(--transition-base, all 0.3s ease);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary-light, #FFD700);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary, #DAA520), var(--color-primary-dark, #B8860B));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  font-family: 'Montserrat', sans-serif;
}

.team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #111;
  font-family: 'Montserrat', sans-serif;
}

.team-card__role {
  font-size: 0.95rem;
  color: var(--color-primary-dark, #B8860B);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.team-card p {
  font-size: 1.00rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team-card {
    padding: 1.5rem;
  }
  
  .team-card h3 {
    font-size: 1.3rem;
  }
  
  .team-card__avatar {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .team-card h3 {
    font-size: 1.2rem;
  }
  
  .team-card__role {
    font-size: 0.85rem;
  }
  
  .team-card p {
    font-size: 0.85rem;
  }
}

/* ============================================================
       MISSION & VISION CARDS
============================================================ */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mv-card {
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: var(--transition-base);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary-light);
}

.mv-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mv-card__content {
  padding: 2rem;
  text-align: center;
}

.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.mv-card p {
  color: #4a4a4a;
  line-height: 1.6;
}

/* ============================================================
       VALUES GRID
============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-light);
}

.value-card__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.value-card__content {
  padding: 1.5rem;
  text-align: center;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #111;
}

.value-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

/* ============================================================
       SERVICES HIGHLIGHT
============================================================ */
.services-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.service-highlight-card {
  background: white;
  border-radius: var(--card-radius);
  padding: 2rem;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--color-primary);
}

.service-highlight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #111;
}

.service-highlight-card p {
  color: #4a4a4a;
}

/* ============================================================
       CTA BANNER
============================================================ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.cta-banner h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  background: white;
  color: var(--color-primary-dark);
  position: relative;
  z-index: 1;
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* ============================================================
       13. SERVICE & SUPPORT CENTER
============================================================ */
.service-support-section {
  padding: 4rem 0;
  background: white;
  position: relative;
}

/* Section Dividers */
.section-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.divider-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-primary-light), var(--color-primary), transparent);
  width: 100%;
  margin: 1rem 0;
}

.divider-icon {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: var(--color-gray-900);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-size: 1.5rem;
  position: relative;
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
}

/* Service Support Grid */
.service-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

/* Service Support Cards */
.service-support-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-support-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-support-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-support-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.service-support-card p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-support-card .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-support-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(218, 165, 32, 0.35);
}

/* ============================================================
       14. FLOATING EMERGENCY TICKET BUTTON
============================================================ */
.floating-ticket-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: float-pulse 2s infinite;
}

.floating-ticket-btn span {
  font-size: 2rem;
}

.floating-ticket-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.floating-ticket-btn::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #DAA520, #B8860B, #DAA520);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-ticket-btn:hover::before {
  opacity: 1;
}

/* ============================================================
       15. ANIMATIONS
============================================================ */
@keyframes pulse-glow {
  0% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 4px 25px rgba(218, 165, 32, 0.5); }
  100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  20% { transform: translateX(100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes float-pulse {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(218, 165, 32, 0.5); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
       FOOTER SECTION
============================================================ */
.site-footer {
  background: var(--color-gray-900);
  color: #aaa;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.footer-logo__image {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-heading {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition-base);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom__links {
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.footer-bottom__links a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-bottom__links a:hover {
  color: var(--color-primary);
}

.separator {
  color: #555;
}

.footer-bottom__copyright {
  opacity: 0.7;
}

/* ============================================================
       RESPONSIVE STYLES
============================================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .site-logo__image {
    height: 50px;
  }

  .footer-brand {
    align-items: center;
  }

  .nav-list-desktop ul {
    gap: 0.75rem;
  }

  .nav-list-desktop a {
    font-size: 0.7rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom__links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .separator {
    display: none;
  }
}

/* ============================================================
       EXTRA SMALL DEVICES (480px AND BELOW)
============================================================ */
@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .about-story__content h2 {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    padding: 1.5rem;
  }

  .team-card h3 {
    font-size: 1.2rem;
  }

  .mv-card__content {
    padding: 1.5rem;
  }

  .mv-card h3 {
    font-size: 1.3rem;
  }

  .values-grid {
    gap: 1rem;
  }

  .value-card__content {
    padding: 1rem;
  }

  .services-highlight {
    grid-template-columns: 1fr;
  }

  .service-highlight-card {
    padding: 1.5rem;
  }

  .cta-banner {
    padding: 2rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .gold-text {
    font-size: 30px;
  }
}

/* ============================================================
       TABLET LANDSCAPE (992px AND BELOW)
============================================================ */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

/* ============================================================
       DESKTOP LARGE (1400px AND ABOVE)
============================================================ */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  .page-hero h1 {
    font-size: 4rem;
  }

  .stats-grid {
    gap: 3rem;
  }

  .stat-number {
    font-size: 3.2rem;
  }
}

/* ============================================================
       PRINT STYLES
============================================================ */
@media print {
  .site-header,
  .btn,
  .site-footer,
  .cta-banner {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .card,
  .team-card,
  .mv-card,
  .value-card,
  .service-highlight-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}