@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/SpaceGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/SpaceGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/SpaceGrotesk-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/SpaceGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* DM Sans */
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
    --primary: #FF3B5C;
    --primary-dark: #E91E63;
    --secondary: #FF6B35;
    --accent: #FFD23F;
    --dark: #0A0E27;
    --dark-2: #1A1F3A;
    --light: #F5F7FA;
    --light-2: #E8ECF1;
    --white: #FFFFFF;
    --text: #1A1F3A;
    --text-light: #6B7280;
    
    --gradient-1: linear-gradient(135deg, #FF3B5C 0%, #FF6B35 50%, #FFD23F 100%);
    --gradient-2: linear-gradient(45deg, #0A0E27 0%, #1A1F3A 100%);
    --gradient-3: linear-gradient(180deg, rgba(255, 59, 92, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 30px 80px rgba(255, 59, 92, 0.25);
    --shadow-glow: 0 0 40px rgba(255, 59, 92, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header - Unique Asymmetric Design */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
    border-bottom: 2px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
}

.navbar {
    padding: 1.5rem 0;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(0deg) scale(1.05);
}

.logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(255, 59, 92, 0.2));
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--gradient-3);
    transform: translateY(-2px);
}

.nav-link.active::before {
    opacity: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero - Bold Asymmetric Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-2);
    margin-top: 0;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 59, 92, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(255, 59, 92, 0.3) 50%, rgba(255, 107, 53, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    padding: 4rem 3rem;
    text-align: left;
    color: var(--white);
}

.hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 2rem;
    line-height: 0.95;
    letter-spacing: -3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 210, 63, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: rotate(-1deg);
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 60px rgba(255, 59, 92, 0.3);
}

.hero-content h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: 0;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    padding-left: 2rem;
    border-left: 4px solid var(--accent);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) rotate(-1deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(-1deg);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Gallery - Creative Masonry Style */
.gallery-section {
    padding: 8rem 3rem;
    background: var(--light);
    position: relative;
}

.gallery-section::before {
    content: 'CRICKET';
    position: absolute;
    top: 2rem;
    left: 3rem;
    font-size: 12rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255, 59, 92, 0.03);
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: 20px;
}

.gallery {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.gallery-1 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.3) contrast(1.1);
    border: 3px solid transparent;
    background: var(--gradient-1);
    padding: 3px;
    box-sizing: border-box;
}

.gallery img:hover {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    filter: grayscale(0) contrast(1.2) brightness(1.1);
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-strong);
}

/* Coaches Section - Tilted Cards */
.coaches-section {
    padding: 8rem 3rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.coaches-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient-3);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.coaches-section .gallery {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.coaches-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 4rem;
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    transform: rotate(-0.5deg);
    box-shadow: var(--shadow-medium);
}

.coaches-content p {
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 3rem;
    color: var(--text);
    font-weight: 400;
}

/* Buttons - Bold & Unique */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow-strong);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: var(--shadow-glow);
}

.btn-submit {
    background: var(--gradient-1);
    color: var(--white);
    width: 100%;
    padding: 1.5rem;
    font-size: 1.2rem;
    box-shadow: var(--shadow-strong);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Statistics - Creative Grid */
.stats-section {
    padding: 8rem 3rem;
    background: var(--gradient-2);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 59, 92, 0.03) 10px, rgba(255, 59, 92, 0.03) 20px);
    z-index: 0;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: rotate(45deg);
}

.stat-item:hover::before {
    opacity: 0.1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
}

.stat-number {
    font-size: 5rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -3px;
    position: relative;
    z-index: 1;
}

.stat-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Testimonials - Unique Card Design */
.testimonial-section {
    padding: 8rem 3rem;
    background: var(--light);
    position: relative;
}

.testimonial {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 4rem;
    background: var(--white);
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    position: relative;
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
    transform: rotate(0.5deg);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 50px;
    font-size: 12rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    z-index: 0;
}

.testimonial:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.stars {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(255, 210, 63, 0.3));
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 3rem;
    font-style: italic;
    color: var(--text);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Section */
.services-section {
    padding: 8rem 3rem;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: 'SERVICES';
    position: absolute;
    top: 50%;
    right: -10%;
    font-size: 15rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255, 59, 92, 0.03);
    transform: rotate(90deg);
    text-transform: uppercase;
    letter-spacing: 30px;
}

.services-section h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transform: rotate(-1deg);
}

.services-section h2 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2;
    max-width: 1000px;
    margin: 0 auto 3rem;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.services-note {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: var(--text);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.services-section .btn {
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    padding: 8rem 3rem;
    background: var(--gradient-3);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 59, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 5rem 4rem;
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-strong);
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease;
}

