:root {
  --teal: #0A6E6E;
  --teal-light: #0E8A8A;
  --teal-dark: #054E4E;
  --warm: #F7F3EE;
  --warm-dark: #EDE6DC;
  --gold: #C4933F;
  --gold-light: #D4A84F;
  --gold-lighter: #E5C77F;
  --text: #2A2A2A;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
  --coral: #E87461;
  --sage: #8BAF8B;
  --lavender: #B8A9D4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--warm);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; }

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
  padding: 12px 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s;
}

nav.scrolled .nav-logo { color: var(--teal-dark); }

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: white;
  font-style: italic;
}

.nav-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  letter-spacing: 0.2px;
}

nav.scrolled .nav-links a { color: var(--text-light); }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); font-weight: 600; }

.nav-cta {
  background: var(--gold) !important;
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  transition: all 0.3s;
  position: absolute;
  left: 0;
}

nav.scrolled .mobile-menu-btn span { background: var(--teal-dark); }

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(165deg, var(--teal-dark) 0%, var(--teal) 40%, var(--teal-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(196, 147, 63, 0.08);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 40px 100px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(42px, 5vw, 64px);
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-text h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(196,147,63,0.3); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
}

.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 40px;
  color: white;
}

.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,147,63,0.2);
  border: 1px solid rgba(196,147,63,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-card p {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* NDIS BADGE */
.ndis-strip {
  background: var(--teal-dark);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ndis-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}

.ndis-strip-icon {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  flex-shrink: 0;
}

/* SECTIONS */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--teal-dark);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 50px;
}

/* ABOUT */
.about-section {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-values {
  display: grid;
  gap: 24px;
}

.about-value {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 16px;
  transition: all 0.3s;
}

.about-value:hover {
  background: var(--warm);
}

.about-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.about-value-icon.teal { background: rgba(10,110,110,0.1); }
.about-value-icon.gold { background: rgba(196,147,63,0.1); }
.about-value-icon.coral { background: rgba(232,116,97,0.1); }
.about-value-icon.sage { background: rgba(139,175,139,0.1); }

.about-value h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--teal-dark);
}

.about-value p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10,110,110,0.08);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--teal-dark);
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

.service-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* WHY SECTION */
.why-section {
  background: linear-gradient(165deg, var(--teal-dark), var(--teal));
  border-radius: 32px;
  margin: 0 40px;
  padding: 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(196,147,63,0.08);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.why-card {
  padding: 32px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.why-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.6;
}

/* PROCESS */
.process-section { background: white; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--teal));
  opacity: 0.2;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--teal);
  margin: 0 auto 20px;
  border: 2px solid var(--teal);
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}

.process-step:hover .process-step-number {
  background: var(--teal);
  color: white;
}

.process-step h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.process-step p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* REGISTRATION BANNER */
.reg-banner {
  background: var(--warm-dark);
  padding: 48px 40px;
}

.reg-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.reg-item {
  text-align: center;
}

.reg-item-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 600;
}

.reg-item-value {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--teal-dark);
}

/* CONTACT */
.contact-section {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 40px;
  color: var(--teal-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info > p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: grid;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(10,110,110,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 16px;
  color: var(--teal-dark);
  font-weight: 500;
}

.contact-form {
  background: var(--warm);
  border-radius: 24px;
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  background: white;
  transition: border-color 0.3s;
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* FOOTER */
footer {
  background: var(--teal-dark);
  color: white;
  padding: 80px 40px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 15px;
  opacity: 0.7;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.6;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: white; }

/* PAGE HEADER */
.page-header {
  background: linear-gradient(165deg, var(--teal-dark) 0%, var(--teal) 40%, var(--teal-light) 100%);
  padding: 160px 40px 80px;
  text-align: center;
  color: white;
}

.page-header h1 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 16px;
  color: white;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb a:hover { opacity: 1; }

.breadcrumb span { opacity: 0.6; }

/* CONTENT SECTIONS */
.content-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-section.white { background: white; }
.content-section.warm { background: var(--warm); }
.content-section.warm-dark { background: var(--warm-dark); }

.content-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--teal-dark);
  margin-bottom: 24px;
}

.content-section h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--teal-dark);
  margin-bottom: 16px;
  margin-top: 32px;
}

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.content-section ul, .content-section ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

.content-section li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: var(--teal-dark);
  transition: all 0.3s;
}

.faq-question:hover {
  background: var(--warm);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--text-light);
  line-height: 1.8;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.06);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--teal-dark);
}

.blog-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-light);
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Scroll reveal helper */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Interactive Features */
.service-card {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(10,110,110,0.12);
}

.about-value {
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-value:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.why-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(255,255,255,0.15);
}

.process-step {
  cursor: pointer;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-step:hover .process-step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(10,110,110,0.2);
}

/* Button hover enhancements */
.btn-primary, .btn-secondary {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(196,147,63,0.4);
}

.btn-secondary:hover {
  box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

/* Form input focus effects */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10,110,110,0.15);
}

/* Loading spinner for forms */
.form-submit.loading {
  position: relative;
  color: transparent;
}

