/* 
  SGC Modern Design System
  Theme: Professional, Inclusive, Trustworthy
  Colors: Deep Forest, Golden Oak, Soft Pearl, Slate
*/

:root {
  --primary: #0f4a2c;
  --primary-light: #1a7a4a;
  --primary-ultra-light: #e8f5ee;
  --secondary: #f0a500;
  --secondary-dark: #854d0e;
  --accent: #3b82f6;
  --text-main: #132218;
  --text-muted: #4a6455;
  --bg-soft: #faf8f4;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.85);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 50px rgba(26, 122, 74, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-soft);
}

#sgc-wrap {
  font-family: 'Inter', 'DM Sans', sans-serif;
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

#sgc-wrap a {
  text-decoration: none;
  transition: var(--transition);
}

/* MOBILE MENU */
.sgc-mobile-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0f4a2c;
  padding: 14px 5%;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.sgc-mobile-brand {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.sgc-mobile-toggle {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}

.sgc-mobile-menu {
  display: none;
  background: #0a341f;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.sgc-mobile-menu.active {
  display: block;
}

.sgc-mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.92);
  padding: 13px 5%;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
}

.sgc-mobile-menu a:hover {
  background: rgba(255,255,255,0.08);
}

/* HERO SECTION */
.sgc-hero {
  background: linear-gradient(145deg, #09331d 0%, #0f4a2c 50%, #1a7a4a 100%);
  padding: 80px 5% 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.sgc-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  animation: rotate 30s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sgc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.sgc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sgc-h1 {
  font-size: clamp(38px, 6vw, 72px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sgc-h1 em {
  font-style: italic;
  color: var(--secondary);
  position: relative;
}

.sgc-hero-p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.sgc-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.sgc-btn-w {
  background: var(--white);
  color: var(--primary);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sgc-btn-w:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(240, 165, 0, 0.3);
}

.sgc-btn-g {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(5px);
}

.sgc-btn-g:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.sgc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.sgc-stat {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}

.sgc-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.sgc-stat-n {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--secondary);
}

.sgc-stat-l {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 8px;
}

/* TRUST BAR */
.sgc-trust {
  background: var(--white);
  padding: 25px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(26, 122, 74, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.sgc-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  opacity: 0.8;
}

/* SECTIONS COMMON */
.sgc-section {
  padding: 100px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.sgc-section-tag {
  display: inline-block;
  background: var(--primary-ultra-light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.sgc-h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.sgc-sub {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 40px;
}

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

.sgc-center .sgc-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ABOUT SECTION */
.sgc-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sgc-logo-box {
  background: linear-gradient(135deg, var(--white) 0%, #f1f8f4 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
}

.sgc-logo-box::after {
  content: '';
  position: absolute;
  inset: -15px;
  border: 2px solid var(--primary-ultra-light);
  border-radius: calc(var(--radius-lg) + 15px);
  z-index: -1;
}

.sgc-logo-box img {
  width: 100%;
  max-width: 300px;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.05));
}

.sgc-values {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sgc-val {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: var(--transition);
}

.sgc-val:hover {
  background: var(--primary-ultra-light);
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.sgc-val-dot {
  width: 48px;
  height: 48px;
  background: var(--primary-ultra-light);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.sgc-val-t strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-main);
  font-weight: 700;
}

.sgc-val-t span {
  font-size: 15px;
  color: var(--text-muted);
}

/* DARK SECTION */
.sgc-dark {
  background: #0f2d1c;
  color: var(--white);
  padding: 100px 5%;
}

.sgc-dark .sgc-section-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}

.sgc-dark .sgc-h2 {
  color: var(--white);
}

.sgc-dark .sgc-sub {
  color: rgba(255,255,255,0.7);
}

.sgc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.sgc-svc {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 35px;
  transition: var(--transition);
  height: 100%;
}

.sgc-svc:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sgc-svc-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--secondary);
}

.sgc-svc h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.sgc-svc p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* SERVE SECTION (Cards) */
.sgc-serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.sgc-serve {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 8px solid var(--primary);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.sgc-serve:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.sgc-serve.blue { border-top-color: var(--accent); }
.sgc-serve.gold { border-top-color: var(--secondary); }

.sgc-serve h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.sgc-serve h3.green { color: var(--primary); }
.sgc-serve h3.blue { color: #1e40af; }
.sgc-serve h3.gold { color: #854d0e; }

.sgc-serve p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
}

.sgc-serve ul {
  list-style: none;
  margin-top: auto;
}

.sgc-serve li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: 500;
}

.sgc-serve li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 900;
}

/* QUIZ WRAP */
.sgc-quiz-wrap {
  max-width: 800px;
  margin: 50px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.sgc-quiz-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.sgc-quiz-q {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 30px;
  line-height: 1.4;
}

.sgc-quiz-opts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sgc-quiz-opt {
  padding: 20px 30px;
  border: 2px solid #edeff2;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
  background: var(--white);
  color: var(--text-main);
  text-align: left;
  transition: var(--transition);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.sgc-quiz-opt:hover {
  border-color: var(--primary);
  background: var(--primary-ultra-light);
  color: var(--primary);
  transform: translateX(5px);
}

.sgc-quiz-opt::after {
  content: '○';
  font-size: 20px;
  opacity: 0.3;
}

.sgc-quiz-opt:hover::after {
  content: '●';
  opacity: 1;
}

.sgc-quiz-opt.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.sgc-quiz-opt.active::after {
  content: '✓';
  opacity: 1;
}

.sgc-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 35px;
}

.sgc-dot {
  height: 6px;
  flex: 1;
  background: #eee;
  border-radius: 10px;
  transition: var(--transition);
}

.sgc-dot.done {
  background: var(--primary);
}

/* CENTRE HERO */
.sgc-centre-hero {
  background: linear-gradient(135deg, #054d2a 0%, #1a7a4a 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.sgc-centre-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 40px 40px;
}

.sgc-centre-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.sgc-open-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: #132218;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(240, 165, 0, 0.2);
}

/* ACTIVITIES GRID */
.sgc-acts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.sgc-ac {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}

.sgc-ac:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.sgc-ac-head {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sgc-ac-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
  box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

.sgc-ac-head h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
}

.sgc-ac-head span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.sgc-ac-body {
  padding: 0 30px 30px;
}

.sgc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sgc-tag {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* NDIS REGISTERED BANNER */
.sgc-no-ndis {
  background: linear-gradient(135deg, var(--secondary) 0%, #ffc107 100%);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  box-shadow: 0 20px 40px rgba(240, 165, 0, 0.15);
}

.sgc-no-ndis h3 {
  font-size: 28px;
  font-weight: 800;
  color: #132218;
  margin-bottom: 10px;
}

.sgc-no-ndis p {
  color: rgba(19, 34, 24, 0.8);
  font-size: 18px;
  line-height: 1.6;
}

.sgc-no-ndis-btn {
  margin-left: auto;
  background: #132218;
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* TIMETABLE */
.sgc-tt {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sgc-tt th {
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sgc-tt td {
  padding: 18px 20px;
  border-bottom: 1px solid #eff2f5;
  font-size: 15px;
  background: var(--white);
}

.sgc-tt tr:last-child td { border-bottom: none; }
.sgc-tt tr:nth-child(even) td { background: #f9fbfd; }

.sgc-tbadge {
  background: var(--primary-ultra-light);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

/* HIRE GRID */
.sgc-hire {
  background: linear-gradient(135deg, #162a45 0%, #1e40af 100%);
  padding: 100px 5%;
  color: var(--white);
}

.sgc-hire-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.sgc-hire-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sgc-hire-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
}

.sgc-hire-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.sgc-hire-card h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sgc-hire-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

/* CULTURE */
.sgc-cultural {
  background: linear-gradient(135deg, #0a3620 0%, #0f4a2c 100%);
  padding: 100px 5%;
  color: var(--white);
}

.sgc-check-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sgc-check {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.sgc-check-dot {
  background: var(--secondary);
  color: #132218;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 4px;
}

.sgc-check-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
}

/* STORIES */
.sgc-story {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border-left: 10px solid var(--primary);
  position: relative;
}

.sgc-story-q {
  font-size: 72px;
  color: var(--primary-ultra-light);
  line-height: 0.5;
  font-family: serif;
  margin-bottom: 20px;
}

/* LANG FLAGS */
.sgc-lang-flag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 25px;
  transition: var(--transition);
  min-width: 120px;
}

.sgc-lang-flag:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* LANG SECTION STYLES */
.sgc-lang-section {
  background: linear-gradient(135deg, #09331d 0%, #1a7a4a 100%);
  padding: 80px 5%;
  text-align: center;
  color: var(--white);
}

.sgc-lang-flags {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.sgc-lang-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sgc-lang-flag .f { font-size: 32px; }
.sgc-lang-flag .n { font-weight: 700; font-size: 14px; }
.sgc-lang-flag .nat { font-size: 12px; opacity: 0.7; font-style: italic; }

.sgc-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 1000;
}

.sgc-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* BLOG */
.sgc-blog {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.sgc-blog:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.sgc-blog-img {
  height: 180px;
  background: var(--primary-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.sgc-fg {
  margin-bottom: 25px;
}

.sgc-fg label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.sgc-fg input, .sgc-fg select, .sgc-fg textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  background: #ffffff;
  transition: var(--transition);
  color: var(--text-main);
}


.sgc-fg input:focus, .sgc-fg select:focus, .sgc-fg textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 122, 74, 0.1);
  outline: none;
}

.sgc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sgc-fg.full {
  grid-column: span 2;
}

@media (max-width: 600px) {
  .sgc-form-grid {
    grid-template-columns: 1fr;
  }
  .sgc-fg.full {
    grid-column: span 1;
  }
}

.sgc-submit {
  width: 100%;
  margin-top: 10px;
  padding: 20px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(26, 122, 74, 0.2);
  transition: var(--transition);
}

.sgc-submit:hover {
  background: #15623b;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(26, 122, 74, 0.3);
}

/* CONTACT */
.sgc-contact-box {
  background: linear-gradient(135deg, var(--primary) 0%, #1a7a4a 100%);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-hover);
}

.sgc-contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  font-size: 20px;
}

/* FOOTER */
.sgc-footer {
  background: #091a11;
  color: rgba(255,255,255,0.6);
  padding: 80px 5% 40px;
}

.sgc-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto 60px;
}

.sgc-footer-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  background: white; /* Added slightly for visibility if logo is transparent/dark */
  padding: 10px;
  border-radius: 8px;
}

.sgc-footer-logo span {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.sgc-footer-col h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sgc-footer-col a {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}

.sgc-footer-col a:hover {
  color: var(--white);
  padding-left: 5px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .sgc-grid2, .sgc-hire-grid, .sgc-cultural-grid, .sgc-contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sgc-hero { padding: 100px 5% 60px; }
  .sgc-h1 { font-size: 42px; }
  .sgc-logo-box { padding: 40px; }
}

@media(max-width: 600px) {
  .sgc-mobile-nav { display: flex; }
  .sgc-btns { flex-direction: column; }
  .sgc-btn-w, .sgc-btn-g { width: 100%; justify-content: center; }
  .sgc-footer-top { grid-template-columns: 1fr; }
  .sgc-no-ndis { padding: 30px; }
  .sgc-no-ndis-btn { margin-left: 0; width: 100%; text-align: center; margin-top: 20px;}
}
