/* ============================================
   ETHICAL HACKING WEBINAR LANDING PAGE STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.hacker-font {
    font-family: 'JetBrains Mono', monospace;
}

/* ============================================
   MATRIX BACKGROUND ANIMATION
   ============================================ */

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
    overflow: hidden;
}

.matrix-column {
    position: absolute;
    top: -100%;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #00ff00;
    animation: matrix-fall linear infinite;
    text-shadow: 0 0 5px #00ff00;
    line-height: 1.2;
}

@keyframes matrix-fall {
    0% {
        transform: translateY(-100%);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* ============================================
   TERMINAL CURSOR ANIMATION
   ============================================ */

.terminal-cursor::after {
    content: '▊';
    animation: blink 1s infinite;
    color: #00ff00;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ============================================
   GLITCH EFFECT
   ============================================ */

.glitch {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'JetBrains Mono', monospace;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-highlight {
    font-size: 1.125rem;
    color: #ff4444;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'JetBrains Mono', monospace;
}

@media (min-width: 768px) {
    .hero-highlight {
        font-size: 1.25rem;
    }
}

/* ============================================
   BUTTONS & CTAs
   ============================================ */

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #ffffff;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Variant: primary red CTA (used for main hero/webinar buttons) */
.cta-button-primary {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}

.cta-button-primary:hover {
    background: #cc0000;
    border-color: #cc0000;
}

/* ============================================
   FLOATING CTA BUTTON
   ============================================ */

.floating-cta {
    position: fixed;
    left: 50%;
    bottom: 80px; /* above WhatsApp button */
    transform: translateX(-50%);
    z-index: 950;
    pointer-events: none; /* only button should be clickable */
    animation: floating-cta-fade-in 0.8s ease forwards;
}

.floating-cta-button {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff0000;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid #ff0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    max-width: 700px;
    text-align: center;
    white-space: normal;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    animation: floating-cta-pulse 2.5s ease-in-out infinite;
}

.floating-cta-button:hover {
    background: #cc0000;
    border-color: #cc0000;
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.8);
}

.floating-cta-button:active {
    transform: scale(0.98);
}

@keyframes floating-cta-fade-in {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes floating-cta-pulse {
    0%, 100% {
        box-shadow: 0 0 18px rgba(255, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.9);
    }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 90px; /* extra space on mobile */
        width: 100%;
        padding: 0 16px;
    }
    
    .floating-cta-button {
        width: 100%;
        text-align: center;
        font-size: 0.8rem;
        padding: 14px 20px;
    }
}

/* ============================================
   BONUS SECTION
   ============================================ */

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonus-card {
    background: #ffffff;
    color: #000000;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bonus-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.bonus-description {
    color: #555555;
    line-height: 1.4;
    font-size: 0.875rem;
}

/* ============================================
   WHAT YOU WILL LEARN SECTION
   ============================================ */

.learn-section {
    background: #111111;
}

.learn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .learn-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.learn-card {
    background: #000000;
    border: 1px solid #333333;
    padding: 2rem;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
}

.learn-card:hover {
    border-color: #00ff00;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.1);
}

.learn-prefix {
    color: #00ff00;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.learn-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.learn-description {
    color: #999999;
    font-size: 0.875rem;
}

/* ============================================
   WORKSHOP DETAILS SECTION
   ============================================ */

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detail-card {
    background: #ffffff;
    color: #000000;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.detail-icon {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.detail-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: 'JetBrains Mono', monospace;
}

.detail-value {
    font-size: 1.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .detail-card {
        padding: 1.25rem;
    }
    .detail-icon {
        font-size: 2rem;
    }
    .detail-value {
        font-size: 1.35rem;
    }
}

/* ============================================
   COUNTDOWN TIMER SECTION
   ============================================ */

.countdown-section {
    background: rgba(255, 68, 68, 0.1);
    text-align: center;
}

.countdown-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff4444;
    font-family: 'JetBrains Mono', monospace;
}

@media (min-width: 768px) {
    .countdown-title {
        font-size: 3.5rem;
    }
}

.countdown-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

@media (min-width: 768px) {
    .countdown-subtitle {
        font-size: 1.5rem;
    }
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
}

.timer-digit {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    min-width: 100px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .timer-digit {
        font-size: 2rem;
        min-width: 70px;
        padding: 1rem;
    }
}

.timer-label {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    color: #999999;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
}

.timer-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

@media (max-width: 768px) {
    .timer-separator {
        font-size: 1.5rem;
    }
}

/* ============================================
   TRAINER SECTION STYLES
   ============================================ */

.trainer-section {
    padding: 80px 20px;
    background: #000000;
}

.trainer-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 768px) {
    .trainer-layout {
        grid-template-columns: 450px 1fr;
        gap: 4rem;
    }
}

/* LEFT SIDE: Trainer Image */
.trainer-image-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .trainer-image-wrapper {
        margin: 0;
    }
}