.contact-container:hover {
    transform: rotate(0deg);
}

.contact-container h2 {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    border: 3px solid var(--light-2);
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: var(--white);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 59, 92, 0.15);
}

.success-message {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: var(--shadow-strong);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    animation: slideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-message.hidden {
    display: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--gradient-2);
    color: var(--white);
    padding: 6rem 3rem 3rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(255, 210, 63, 0.3));
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.footer-tagline {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-top: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    stroke-width: 2;
    color: var(--accent);
    margin-top: 2px;
}

.contact-item a,
.contact-item span {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--accent);
    font-weight: 900;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 2.5rem;
    color: var(--accent);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Us Page Styles */
.about-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-2);
    margin-top: 90px;
    padding-top: 0;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 59, 92, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.about-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(255, 59, 92, 0.3) 50%, rgba(255, 107, 53, 0.2) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    padding: 4rem 3rem;
    text-align: left;
    color: var(--white);
}

.about-hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 2rem;
    line-height: 0.95;
    letter-spacing: -3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 210, 63, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: rotate(-1deg);
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-hero-content h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin-left: 0;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    padding-left: 2rem;
    border-left: 4px solid var(--accent);
}

/* Story Section */
.story-section {
    padding: 8rem 3rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: 'OUR STORY';
    position: absolute;
    top: 2rem;
    right: -5%;
    font-size: 15rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255, 59, 92, 0.03);
    transform: rotate(90deg);
    text-transform: uppercase;
    letter-spacing: 30px;
    z-index: 0;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-content {
    background: var(--white);
    padding: 5rem 4rem;
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    transform: rotate(0.5deg);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.story-content:hover {
    transform: rotate(0deg);
}

.story-paragraph {
    font-size: 1.3rem;
    line-height: 2.2;
    margin-bottom: 2rem;
    color: var(--text);
    font-weight: 400;
    text-align: justify;
}

.story-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 3rem 0;
    padding: 2rem;
    border: 3px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transform: rotate(-0.5deg);
}

.story-list {
    list-style: none;
    margin: 2.5rem 0;
    padding-left: 0;
}

.story-list li {
    font-size: 1.3rem;
    line-height: 2.2;
    margin-bottom: 1.5rem;
    color: var(--text);
    padding-left: 3rem;
    position: relative;
}

.story-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.5rem;
    transform: rotate(-45deg);
}

.story-mission {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 2;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 3rem 0;
    padding: 2.5rem;
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transform: rotate(0.5deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 8rem 3rem;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 59, 92, 0.05) 10px, rgba(255, 59, 92, 0.05) 20px);
    z-index: 0;
}

.cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.cta-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(255, 59, 92, 0.4) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.cta-content:hover {
    transform: rotate(0deg);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 3rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content .btn {
    font-size: 1.3rem;
    padding: 1.5rem 4rem;
}

/* Services & Prices Page Styles */
.services-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-2);
    margin-top: 90px;
    padding-top: 0;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 59, 92, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.services-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.services-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.services-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(255, 59, 92, 0.3) 50%, rgba(255, 107, 53, 0.2) 100%);
}

.services-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    padding: 4rem 3rem;
    text-align: left;
    color: var(--white);
}

.services-hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 2rem;
    line-height: 0.95;
    letter-spacing: -3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 210, 63, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: rotate(-1deg);
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-hero-content h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin-left: 0;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    padding-left: 2rem;
    border-left: 4px solid var(--accent);
}

/* Services Grid Section */
.services-grid-section {
    padding: 8rem 3rem;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.services-grid-section::before {
    content: 'SERVICES';
    position: absolute;
    top: 2rem;
    left: -5%;
    font-size: 15rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255, 59, 92, 0.03);
    transform: rotate(-90deg);
    text-transform: uppercase;
    letter-spacing: 30px;
    z-index: 0;
}

.services-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transform: rotate(0deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    transition: left 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px) rotate(0.5deg);
    box-shadow: var(--shadow-strong);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
}

.service-card-header h3 {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.service-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-price {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gradient-3);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease;
}

.service-card:hover .service-price {
    transform: rotate(0deg);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.price-duration {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 2rem;
    font-weight: 400;
}

.service-includes {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-2);
}

.includes-title {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.includes-list {
    list-style: none;
    padding-left: 0;
}

.includes-list li {
    font-size: 1rem;
    line-height: 2;
    color: var(--text);
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Our Trainers Page Styles */
.trainers-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-2);
    margin-top: 90px;
    padding-top: 0;
}

.trainers-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 59, 92, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.trainers-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.trainers-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.trainers-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.trainers-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(255, 59, 92, 0.3) 50%, rgba(255, 107, 53, 0.2) 100%);
}

