/* ==========================================
   VITALIS - SISTEMA DE DISEÑO Y ESTILOS
   ========================================== */

/* Variables de Color e Identidad */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(22, 22, 22, 0.7);
    --bg-card-hover: rgba(30, 30, 30, 0.85);
    --primary: #d4af37; /* Dorado sutil premium */
    --primary-glow: rgba(212, 175, 55, 0.15);
    --text-main: #f5f5f7;
    --text-muted: #a1a1a6;
    --border-color: rgba(255, 255, 255, 0.08);
    --accent-glow: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(0,0,0,0) 70%);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

/* Reset de Estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Contenedores y Estilos Generales */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

/* Encabezados y Tags */
.section-header {
    margin-bottom: 4rem;
}

.section-header.text-center {
    text-align: center;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    color: var(--primary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.heading-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin-top: 1.5rem;
}

.heading-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    background-color: #fff;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    padding: 1.25rem 0;
}

.navbar.scrolled {
    padding: 0.85rem 0;
    background-color: rgba(6, 6, 6, 0.95);
}

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

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    object-fit: contain;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-main);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-main);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 1rem 5rem 1rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 5;
}

.hero-coach-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.1rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulseGlow 2s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-main);
    line-height: 1.05;
    margin-bottom: 0.5rem;
    animation: fadeInDown 1.2s ease-out;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    animation: fadeInUp 1.3s ease-out;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 0 0 1.5rem 0;
    box-shadow: 0 0 15px var(--primary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 580px;
    font-weight: 300;
}

.hero-tags {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-tags span {
    color: var(--text-main);
    margin: 0 0.3rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

/* Hero Visual / Retrato con traje */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-portrait-card {
    position: relative;
    max-width: 420px;
    width: 100%;
}

.portrait-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(30, 80, 160, 0.18) 45%, rgba(0, 0, 0, 0) 70%);
    filter: blur(30px);
    z-index: 1;
    pointer-events: none;
}

.portrait-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.15);
    aspect-ratio: 3.8 / 5;
    background: #0d1017;
}

.hero-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: var(--transition-smooth);
}

.hero-portrait-card:hover .hero-portrait-img {
    transform: scale(1.03);
}

.portrait-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(10, 10, 10, 0.8) 100%);
    pointer-events: none;
}

/* Badges flotantes en el Hero */
.portrait-badge {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.8rem 1.25rem;
    background: rgba(18, 18, 20, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
    transition: var(--transition-smooth);
}

.portrait-badge:hover {
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-3px);
}

.badge-top {
    top: 6%;
    right: -25px;
}

.badge-bottom {
    bottom: 6%;
    left: -25px;
}

.badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info strong {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    color: var(--text-main);
    font-weight: 700;
}

.badge-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Profile Section */
.profile-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.profile-intro {
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 3rem;
    line-height: 1.5;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cred-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.credential-item:hover .cred-icon-wrapper {
    background-color: var(--primary);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.cred-text h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
}

.cred-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Profile Card (Glassmorphism Box) */
.profile-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.profile-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.profile-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.profile-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.profile-card-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.coach-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    color: var(--primary);
    background-color: var(--primary-glow);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.05), transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-icon {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   SECCIÓN DE GALERÍA MULTIMEDIA
   ========================================== */
.gallery-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0f14 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.gallery-filter-btn:hover {
    color: var(--text-main);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(35, 35, 35, 0.85);
    transform: translateY(-2px);
}

.gallery-filter-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

/* Grid de Galería */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.25rem;
}

.gallery-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(15px);
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(212, 175, 55, 0.1);
}

.media-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background-color: #11141c;
}

.media-container img,
.media-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.gallery-card:hover .media-container img,
.gallery-card:hover .media-container video {
    transform: scale(1.06);
}

/* Badges Multimedia */
.media-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.video-badge {
    background: rgba(220, 53, 69, 0.85);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.photo-badge {
    background: rgba(18, 18, 20, 0.85);
    color: var(--primary);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.profile-badge {
    background: rgba(25, 65, 145, 0.85);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Botón de Play para video */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    background: rgba(212, 175, 55, 0.92);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    z-index: 3;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transition: var(--transition-smooth);
    padding-left: 3px;
}

.gallery-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: #fff;
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.7);
}

