1-on-1 & Small Group Training - Gameday Soccer Academy
body {
font-family: 'Inter', sans-serif;
padding-bottom: 80px; /* Add padding to prevent content from being hidden by the bottom bar */
}
/* Custom colors to match the brand identity */
.bg-gsa-navy, .bg-navy-blue { background-color: #0A2240; }
.text-gsa-navy, .text-navy-blue { color: #0A2240; }
.border-gsa-navy { border-color: #0A2240; }
.bg-gsa-green { background-color: #10B981; }
.text-gsa-green { color: #10B981; }
.hover\:bg-gsa-green-dark:hover { background-color: #059669; }
.bg-gsa-light-gray { background-color: #F3F4F6; }
.ring-gsa-green { --tw-ring-color: #10B981; }
.focus\:ring-gsa-green:focus {
--tw-ring-opacity: 1;
box-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}
/* CTA Button Style from new registration form */
.cta-button {
background-color: #10B981; /* gsa-green */
color: white;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: #059669; /* gsa-green-dark */
}
Accelerate Your Development
Our 1-on-1 and Small Group sessions are the ultimate way to get personalized coaching, target specific goals, and see rapid, measurable improvement in your game.
While team training is essential, nothing beats the focused attention of a dedicated coach. Our personalized sessions eliminate distractions and are 100% tailored to the player's specific needs. We identify key areas for growth, design a custom plan, and provide the direct, expert feedback needed to correct flaws and build on strengths.
Is This Program Right for Your Child?
Our personalized training is perfect for players who are:
Highly Motivated
Players with a strong desire to improve and a willingness to work hard to achieve their goals.
Preparing for Trials
Players looking to gain a competitive edge before trials for representative, SAP, or academy teams.
Needing Targeted Support
Players who need to focus on a specific technical skill, build confidence, or catch up after an injury.
Training Packages
Choose the package that best suits your development goals. All sessions are 60 minutes.
Single Session
Perfect for a tune-up or to target a specific issue.
// Script to handle Formspree submission
const form = document.getElementById('registration-form');
const formStatus = document.getElementById('form-status');
async function handleSubmit(event) {
event.preventDefault();
const data = new FormData(event.target);
try {
const response = await fetch(form.action, {
method: form.method,
body: data,
headers: {
'Accept': 'application/json'
}
});
if (response.ok) {
formStatus.innerHTML = "Thanks for your enquiry! We'll be in touch soon to confirm details.";
formStatus.className = 'block mt-4 text-center p-4 rounded-lg bg-green-100 text-green-800';
form.reset();
} else {
const responseData = await response.json();
if (Object.hasOwn(responseData, 'errors')) {
formStatus.innerHTML = responseData["errors"].map(error => error["message"]).join(", ");
} else {
formStatus.innerHTML = "Oops! There was a problem submitting your form.";
}
formStatus.className = 'block mt-4 text-center p-4 rounded-lg bg-red-100 text-red-800';
}
} catch (error) {
formStatus.innerHTML = "Oops! There was a problem submitting your form.";
formStatus.className = 'block mt-4 text-center p-4 rounded-lg bg-red-100 text-red-800';
}
}
form.addEventListener("submit", handleSubmit)
Easy drills to practice on your own
Manage Cookie Consent
We use cookies to optimize our website and our service.
Functional
Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.