body {
    font-family: 'Outfit', sans-serif;
}

h1, h2, h3, label {
    font-family: 'Rubik', sans-serif;
}

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

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

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Container style */
.footer-text {
  animation: fadeInUp 0.8s ease-out forwards;
  font-size: 0.875rem; /* text-sm */
  color: #4B5563; /* Tailwind gray-600 */
  text-align: center;
  margin-top: 1.5rem;
}

/* Link animation */
.footer-text a {
  color: #ef4444; /* Tailwind red-500 */
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-text a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #ef4444;
  transition: width 0.3s ease;
}

.footer-text a:hover {
  color: #dc2626; /* Tailwind red-600 */
}

.footer-text a:hover::after {
  width: 100%;
}

.animate-slideUp { animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.animate-fadeInDown { animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.animate-fadeInUp { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both; }
.animate-shimmer { animation: shimmer 2s infinite linear; }
.animate-pulse-slow { animation: pulse 3s infinite; }

.poster-container {
    width: 100%;
    max-width: 92vw;
    margin: 0 auto;
    padding: 0 2.5vw;
}
    
.poster-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2.5vw;
}

.poster-section {
    display: inline-block;
    background: transparent;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 100%;
}

.media-content.image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}

.poster-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.media-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Ensure videos and images use their original dimensions */
.media-content.image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}
    