.trainers-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    padding: 4rem 3rem;
    text-align: left;
    color: var(--white);
}

.trainers-hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 2rem;
    line-height: 0.95;
    letter-spacing: -3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 210, 63, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: rotate(-1deg);
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.trainers-hero-content h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin-left: 0;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    padding-left: 2rem;
    border-left: 4px solid var(--accent);
}

/* Trainers Grid Section */
.trainers-grid-section {
    padding: 8rem 3rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.trainers-grid-section::before {
    content: 'COACHES';
    position: absolute;
    top: 2rem;
    right: -5%;
    font-size: 15rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255, 59, 92, 0.03);
    transform: rotate(90deg);
    text-transform: uppercase;
    letter-spacing: 30px;
    z-index: 0;
}

.trainers-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.trainer-card {
    background: var(--white);
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transform: rotate(0deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.trainer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    transition: left 0.5s ease;
    z-index: 0;
}

.trainer-card:hover::before {
    left: 0;
}

.trainer-card:hover {
    transform: translateY(-10px) rotate(0.5deg);
    box-shadow: var(--shadow-strong);
}

.trainer-card > * {
    position: relative;
    z-index: 1;
}

.trainer-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transition: clip-path 0.5s ease;
}

.trainer-card:hover .trainer-image {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) contrast(1.1);
    transition: all 0.5s ease;
}

.trainer-card:hover .trainer-image img {
    filter: grayscale(0) contrast(1.2) brightness(1.1);
    transform: scale(1.05);
}

.trainer-content {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trainer-content h3 {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.trainer-role {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
}

.trainer-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 2rem;
    font-weight: 400;
}

.trainer-achievements {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--gradient-3);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease;
}

.trainer-card:hover .trainer-achievements {
    transform: rotate(0deg);
}

.achievements-title {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.achievements-list {
    list-style: none;
    padding-left: 0;
}

.achievements-list li {
    font-size: 1rem;
    line-height: 2;
    color: var(--text);
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.achievements-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
    transform: rotate(-45deg);
}

.trainer-focus {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
    font-weight: 600;
    font-style: italic;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 2px solid var(--light-2);
}

/* Contacts Page Styles */
.contact-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-2);
    margin-top: 90px;
    padding-top: 0;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 59, 92, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.contact-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(255, 59, 92, 0.3) 50%, rgba(255, 107, 53, 0.2) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    padding: 4rem 3rem;
    text-align: left;
    color: var(--white);
}

.contact-hero-content h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 2rem;
    line-height: 0.95;
    letter-spacing: -3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 210, 63, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: rotate(-1deg);
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-hero-content h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin-left: 0;
    margin-bottom: 2rem;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    padding-left: 2rem;
    border-left: 4px solid var(--accent);
}

.contact-hero-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin-left: 0;
    margin-bottom: 3rem;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    padding-left: 2rem;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    padding: 3rem;
    transform: rotate(0.5deg);
    transition: transform 0.3s ease;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.contact-info-box:hover {
    transform: rotate(0deg);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-info-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    stroke-width: 2;
    color: var(--accent);
    margin-top: 2px;
}

.contact-info-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-info-item a,
.contact-info-item span {
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--accent);
}

/* Contact Form Section */
.contact-form-section {
    padding: 8rem 3rem;
    background: var(--gradient-3);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 59, 92, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 5rem 4rem;
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-strong);
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.contact-form-container:hover {
    transform: rotate(0deg);
}

.contact-form-container h2 {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -2px;
}

/* Terms and Conditions Page Styles */
.terms-section {
    padding: 8rem 3rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.terms-section::before {
    content: 'TERMS';
    position: absolute;
    top: 2rem;
    right: -5%;
    font-size: 15rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255, 59, 92, 0.03);
    transform: rotate(90deg);
    text-transform: uppercase;
    letter-spacing: 30px;
    z-index: 0;
}

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.terms-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 3rem;
    background: var(--white);
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transform: rotate(-0.5deg);
    box-shadow: var(--shadow-medium);
}

.terms-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.terms-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.terms-intro {
    background: var(--gradient-3);
    padding: 3rem;
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transform: rotate(0.5deg);
    margin-bottom: 4rem;
    box-shadow: var(--shadow-medium);
}

.terms-intro p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.terms-intro p:last-child {
    margin-bottom: 0;
}

.terms-warning {
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.terms-item {
    background: var(--white);
    padding: 3rem;
    border: 4px solid;
    border-image: var(--gradient-1);
    border-image-slice: 1;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.terms-item:hover {
    transform: rotate(0.5deg);
}

.terms-item h3 {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.terms-item p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text);
    margin-bottom: 1rem;
}

.terms-item p:last-child {
    margin-bottom: 0;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.terms-list li {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text);
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.terms-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
    transform: rotate(-45deg);
}

.terms-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-item a:hover {
    color: var(--secondary);
}

.company-info {
    margin-top: 1.5rem;
    padding: 2rem;
    background: var(--gradient-3);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transform: rotate(-0.5deg);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item strong {
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
}

.info-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary);
}

