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

:root {
    --primary-gold: #d4af37;
    --primary-gold-dark: #b8941f;
    --primary-gold-light: #e5c158;
    --accent-gold: #f4d03f;
    --metallic-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #e5c158 100%);
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-cream: #fafafa;
    --bg-dark: #1a1a1a;
    --border-color: #e5e5e5;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
    font-weight: 300;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    height: 45px;
}

.logo-image {
    height: 100%;
    width: auto;
    max-height: 45px;
    object-fit: contain;
}

.logo-wordmark {
    height: 100%;
    width: auto;
    max-height: 45px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-gold);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background-image: url('Punchline Media Logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
    animation: heroLogoSpin 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroLogoSpin {
    0% {
        transform: translate(-50%, -50%) rotate(180deg) scale(3);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.12;
    }
}

.hero-content {
    text-align: center;
    color: white;
    margin: 0 auto;
    z-index: 1;
    animation: fadeInUp 1s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 auto 2rem;
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-line-first {
    white-space: nowrap;
    width: fit-content;
}

.title-line {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: white;
    font-weight: 600;
}

.highlight-word {
    position: relative;
    display: inline-block;
    background: var(--metallic-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    min-height: 1.2em;
    min-width: 200px;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    }
}

.hero-fun-fact {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease 0.5s both;
    max-width: 800px;
}

.fun-fact-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.fun-fact-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fun-fact-icon {
        animation: none;
    }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    width: 100%;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-primary .btn-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.form-note {
    text-align: center;
    margin-top: 0.5rem;
}

.form-note small {
    color: var(--text-light);
    font-style: italic;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    animation: scrollPulse 2s infinite;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.section-header .section-title {
    white-space: nowrap;
}

.section-label {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--metallic-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Story Section */
.story {
    background: white;
    padding: 6rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.story-text {
    text-align: left;
    min-width: 0;
}

.story-paragraphs {
    margin-top: 2rem;
}

.story-p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 1.5rem;
}

.story-p em {
    font-style: italic;
    color: var(--primary-gold);
}

.story-p strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.story-p.highlight {
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 500;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--primary-gold);
    border-radius: 4px;
}

.gold-highlight {
    font-weight: 700;
    background: var(--metallic-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paper-wall-illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

.wall-piece {
    position: absolute;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    animation: float 3s ease-in-out infinite;
}

.wall-1 {
    width: 120px;
    height: 180px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.wall-2 {
    width: 100px;
    height: 160px;
    top: 40%;
    left: 50%;
    animation-delay: 0.5s;
    transform: rotate(3deg);
}

.wall-3 {
    width: 110px;
    height: 170px;
    top: 60%;
    left: 30%;
    animation-delay: 1s;
    transform: rotate(-2deg);
}

.wall-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(calc(var(--rotation, 0deg) + 2deg));
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Client Logos Carousel */
.clients-carousel {
    background: var(--bg-light);
    padding: 3rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-slide {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.carousel-slide a {
    display: flex;
    align-items: center;
}

.carousel-slide img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.carousel-slide a:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.carousel-slide img[alt="Peaceful Alpha"],
.carousel-slide img[alt="Satori Fight Club"],
.carousel-slide img[alt="Lumpini Combat"] {
    height: 70px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

/* Services Section */
.services {
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 95, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.05);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    letter-spacing: -0.02em;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-family: 'Poppins', sans-serif;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 300;
}

.service-card p strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.service-card p em {
    font-style: italic;
    color: var(--accent-gold);
}

.service-hover-text {
    position: absolute;
    bottom: 1.5rem;
    left: 2.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-hover-text {
    opacity: 1;
    transform: translateY(0);
}

/* Disciplines Section */
.disciplines {
    background: var(--metallic-gold);
    padding: 6.5rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.disciplines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #e5c158 100%);
    z-index: 0;
}

.disciplines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.disciplines .container {
    position: relative;
    z-index: 1;
}

.disciplines-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.disciplines-title {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.disciplines-title::after {
    display: none;
}

.disciplines-subtitle {
    color: #ffffff;
    font-size: clamp(0.95rem, 2.2vw, 1.25rem);
    font-weight: 500;
    font-style: italic;
    margin-top: 0.25rem;
    letter-spacing: 0.02em;
}

.disciplines-label {
    color: rgba(255, 255, 255, 0.9);
    display: block;
}

/* Proof columns (replaces discipline cards) */
.proof-columns {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto 3rem;
    min-height: 220px;
}

.proof-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proof-column-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
}

.proof-column-slot {
    flex: 1;
    width: 100%;
    min-height: 140px;
}

.proof-column-slot .proof-card {
    width: 100%;
    height: 100%;
}

.proof-column-divider {
    width: 1px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.35);
    align-self: stretch;
    margin: 0 1.5rem;
}

.proof-cta-wrap {
    text-align: center;
}

.proof-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.proof-more-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 1);
}

.proof-more-arrow {
    font-size: 1.1em;
    transition: transform 0.25s ease;
}

.proof-more-btn:hover .proof-more-arrow {
    transform: translateX(3px);
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.discipline-card {
    background: #ffffff;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.discipline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    transition: left 0.6s ease;
}

.discipline-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.discipline-card:hover::before {
    left: 100%;
}

.discipline-card:hover::after {
    opacity: 1;
}

.discipline-card:hover {
    transform: translateY(-16px) scale(1.04);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.discipline-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    color: var(--primary-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.2));
}

.discipline-card:hover .discipline-icon {
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 8px 16px rgba(244, 208, 63, 0.5));
    color: #f4d03f;
}

.discipline-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.8;
}

.discipline-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.03em;
    transition: all 0.4s ease;
    position: relative;
}

.discipline-card:hover h3 {
    background: var(--metallic-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.discipline-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.08);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    letter-spacing: -0.05em;
    transition: all 0.4s ease;
    pointer-events: none;
}

.discipline-card:hover .discipline-number {
    color: rgba(212, 175, 55, 0.15);
    transform: scale(1.1);
}

.discipline-arrow {
    display: none;
}

.discipline-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    opacity: 0.15;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.discipline-card:hover .discipline-image {
    opacity: 0.25;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.discipline-icon,
.discipline-card h3,
.discipline-number {
    position: relative;
    z-index: 1;
}

/* Discipline Modal */
.discipline-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.discipline-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.modal-content {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.discipline-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem;
    min-height: 200px;
}

/* Approach Section */
.approach {
    background: white;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.approach-intro {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.approach-question {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.approach-answer {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    background: var(--metallic-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.approach-description-wrapper {
    margin-top: 2rem;
}

.approach-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.approach-description strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.approach-description em {
    font-style: italic;
    color: var(--accent-gold);
}

.highlight-box {
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--primary-gold);
    border-radius: 4px;
    font-weight: 500;
    color: var(--primary-gold);
}

.approach-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--metallic-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    letter-spacing: -0.02em;
}

.stat:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contact Section */
.contact {
    background: var(--bg-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.typeform-wrapper {
    min-height: 500px;
    width: 100%;
}

.typeform-wrapper iframe {
    border-radius: 8px;
}

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

.form-intro {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
}

.form-intro p {
    font-family: 'Poppins', sans-serif;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
}

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

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 1rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-gold);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.info-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.info-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.info-card small {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.5;
    display: block;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    height: 60px;
}

.footer-wordmark {
    height: 100%;
    width: auto;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    letter-spacing: 0.05em;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.6;
        transform: scaleY(1.2);
    }
}

/* Cursor trail effect */
.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Responsive Design */

/* Tablet and below */
@media (max-width: 1024px) {
    .title-line-first {
        white-space: normal;
        width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
        padding: 0 1rem;
    }
    
    .highlight-word {
        min-width: 150px;
    }
    
    .hero-background::after {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 7.5rem 0 3rem;
        padding-top: calc(7.5rem + env(safe-area-inset-top, 0px));
        min-height: 85vh;
    }
    
    .hero-background::after {
        width: 280px;
        height: 280px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    .highlight-word {
        min-width: 100px;
        min-height: 1.1em;
    }
    
    .hero-subtitle {
        padding: 0 1rem;
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        padding: 0 1.5rem;
        gap: 1.25rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        font-size: 0.9rem;
        padding: 0.9rem 2rem;
    }
    
    .hero-fun-fact {
        margin-top: 2.5rem;
        max-width: min(90%, 340px);
        margin-left: auto;
        margin-right: auto;
        padding: 0.85rem 1.25rem;
    }

    .scroll-indicator {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .disciplines {
        padding: 5rem 0;
    }
    
    .disciplines-header {
        margin-bottom: 3rem;
    }
    
    .proof-columns {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2.5rem;
        min-height: auto;
    }
    
    .proof-column {
        width: 100%;
        max-width: 340px;
    }
    
    .proof-column-divider {
        width: 100%;
        max-width: 180px;
        height: 1px;
        margin: 1rem 0;
    }
    
    .proof-column-slot {
        min-height: 100px;
    }
    
    .disciplines-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .discipline-card {
        padding: 2rem 2rem;
    }
    
    .discipline-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }
    
    .discipline-card h3 {
        font-size: 1.75rem;
    }
    
    .discipline-number {
        font-size: 4rem;
        top: 1rem;
        right: 1rem;
    }
    
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-body {
        padding: 2rem;
    }

    .approach-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-visual {
        height: 300px;
    }
    
    .section-header .section-title {
        white-space: normal;
    }

    section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }
    
    /* Carousel adjustments */
    .carousel-slide {
        gap: 2rem;
    }
    
    .carousel-slide img {
        height: 40px;
    }
    
    .carousel-slide img[alt="Peaceful Alpha"],
    .carousel-slide img[alt="Satori Fight Club"],
    .carousel-slide img[alt="Lumpini Combat"] {
        height: 55px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: calc(8rem + env(safe-area-inset-top, 0px));
    }
    
    .hero-background::after {
        width: 200px;
        height: 200px;
    }
    
    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3rem);
        font-weight: 700;
        margin-bottom: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .disciplines {
        padding: 4rem 0;
    }
    
    .disciplines-header {
        margin-bottom: 2.5rem;
    }
    
    .disciplines-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .disciplines-title::after {
        display: none;
    }
    
    .disciplines-subtitle {
        font-size: 0.9rem;
    }
    
    .discipline-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .discipline-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .discipline-card h3 {
        font-size: 1.5rem;
    }
    
    .discipline-number {
        font-size: 3.5rem;
        top: 1rem;
        right: 1rem;
    }
    
    .discipline-arrow {
        bottom: 1.5rem;
        font-size: 1.25rem;
    }
    
    .modal-content {
        width: 98%;
        border-radius: 12px;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .highlight-word {
        min-width: 80px;
    }
    
    .hero-fun-fact {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    
    .fun-fact-icon {
        font-size: 1.15rem;
    }
    
    .fun-fact-text {
        font-size: 0.8rem;
    }
    
    /* Carousel adjustments for mobile */
    .carousel-slide {
        gap: 1.5rem;
    }
    
    .carousel-slide img {
        height: 30px;
    }
    
    .carousel-slide img[alt="Peaceful Alpha"],
    .carousel-slide img[alt="Satori Fight Club"],
    .carousel-slide img[alt="Lumpini Combat"] {
        height: 45px;
    }
}