.trainer-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: block;
    object-fit: cover;
}

/* RIGHT SIDE: Trainer Content */
.trainer-content {
    text-align: left;
}

.trainer-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    color: #ffffff;
}

.trainer-bio {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.trainer-bio strong {
    color: #ffffff;
    font-weight: 600;
}

.trainer-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.skill-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .trainer-content {
        text-align: center;
    }
    
    .trainer-name {
        font-size: 2rem;
    }
    
    .trainer-skills {
        justify-content: center;
    }
}

/* ============================================
   TESTIMONIALS PAGE STYLES
   ============================================ */

.testimonials-section {
    /* no fixed height: let cards grow naturally with images */
    padding: 80px 20px;
}

.testimonials-section .container {
    max-width: 1400px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    border-radius: 16px;
}

/* Image-only LinkedIn wall: slightly tighter padding */
.testimonials-section .testimonial-card {
    padding: 0.5rem;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 35px rgba(74, 158, 255, 0.18);
}

.testimonial-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 1.5rem;
    display: block;
    background: #111111;
    /* ensure the image keeps its intrinsic ratio and doesn't get stretched */
    max-width: 100%;
}


.testimonial-text {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.875rem;
    color: #999999;
    font-family: 'JetBrains Mono', monospace;
}

/* Video testimonials (YouTube preview cards) */

.video-testimonials-section {
    background: #000000;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.2);
    border-color: rgba(0, 255, 0, 0.3);
}

.video-button-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    min-height: 200px;
    padding: 2rem;
}

.video-watch-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border: 2px solid #00ff00;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.video-card:hover .video-watch-button {
    background: rgba(0, 0, 0, 0.9);
    border-color: #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    transform: scale(1.05);
}

.play-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00ff00;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #000000;
    border-top: 1px solid #333333;
}

.footer-main {
    padding: 4rem 20px 3rem;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.footer-column {
    text-align: left;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #4a9eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-subtitle {
    color: #4a9eff;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.875rem;
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #4a9eff;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 8px;
    color: #4a9eff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(74, 158, 255, 0.2);
    border-color: #4a9eff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 158, 255, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-social-text {
    color: #999999;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.footer-bottom {
    background: #000000;
    border-top: 1px solid #333333;
    padding: 1.5rem 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #666666;
    font-size: 0.875rem;
    font-family: 'JetBrains Mono', monospace;
    margin: 0;
}

.footer-tagline {
    color: #4a9eff;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 20px 2rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    section {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trainer-name {
        font-size: 2rem;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: #ffffff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #000000;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid #333333;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #000000;
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   SOCIAL PROOF POPUP
   ============================================ */

.social-proof-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #000000;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    z-index: 999;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    min-width: 280px;
    max-width: 350px;
    transform: translate(-40px, 120px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.social-proof-popup.show {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.social-proof-popup.hide {
    transform: translate(-40px, 120px);
    opacity: 0;
}

.social-proof-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.social-proof-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #00c853;
    color: #ffffff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 18px rgba(0, 200, 83, 0.25);
}

.social-proof-body {
    min-width: 0;
}

.social-proof-text {
    display: block;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 600;
}

.social-proof-time {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'JetBrains Mono', monospace;
}

@media (max-width: 768px) {
    .social-proof-popup {
        bottom: 90px;
        left: 20px;
        right: 20px;
        max-width: none;
        min-width: auto;
        font-size: 0.8rem;
        padding: 12px 16px;
    }

    .social-proof-avatar {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
}