.privacy-link {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
}

.privacy-link a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link a:hover {
    color: var(--secondary);
}

/* Privacy Policy Page Styles */
.privacy-section::before {
    content: 'PRIVACY';
}

.terms-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-item h4:first-of-type {
    margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
    
    .hero-content {
        padding: 3rem 2rem;
    }
    
    .gallery-section,
    .coaches-section,
    .stats-section,
    .testimonial-section,
    .services-section,
    .contact-section {
        padding: 6rem 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    .header {
        border-bottom: 2px solid;
        border-image: var(--gradient-1);
        border-image-slice: 1;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 4rem;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 1rem 2rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 120px;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .hero-content h2 {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid var(--accent);
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery img {
        height: 350px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .testimonial {
        padding: 3rem 2rem;
    }
    
    .contact-container {
        padding: 3rem 2rem;
    }
    
    .coaches-content {
        padding: 3rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
    }
    
    .gallery-section,
    .coaches-section,
    .stats-section,
    .testimonial-section,
    .services-section,
    .contact-section {
        padding: 4rem 1.5rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .footer {
        padding: 4rem 1.5rem 2rem;
    }
    
    .services-section::before,
    .gallery-section::before {
        display: none;
    }
    
    .about-hero {
        min-height: 80vh;
        margin-top: 90px;
    }
    
    .about-hero-content {
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .about-hero-content h2 {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid var(--accent);
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .story-section {
        padding: 6rem 2rem;
    }
    
    .story-content {
        padding: 3rem 2rem;
    }
    
    .story-paragraph {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .story-highlight {
        font-size: 1.4rem;
        padding: 1.5rem;
    }
    
    .story-mission {
        font-size: 1.3rem;
        padding: 2rem 1.5rem;
    }
    
    .story-list li {
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 6rem 2rem;
        min-height: 70vh;
    }
    
    .cta-content {
        padding: 3rem 2rem;
    }
    
    .cta-image {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .story-section::before {
        display: none;
    }
    
    .services-hero {
        min-height: 80vh;
        margin-top: 90px;
    }
    
    .services-hero-content {
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .services-hero-content h2 {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid var(--accent);
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .services-grid-section {
        padding: 6rem 2rem;
    }
    
    .services-grid-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
    }
    
    .service-card-header h3 {
        font-size: 1.75rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .services-grid-section::before {
        display: none;
    }
    
    .trainers-hero {
        min-height: 80vh;
        margin-top: 90px;
    }
    
    .trainers-hero-content {
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .trainers-hero-content h2 {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid var(--accent);
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .trainers-grid-section {
        padding: 6rem 2rem;
    }
    
    .trainers-grid-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .trainer-card {
        flex-direction: column;
    }
    
    .trainer-image {
        height: 350px;
    }
    
    .trainer-content {
        padding: 2.5rem 2rem;
    }
    
    .trainer-content h3 {
        font-size: 1.75rem;
    }
    
    .trainers-grid-section::before {
        display: none;
    }
    
    .contact-hero {
        min-height: 80vh;
        margin-top: 90px;
    }
    
    .contact-hero-content {
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .contact-hero-content h2 {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid var(--accent);
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .contact-hero-text {
        padding-left: 0;
        text-align: left;
    }
    
    .contact-info-box {
        padding: 2.5rem 2rem;
    }
    
    .contact-form-section {
        padding: 6rem 2rem;
    }
    
    .contact-form-container {
        padding: 3rem 2rem;
    }
    
    .contact-form-container h2 {
        font-size: 2.5rem;
    }
    
    .terms-section {
        padding: 6rem 2rem;
        margin-top: 90px;
    }
    
    .terms-header {
        padding: 3rem 2rem;
    }
    
    .terms-intro {
        padding: 2.5rem 2rem;
    }
    
    .terms-intro p {
        font-size: 1.1rem;
    }
    
    .terms-item {
        padding: 2.5rem 2rem;
    }
    
    .terms-item h3 {
        font-size: 1.5rem;
    }
    
    .terms-item p,
    .terms-list li {
        font-size: 1rem;
    }
    
    .company-info {
        padding: 1.5rem;
    }
    
    .info-item {
        font-size: 1rem;
    }
    
    .terms-section::before {
        display: none;
    }
    
    .terms-item h4 {
        font-size: 1.2rem;
    }
}