/* Enhanced button styling */
.jump-button {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    min-height: 52px;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.jump-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.jump-button:hover::before {
    left: 100%;
}

.jump-button:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.jump-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Updated button section styling */
.button-section {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.button-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f97316, #ef4444, #dc2626);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease-out;
}

/* Ensure proper text alignment */
.text-center-forced {
    text-align: center !important;
}

/* Custom responsive margins */
.header-spacing {
    padding: 5rem 1.5rem;
}

@media (min-width: 640px) {
    .header-spacing {
        padding: 6rem 2rem;
    }
}

@media (min-width: 1024px) {
    .header-spacing {
        padding: 8rem 3rem;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
    .poster-container {
        padding: 0 2.5vw;
        max-width: 100vw;
    }

    .poster-section {
        border-radius: 12px;
    }

    .media-content {
        border-radius: 12px;
    }

    .jump-button {
        padding: 14px 24px;
        font-size: 15px;
        min-width: 120px;
        border-radius: 10px;
    }

    .button-section {
        margin-top: 16px;
        padding: 16px;
        border-radius: 12px;
    }

    .media-placeholder {
        font-size: 14px;
    }

    .media-placeholder .text-4xl {
        font-size: 2rem;
    }
}

/* Placeholder styling */
.media-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
    
/* Form styling improvements */
.form-input:focus {
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.register-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.auth-footer a:hover::after {
    width: 100%;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-spinner.show {
    opacity: 1;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #fecaca;
    border-top: 3px solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Desktop Responsive */
@media (min-width: 768px) {
    .container {
        max-width: 70%;
        padding: 0 32px;
    }

    .auth-card-content {
        padding: 40px;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    body {
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }

    .container {
        max-width: 860px;
        margin: 0;
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Video */
.gradient-text {
    background: linear-gradient(135deg, #ef4444, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #f8fafc;
    aspect-ratio: 9/16;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.video-content::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

.video-content::-webkit-media-controls-current-time-display,
.video-content::-webkit-media-controls-time-remaining-display {
    color: white;
}
      
/* Custom video controls styling */
.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-card:hover .custom-controls {
    transform: translateY(0);
}

.play-pause-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-pause-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.video-timeline {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.timeline-progress {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #ec4899);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.volume-control {
    width: 80px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    cursor: pointer;
}

.volume-progress {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #ec4899);
    border-radius: 3px;
    width: 100%;
}

.time-display {
    color: white;
    font-size: 12px;
    font-weight: 500;
}

/* Fallback placeholder styling */
.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Floating Action Buttons */
.floating-buttons {
    padding: 0 20px 0 0;
    position: fixed;
    right: 20px;
    top: 80%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Fab icon */
.fab-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.fab {
    width: 56px;
    height: 56px;
    border: 2px solid #007bff;
    background: transparent;
    color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    position: relative;
}

/* Base FAB style */
.fab {
    width: 56px;
    height: 56px;
    border: 2px solid;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    position: relative;
}

.fab-icon {
    width: 24px;
    height: 24px;
    transition: color 0.3s, filter 0.3s;
    color: inherit;
}

/* Tooltip */
.fab-tooltip {
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}


.fab:hover .fab-tooltip {
    opacity: 1;
}

/* --- Individual Colors --- */
/* 1. Blue for "Back to Top" */
.fab-arrow {
    border-color: #007bff;
    color: #007bff;
}

.fab-arrow:hover {
    background-color: #007bff;
    color: white;
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.6);
}

.fab-arrow:hover .fab-icon {
    filter: drop-shadow(0 0 6px white);
}

/* 2. Green for "Register" */
.fab-register {
    border-color: #e83e8c; 
    color: #e83e8c;
}


.fab-register:hover {
    background-color: #e83e8c;
    color: white;
    box-shadow: 0 0 12px rgba(232, 62, 140, 0.6);
}


.fab-register:hover .fab-icon {
    filter: drop-shadow(0 0 6px white);
}

/* 3. WhatsApp green */
.fab-whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.fab-whatsapp:hover {
    background-color: #25D366;
    color: white;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
}

.fab-whatsapp:hover .fab-icon {
    filter: drop-shadow(0 0 6px white);
}

@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
    }

    .fab {
        width: 50px;
        height: 50px;
    }

    .fab svg {
        width: 24px;
        height: 24px;
    }
}

/* White & Red Button Styles - buttons.css */

/* Version 1: Simple Button */
.btn-simple {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #dc3545;
    background: white;
    border: 2px solid #dc3545;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #dc3545;
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-simple:hover::before {
    left: 0;
}

.btn-simple:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-simple span {
    position: relative;
    z-index: 1;
}

/* Version 2: Standard Button */
.btn-standard {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: #dc3545;
    border: 2px solid #dc3545;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-standard::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transition: top 0.3s ease;
    z-index: 0;
}

.btn-standard:hover::before {
    top: 0;
}

.btn-standard:hover {
    color: #dc3545;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-standard span {
    position: relative;
    z-index: 1;
}

/* Version 3: Large Submit Button (Red to White) */
.btn-large {
    display: inline-block;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn-large:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large:hover {
    color: #dc3545;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
}

.btn-large span {
    position: relative;
    z-index: 1;
}

/* Version 3.1: Large Submit Button (White to Red) */
.btn-large-alt {
    display: inline-block;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #dc3545;
    background: white;
    border: 2px solid #dc3545;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.btn-large-alt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn-large-alt:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large-alt:hover {
    color: white;
    border-color: #dc3545;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
}

.btn-large-alt span {
    position: relative;
    z-index: 1;
}

/* Active states for all buttons */
.btn-simple:active,
.btn-standard:active,
.btn-large:active,
.btn-large-alt:active {
    transform: translateY(0);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .btn-simple { 
        padding: 8px 20px; 
        font-size: 13px; 
    }
    .btn-standard { 
        padding: 12px 28px; 
        font-size: 15px; 
    }
    .btn-large,
    .btn-large-alt { 
        padding: 16px 40px; 
        font-size: 16px; 
        min-width: 180px; 
    }
}

/* Company Information Footer Styles */
.company-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.95) 0%, rgba(21, 101, 192, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 16px 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(13, 71, 161, 0.2);
}

.company-info {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.company-logo-section {
    flex: 1;
    min-width: 250px;
}

.company-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #D4AF37;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
}

.company-reg {
    margin: 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.company-details {
    flex: 2;
    text-align: right;
    min-width: 300px;
}

.company-address {
    margin: 0 0 8px 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 6px;
}

.address-icon {
    font-size: 12px;
    margin-top: 1px;
    color: #D4AF37;
}

.company-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.company-meta span {
    white-space: nowrap;
}

.company-meta a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.company-meta a:hover {
    color: #FFD700;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.company-type, .established, .compliance {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Company Footer */
@media (max-width: 768px) {
    .company-footer {
        padding: 12px 16px;
        font-size: 11px;
    }
    
    .company-info {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .company-logo-section,
    .company-details {
        text-align: center;
        min-width: auto;
        flex: none;
        width: 100%;
    }
    
    .company-name {
        font-size: 14px;
    }
    
    .company-address {
        justify-content: center;
        font-size: 10px;
    }
    
    .company-meta {
        justify-content: center;
        font-size: 9px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .company-footer {
        padding: 10px 12px;
    }
    
    .company-name {
        font-size: 13px;
    }
    
    .company-reg {
        font-size: 10px;
    }
    
    .company-address {
        font-size: 9px;
    }
    
    .company-meta {
        font-size: 8px;
        flex-direction: column;
        gap: 4px;
    }
    
    .separator {
        display: none;
    }
}


