
/* ===========================
   VELOCTIVE CYCLE TRAINING ACADEMY
   Complete Professional Styling
   Version: Ultimate Ranking Edition
   =========================== */

/* ==================
   CSS VARIABLES
   ================== */
:root {
    /* Brand Colors */
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F77F00;
    --success-color: #06D6A0;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --white-color: #FFFFFF;
    --text-primary: #2C3E50;
    --text-secondary: #6C757D;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F77F00 100%);
    --gradient-secondary: linear-gradient(135deg, #004E89 0%, #1A659E 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 78, 137, 0.75) 0%, rgba(255, 107, 53, 0.65) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* ==================
   RESET & BASE
   ================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--white-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

/* ==================
   CONTAINER
   ================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==================
   NAVIGATION BAR
   ================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white-color);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.nav-banner {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.nav-phone:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

/* ==================
   HAMBURGER MENU
   ================== */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.hamburger:hover {
    background: var(--accent-color);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================
   MOBILE MENU
   ================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white-color);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--dark-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: rotate(90deg);
}

.menu-items {
    margin-top: 80px;
    padding: 20px;
}

.menu-items li {
    margin-bottom: 5px;
}

.menu-link {
    display: block;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    border-radius: 10px;
    transition: var(--transition);
}

.menu-link:hover {
    background: var(--gradient-primary);
    color: var(--white-color);
    transform: translateX(10px);
}

/* ==================
   HERO SECTION (Video Background - MORE VISIBLE)
   ================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
}

/* LIGHTER OVERLAY - Video is MORE visible now! */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white-color);
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #FFD700;
    text-shadow: 2px 2px 15px rgba(255, 215, 0, 0.7);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* ==================
   BUTTONS
   ================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-secondary:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    display: block;
}

/* ==================
   SECTION STYLES
   ================== */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================
   ABOUT SECTION
   ================== */
.about-section {
    background: var(--light-color);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* ==================
   TRAINING VIDEO SECTION
   ================== */
.training-video-section {
    background: var(--white-color);
}

.video-container {
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.training-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-item {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-item img {
    margin: 0 auto 20px;
}

.highlight-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.highlight-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================
   SERVICES SECTION
   ================== */
.services-section {
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white-color);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card img {
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card ul {
    text-align: left;
    margin: 20px 0;
}

.service-card ul li {
    padding: 8px 0;
    color: var(--text-primary);
    font-weight: 500;
}

/* ==================
   PRICING SECTION
   ================== */
.pricing-section {
    background: var(--white-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--success-color);
    transform: scale(1.05);
}

.popular-badge,
.guarantee-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-color);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.guarantee-badge {
    background: var(--primary-color);
}

.pricing-card img {
    margin: 0 auto 20px;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.price-tag {
    margin: 30px 0;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.duration {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.plan-features {
    text-align: left;
    margin: 30px 0;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-color);
    color: var(--text-primary);
    font-weight: 500;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* ==================
   SAFETY SECTION
   ================== */
.safety-section {
    background: var(--light-color);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.safety-item {
    background: var(--white-color);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.safety-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.safety-item img {
    margin: 0 auto 20px;
}

.safety-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.safety-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================
   WHY SECTION
   ================== */
.why-section {
    background: var(--white-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.why-item:hover {
    background: var(--white-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.why-item h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.why-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================
   TESTIMONIALS SECTION
   ================== */
.testimonials-section {
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white-color);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.student-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-proof {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.proof-text {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 10px 0;
    font-weight: 600;
}

/* ==================
   AREAS SECTION
   ================== */
.areas-section {
    background: var(--white-color);
}

.areas-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.area-item {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.area-item:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.areas-note {
    text-align: center;
    padding: 25px;
    background: var(--light-color);
    border-radius: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 40px;
    color: var(--text-primary);
}

/* ==================
   FAQ SECTION
   ================== */
.faq-section {
    background: var(--light-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white-color);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==================
   CTA SECTION
   ================== */
.cta-section {
    background: var(--gradient-secondary);
    color: var(--white-color);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
}

/* ==================
   CONTACT SECTION
   ================== */
.contact-section {
    background: var(--white-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 5px 0;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.contact-map h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-map p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.map-container {
    margin: 25px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.social-proof-contact {
    margin-top: 25px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.social-proof-contact p {
    color: var(--dark-color);
    font-weight: 600;
    margin: 8px 0;
}

/* ==================
   FOOTER
   ================== */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-links li {
    color: var(--light-color);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-keywords {
    line-height: 2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-seo {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* ==================
   WHATSAPP FLOAT BUTTON
   ================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    fill: var(--white-color);
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ==================
   RESPONSIVE DESIGN
   ================== */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .nav-container {
        padding: 12px 15px;
    }
    
    .nav-logo {
        width: 50px;
        height: 50px;
    }
    
    .nav-banner {
        height: 50px;
    }
    
    .nav-phone {
        font-size: 0.9rem;
    }
    
    .hero {
        min-height: 90vh;
        margin-top: 75px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid,
    .pricing-grid,
    .safety-grid,
    .why-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .training-highlights {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .nav-phone {
        display: none;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* ==================
   ACCESSIBILITY
   ================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

a:focus,
button:focus,
input:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================
   PRINT STYLES
   ================== */
@media print {
    .navbar,
    .hamburger,
    .mobile-menu,
    .whatsapp-float,
    .hero-video,
    .hero-overlay {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
    
    .hero {
        margin-top: 0;
        background: var(--white-color);
        color: var(--dark-color);
    }
    
    section {
        page-break-inside: avoid;
        padding: 30px 0;
    }
}