.form-submit.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Tooltip styles */
.tooltip {
  position: absolute;
  background: var(--teal-dark);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--teal-dark) transparent transparent transparent;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold);
  z-index: 9999;
  transition: width 0.1s;
}

/* Pulse animation for CTAs */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.nav-cta {
  animation: pulse 2s ease-in-out infinite;
}

/* Image fade-in for lazy loading */
img.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth transitions for all interactive elements */
a, button, .service-card, .about-value, .why-card {
  transition: all 0.3s ease;
}

/* Enhanced mobile interactions */
@media (max-width: 768px) {
  .service-card:active {
    transform: scale(0.98);
  }
  
  .btn-primary:active,
  .btn-secondary:active {
    transform: scale(0.95);
  }
}

/* TESTIMONIALS SECTION - REORGANIZED */
.testimonials-section {
  background: white;
  padding: 100px 40px;
  position: relative;
}

body.dark-mode .testimonials-section {
  background: var(--dark-surface);
}

.testimonials-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 32px;
}

.testimonial-card {
  min-width: 100%;
  background: var(--warm);
  padding: 48px 40px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 18px;
  color: var(--teal-dark);
  margin-bottom: 6px;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 14px;
  color: var(--text-light);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(10,110,110,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.testimonial-dot:hover {
  background: rgba(10,110,110,0.4);
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: var(--teal);
  width: 30px;
  border-radius: 5px;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid rgba(10,110,110,0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  color: var(--teal);
  font-size: 24px;
  font-weight: 300;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-arrow:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  box-shadow: 0 4px 15px rgba(10,110,110,0.3);
  transform: translateY(-50%) scale(1.05);
}

.testimonial-arrow.prev {
  left: -60px;
}

.testimonial-arrow.next {
  right: -60px;
}

@media (max-width: 1024px) {
  .testimonial-arrow.prev {
    left: 10px;
  }
  
  .testimonial-arrow.next {
    right: 10px;
  }
}

/* SOCIAL PROOF COUNTERS */
.social-proof-section {
  background: linear-gradient(165deg, var(--teal-dark), var(--teal));
  padding: 80px 40px;
  color: white;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.social-proof-item {
  text-align: center;
}

.social-proof-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 400;
}

.social-proof-label {
  font-size: 16px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-proof-icon {
  font-size: 32px;
  margin-bottom: 16px;
  opacity: 0.8;
}

/* RESOURCE LIBRARY */
.resource-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.resource-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.resource-card h3 {
  font-size: 22px;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.resource-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.resource-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.resource-download:hover {
  color: var(--teal-dark);
  gap: 12px;
}

/* NEWSLETTER SIGNUP */
.newsletter-section {
  background: var(--teal-dark);
  padding: 60px 40px;
  color: white;
  text-align: center;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 16px 20px;
  border: none;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
}

.newsletter-form button {
  padding: 16px 32px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ACCESSIBILITY TOOLS */
.accessibility-toolbar {
  display: none; /* Removed from left bottom corner per user request */
}


/* RTL SUPPORT FOR ARABIC */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
  direction: rtl;
}

[dir="rtl"] .about-grid,
[dir="rtl"] .contact-grid,
[dir="rtl"] .footer-grid {
  direction: rtl;
}

[dir="rtl"] .section-label::before {
  order: 2;
  margin-left: 8px;
  margin-right: 0;
}

[dir="rtl"] .breadcrumb {
  flex-direction: row-reverse;
}

[dir="rtl"] .testimonial-author {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .form-row {
  direction: rtl;
}


[dir="rtl"] .accessibility-toolbar {
  left: 20px;
  right: auto;
}

[dir="rtl"] .emergency-widget {
  right: 20px;
  left: auto;
}

[dir="rtl"] .chat-widget-container {
  left: 20px;
  right: auto;
}

[dir="rtl"] .chat-widget {
  left: 20px;
  right: auto;
}

@media (max-width: 768px) {
  [dir="rtl"] .accessibility-toolbar {
    left: 10px;
  }
  
  [dir="rtl"] .emergency-widget {
    right: 10px;
  }
  
  [dir="rtl"] .chat-widget-container {
    left: 10px;
  }
}

.accessibility-toggle {
  background: var(--gold);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.accessibility-toggle:hover {
  background: var(--gold-dark, #B0832F);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.accessibility-controls {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.accessibility-controls.active {
  display: flex;
}

.accessibility-btn {
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s;
  text-align: left;
  color: var(--text);
  font-weight: 500;
}

.accessibility-btn:hover {
  background: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.7);
  color: var(--teal-dark);
}

/* High contrast mode */
body.high-contrast {
  background: #000000;
  color: #FFFFFF;
}

body.high-contrast .section {
  background: #1a1a1a;
  color: #FFFFFF;
}

body.high-contrast a {
  color: #4A9EFF;
}

/* Text size controls */
body.large-text {
  font-size: 18px;
}

body.large-text h1 { font-size: 2.5em; }
body.large-text h2 { font-size: 2em; }
body.large-text h3 { font-size: 1.5em; }

body.extra-large-text {
  font-size: 22px;
}

body.extra-large-text h1 { font-size: 3em; }
body.extra-large-text h2 { font-size: 2.5em; }
body.extra-large-text h3 { font-size: 2em; }

/* SERVICE AREA MAP */
.service-area-section {
  background: white;
  padding: 80px 40px;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.service-areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-area-item {
  background: var(--warm);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.service-area-item:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-4px);
}

/* BOOKING WIDGET */
.booking-section {
  background: var(--warm);
  padding: 80px 40px;
  text-align: center;
}

.booking-widget {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.booking-button {
  display: inline-block;
  background: var(--teal);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  margin-top: 20px;
}

.booking-button:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10,110,110,0.3);
}

/* EMERGENCY CONTACT WIDGET */
.emergency-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9997;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .emergency-widget {
    bottom: 10px;
    left: 10px;
  }
  
  .accessibility-toolbar {
    bottom: 80px;
    left: 10px;
    min-width: 160px;
  }
}

.emergency-button {
  background: #E87461;
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(232,116,97,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  animation: pulse-emergency 2s ease-in-out infinite;
}

.emergency-button:hover {
  background: #d65a47;
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(232,116,97,0.6);
}

@keyframes pulse-emergency {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(232,116,97,0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(232,116,97,0.7);
  }
}

/* LIVE CHAT WIDGET STYLES */
.chat-widget-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9996;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(10,110,110,0.3);
  transition: all 0.3s;
  border: none;
}

.chat-toggle:hover {
  background: var(--teal-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(10,110,110,0.4);
}

.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 500px;
  max-height: calc(100vh - 120px);
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  z-index: 9995;
  overflow: hidden;
}


.chat-widget.active {
  display: flex;
}

.chat-header {
  background: var(--teal);
  color: white;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  font-size: 18px;
  margin: 0;
  color: white;
}

.chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.chat-close:hover {
  background: rgba(255,255,255,0.2);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--warm);
}


.chat-message {
  display: flex;
  gap: 10px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message.user {
  flex-direction: row-reverse;
}

.message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.chat-message.user .message-avatar {
  background: var(--gold);
}

.message-content {
  max-width: 70%;
  padding: 12px 16px;
  border-radius: 12px;
  background: white;
  color: var(--text);
}


.chat-message.user .message-content {
  background: var(--teal);
  color: white;
}

.chat-input-area {
  padding: 16px;
  border-top: 1px solid rgba(0,0,0,0.1);
  background: white;
  display: flex;
  gap: 8px;
}


.chat-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  resize: none;
  max-height: 100px;
}


.chat-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
  flex-shrink: 0;
}

.chat-send:hover {
  background: var(--teal-dark);
  transform: scale(1.05);
}

.chat-typing {
  display: none;
  padding: 12px 16px;
  color: var(--text-light);
  font-size: 13px;
  font-style: italic;
}

.chat-typing.active {
  display: block;
}

/* CHAT FAQ BUTTONS */
.chat-faq-buttons {
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--warm);
  max-height: 150px;
  overflow-y: auto;
}

.chat-faq-buttons::-webkit-scrollbar {
  width: 4px;
}

.chat-faq-buttons::-webkit-scrollbar-track {
  background: transparent;
}

.chat-faq-buttons::-webkit-scrollbar-thumb {
  background: rgba(10,110,110,0.2);
  border-radius: 2px;
}

.chat-faq-buttons::-webkit-scrollbar-thumb:hover {
  background: rgba(10,110,110,0.4);
}

.chat-faq-btn {
  padding: 7px 14px;
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 18px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.chat-faq-btn:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(10,110,110,0.2);
}


@media (max-width: 768px) {
  .chat-widget {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 80px;
    height: calc(100vh - 100px);
  }
}

/* RESPONSIVE UPDATES */
@media (max-width: 1024px) {
  .social-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .social-proof-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  
  .accessibility-toolbar {
    bottom: 80px;
    left: 10px;
    min-width: 160px;
    max-width: 180px;
    padding: 10px;
  }
  
  .emergency-widget {
    bottom: 10px;
    left: 10px;
  }
  
  .emergency-button {
    padding: 12px 18px;
    font-size: 14px;
  }
  
  .chat-widget-container {
    bottom: 20px;
    right: 10px;
  }
  
  .chat-widget {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 90px;
    height: calc(100vh - 110px);
  }
  
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links.active a {
    color: var(--text);
  }
  .mobile-menu-btn { display: block; }
  .hero-content { padding: 120px 24px 80px; }
  .section { padding: 70px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-section { margin: 0 16px; padding: 50px 24px; border-radius: 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .ndis-strip { gap: 20px; padding: 16px 24px; }
  .reg-inner { gap: 30px; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-header { padding: 140px 24px 60px; }
  .content-section { padding: 60px 24px; }
  
  .testimonials-section {
    padding: 60px 24px;
  }
  
  .testimonial-card {
    padding: 32px 24px;
  }
  
  .testimonial-text {
    font-size: 16px;
  }
  
  .testimonial-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .testimonial-arrow.prev {
    left: 5px;
  }
  
  .testimonial-arrow.next {
    right: 5px;
  }
}