/* Overlays en Hover */
.media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-card:hover .media-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    transform: scale(0.85);
    transition: var(--transition-smooth);
}

.gallery-card:hover .overlay-icon {
    transform: scale(1);
    color: var(--primary);
}

.overlay-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.3rem;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Info del Card */
.gallery-info {
    padding: 1.6rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.gallery-info p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* ==========================================
   LIGHTBOX MODAL
   ========================================== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(18px);
}

.lightbox-dialog {
    position: relative;
    z-index: 2001;
    max-width: 960px;
    width: 100%;
    background: rgba(18, 18, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.active .lightbox-dialog {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    background: var(--primary);
    color: #000;
    transform: rotate(90deg);
}

.lightbox-media-wrapper {
    width: 100%;
    max-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.lightbox-media-wrapper img {
    max-width: 100%;
    max-height: 65vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.lightbox-media-wrapper video {
    max-width: 100%;
    max-height: 65vh;
    width: 100%;
    outline: none;
    background: #000;
}

.lightbox-caption {
    padding: 1.5rem 2rem;
    background: rgba(18, 18, 22, 0.98);
    border-top: 1px solid var(--border-color);
}

.lightbox-caption h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}

.lightbox-caption p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    margin-top: 4rem;
}

.main-chat-card, .social-connect-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3.5rem;
    border-radius: 24px;
}

.main-chat-card h3, .social-connect-card h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.main-chat-card p, .social-connect-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    outline: none;
    transition: var(--transition-smooth);
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(161, 161, 166, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    width: 100%;
    justify-content: center;
    background-color: var(--primary);
    color: #000;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1.1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    background-color: #e0be4a;
}

/* Form success notification */
.form-success {
    display: none;
    background-color: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-align: center;
}

.form-success.visible {
    display: block;
}

/* Error notification (red) */
.form-success.form-error {
    background-color: rgba(255, 70, 70, 0.1);
    border-color: rgba(255, 70, 70, 0.3);
    color: #ff6b6b;
}


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

.chat-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 16px;
    padding: 1.25rem 2rem;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.chat-btn .btn-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
}

.chat-btn .btn-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
}

.chat-btn .btn-text small {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.whatsapp-btn {
    background-color: #25d366;
    color: #000;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    background-color: #20ba5a;
}

.email-btn {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-color: var(--border-color);
}

.email-btn:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* Social List */
.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.social-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.social-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-right: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.social-details {
    display: flex;
    flex-direction: column;
}

.social-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
}

.social-user {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.social-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateX(5px);
}

.social-item:hover .social-icon-box {
    background-color: var(--primary);
    color: #000;
}

/* WhatsApp social item specific color */
.social-item.whatsapp-social:hover .social-icon-box {
    background-color: #25d366;
    color: #fff;
}

.social-item.whatsapp-social:hover {
    border-color: #25d366;
}


.social-item:hover .social-arrow {
    transform: translateX(3px);
    color: var(--primary);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 3rem 0;
    background-color: #050505;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    object-fit: contain;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--text-main);
    margin-bottom: 0;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Grid & Layouts */
@media (max-width: 991px) {
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-coach-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-divider {
        margin: 0 auto 1.5rem auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .badge-top {
        right: 0;
    }

    .badge-bottom {
        left: 0;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        gap: 0;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-section {
        padding: 6.5rem 1rem 3.5rem 1rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 3.2rem;
        letter-spacing: 0.12em;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 0.15em;
    }

    .hero-tags {
        font-size: 0.85rem;
    }

    .hero-portrait-card {
        max-width: 320px;
    }

    .portrait-badge {
        padding: 0.55rem 0.85rem;
        gap: 0.6rem;
    }

    .badge-top {
        right: -10px;
        top: 2%;
    }

    .badge-bottom {
        left: -10px;
        bottom: 2%;
    }

    .badge-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        border-radius: 9px;
    }

    .badge-info strong {
        font-size: 0.78rem;
    }

    .badge-info span {
        font-size: 0.68rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        gap: 0.6rem;
        margin-bottom: 2.5rem;
    }

    .gallery-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.88rem;
    }

    .lightbox-caption {
        padding: 1.2rem;
    }

    .lightbox-caption h3 {
        font-size: 1.15rem;
    }

    .lightbox-caption p {
        font-size: 0.85rem;
    }

    .section {
        padding: 5rem 0;
    }
}
