/* AI COACH.MY - GLOBAL STYLES */
/* Professional Corporate Theme */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0A2540;
  --navy-light: #1E3A5F;
  --gold: #D4AF37;
  --gold-light: #F4E4C1;
  --gray: #64748B;
  --gray-light: #F1F5F9;
  --white: #FFFFFF;
  --text: #1E293B;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  line-height: 1.7;
}

/* Layout */
section {
  padding: 100px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  padding: 16px 40px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: -apple-system, sans-serif;
  display: inline-block;
}

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

.btn-primary:hover {
  background: #C19A2E;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Accessibility */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}

.skip-to-content:focus {
  top: 0;
}

*:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Responsive Breakpoint */
@media (max-width: 968px) {
  section {
    padding: 60px 20px;
  }
}
