/* Shadow Agent AI - Customer Site Theme */
:root {
    --sa-primary: #1a4d2e;
    --sa-primary-rgb: 26, 77, 46;
    --sa-primary-light: #2f855a;
    --sa-primary-dark: #0f2b1a;
    --sa-secondary: #4a5568;
    --sa-secondary-rgb: 74, 85, 104;
    --sa-accent: #d69e2e;
    --sa-info: #2c5282;
    --sa-light: #f7fafc;
    --sa-dark: #1a202c;
    --sa-success: #2f855a;
    
    /* Bootstrap overrides */
    --bs-primary: #1a4d2e;
    --bs-primary-rgb: 26, 77, 46;
    --bs-secondary: #4a5568;
    --bs-link-color: #1a4d2e;
    --bs-link-hover-color: #2f855a;
    
    /* Custom max-width for better readability on large screens */
    --sa-max-content-width: 1200px;
}

/* Override Bootstrap container max-width for better readability on large monitors */
@media (min-width: 1400px) {
    .container {
        max-width: var(--sa-max-content-width) !important;
    }
}

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
  background-color: #ffffff;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2d3748;
  background-color: #ffffff;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Prevent any element from causing horizontal scroll */
* {
  max-width: 100%;
}

/* Allow specific elements to be wider when needed */
.container,
.container-fluid,
img,
svg,
video {
  max-width: 100%;
}

/* Button Focus Styles */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem rgba(26, 77, 46, 0.5);
}

/* Remove Bootstrap's default blue active state for all buttons */
.btn:active, .btn.active, .btn.show {
    background-color: inherit;
    border-color: inherit;
}

.btn-primary:active, .btn-primary.active, .btn-primary.show {
    background-color: var(--sa-primary-dark) !important;
    border-color: var(--sa-primary-dark) !important;
}

.btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.show {
    background-color: var(--sa-primary) !important;
    border-color: var(--sa-primary) !important;
    color: white !important;
}

.btn-success:active, .btn-success.active, .btn-success.show {
    background-color: var(--sa-primary-dark) !important;
    border-color: var(--sa-primary-dark) !important;
}

.btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.show {
    background-color: var(--sa-primary) !important;
    border-color: var(--sa-primary) !important;
    color: white !important;
}

.btn-light:active, .btn-light.active, .btn-light.show {
    background-color: #e2e8f0 !important;
    border-color: #cbd5e0 !important;
}

/* Form Floating Styles */
.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Primary Button Styles */
.btn-primary {
    background-color: var(--sa-primary);
    border-color: var(--sa-primary);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--sa-primary-light);
    border-color: var(--sa-primary-light);
}

.btn-outline-primary {
    color: var(--sa-primary);
    border-color: var(--sa-primary);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--sa-primary);
    border-color: var(--sa-primary);
    color: white;
}

/* Navbar Styling */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: var(--sa-primary) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.05);
}

/* Remove the white filter from logo - keep original colors */
.navbar-brand img {
    /* Logo should keep its original colors */
}

.navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: white !important;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.5rem !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.95) !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: white !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 80%;
    background-color: white;
}

/* Navigation Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
    width: 100%;
    max-width: 100vw;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--sa-primary) !important;
}

.navbar-brand:hover {
    color: var(--sa-primary-light) !important;
}

.navbar .container {
    max-width: 100%;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: var(--sa-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--sa-primary) !important;
}

.navbar-nav .nav-link.active {
    color: var(--sa-primary) !important;
    font-weight: 600;
}

/* Underline effect on hover */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--sa-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
}

.dropdown-item {
    color: var(--sa-secondary);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(26, 77, 46, 0.1) !important;
    color: var(--sa-primary) !important;
}

.dropdown-item.active {
    background-color: #e8f5e9;
    color: var(--sa-primary);
    font-weight: 600;
}

.dropdown-item.active .text-primary {
    color: var(--sa-primary) !important;
}

.dropdown-item:active {
    background-color: #d4edda;
    color: var(--sa-primary);
}

.dropdown-item:active .text-primary {
    color: var(--sa-primary) !important;
}

.dropdown-item img {
    vertical-align: middle;
}

.dropdown-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Navigation Login Button */
.btn-nav-login {
    background-color: #6c757d;
    border: 2px solid #6c757d;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-nav-login:hover,
.btn-nav-login:focus {
    background-color: var(--sa-primary);
    border-color: var(--sa-primary);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 77, 46, 0.3);
}

.btn-nav-login:active {
    background-color: var(--sa-primary-dark);
    border-color: var(--sa-primary-dark);
    transform: translateY(0);
}

/* Navigation Get Started Button */
.btn-nav-start {
    background-color: var(--sa-primary);
    border: 2px solid var(--sa-primary);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-nav-start:hover,
.btn-nav-start:focus {
    background-color: var(--sa-primary-light);
    border-color: var(--sa-primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(26, 77, 46, 0.3);
}

.btn-nav-start:active {
    background-color: var(--sa-primary-dark);
    border-color: var(--sa-primary-dark);
    transform: translateY(0);
}

/* Mobile Navigation Adjustments */
@media (max-width: 991px) {
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }
    
    .btn-nav-login,
    .btn-nav-start {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Success Button Styles */
.btn-success {
    background-color: var(--sa-primary) !important;
    border-color: var(--sa-primary) !important;
    color: white !important;
}

.btn-success:hover, .btn-success:focus {
    background-color: var(--sa-primary-light) !important;
    border-color: var(--sa-primary-light) !important;
    color: white !important;
}

.btn-success:active {
    background-color: var(--sa-primary-dark) !important;
    border-color: var(--sa-primary-dark) !important;
    color: white !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--sa-primary) 0%, var(--sa-primary-light) 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1.25rem;
    }
}

/* Responsive logo sizing for hero section */
.hero-logo-wrapper {
    position: relative;
    display: inline-block;
    max-width: 280px;
    width: 100%;
}

.hero-logo-responsive {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Trademark Badge */
.trademark-badge {
    position: absolute;
    top: 5%;
    right: 5%;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.95) 0%, rgba(13, 38, 24, 0.95) 100%);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Adjust logo size for tablets and smaller */
@media (max-width: 992px) {
    .hero-logo-wrapper {
        max-width: 250px;
    }
    
    .hero-logo-responsive {
        max-width: 250px;
    }
}

/* Adjust logo size for mobile devices */
@media (max-width: 768px) {
    .hero-logo-wrapper {
        max-width: 220px;
    }
    
    .hero-logo-responsive {
        max-width: 220px;
    }
    
    .trademark-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
        border-radius: 16px;
        border-width: 1.5px;
        top: 3%;
        right: 3%;
    }
}

/* Adjust logo size for very small phones */
@media (max-width: 480px) {
    .hero-logo-wrapper {
        max-width: 180px;
    }
    
    .hero-logo-responsive {
        max-width: 180px;
    }
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Prevent cards from capturing touch events that interfere with scrolling on mobile */
@media (max-width: 768px) {
    .feature-card, 
    .pricing-card, 
    .testimonial-card,
    .card {
        pointer-events: auto;
        touch-action: pan-y;
    }
    
    /* Disable hover effects on mobile to prevent focus issues */
    .feature-card:hover,
    .pricing-card:hover {
        transform: none;
    }
}

.feature-icon {
    font-size: 3rem;
    color: var(--sa-primary);
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pricing-card .list-unstyled {
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing-card:hover {
    border-color: var(--sa-primary);
    box-shadow: 0 8px 24px rgba(26, 77, 46, 0.15);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--sa-primary);
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(26, 77, 46, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--sa-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 10;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--sa-primary);
}

.pricing-price .period {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--sa-secondary);
}

/* Section Styling */
.section {
    padding: 80px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.section .container {
    max-width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sa-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Add extra padding to last section before footer on mobile */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    /* Last section gets extra bottom padding */
    .section:last-of-type,
    section:last-of-type {
        padding-bottom: 80px !important;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    /* More bottom padding on very small phones */
    .section:last-of-type,
    section:last-of-type {
        padding-bottom: 100px !important;
    }
}

/* Ensure main content has proper spacing above footer */
main {
    padding-bottom: 40px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Increase bottom padding on mobile to prevent footer overlap */
@media (max-width: 768px) {
    main {
        padding-bottom: 60px;
    }
}

/* Additional padding for very small phones */
@media (max-width: 480px) {
    main {
        padding-bottom: 80px;
    }
}

/* Stats Section */
.stats-section {
    background-color: var(--sa-light);
    padding: 60px 0;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--sa-primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.125rem;
    color: var(--sa-secondary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--sa-primary) 0%, var(--sa-primary-dark) 100%);
    color: white;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Accordion / FAQ Styles */
.accordion-button {
    background-color: #e8f5e9;
    color: var(--sa-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--sa-primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--sa-primary);
    box-shadow: 0 0 0 0.25rem rgba(26, 77, 46, 0.25);
}

.accordion-button:hover {
    background-color: var(--sa-primary-light);
    color: white;
}

.accordion-button.collapsed:hover {
    background-color: #d4edda;
    color: var(--sa-dark);
}

.accordion-button::after {
    filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(100%);
}

.accordion-item {
    border: 1px solid #e2e8f0;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item:first-of-type {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.accordion-item:last-of-type {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    color: var(--sa-secondary);
    line-height: 1.7;
}

/* Alert / Info Box Styles - Override Bootstrap defaults */
.alert-primary {
    background-color: #e8f5e9;
    border-color: #c8e6c9;
    color: var(--sa-dark);
}

.alert-primary .fas,
.alert-primary .far,
.alert-primary .fab {
    color: var(--sa-primary);
}

.alert-primary strong {
    color: var(--sa-primary);
}

.alert-info {
    background-color: #e8f5e9;
    border-color: #c8e6c9;
    color: var(--sa-dark);
}

.alert-info .fas,
.alert-info .far,
.alert-info .fab {
    color: var(--sa-primary);
}

.alert-info strong {
    color: var(--sa-primary);
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: var(--sa-dark);
}

.alert-success .fas,
.alert-success .far,
.alert-success .fab {
    color: var(--sa-success);
}

/* Footer */
.footer {
    background-color: var(--sa-primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
    margin-top: 0;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

.text-white-50:hover {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Responsive footer text wrapping */
.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-item {
    display: inline-block;
    white-space: nowrap;
}

.footer-separator {
    display: inline-block;
    margin: 0 0.5rem;
}

/* Mobile-specific footer styles */
@media (max-width: 768px) {
    .footer-text {
        font-size: 0.875rem;
        line-height: 2;
    }
    
    .footer-separator {
        margin: 0 0.25rem;
    }
}

/* Very small phones - stack footer items vertically */
@media (max-width: 480px) {
    .footer-text {
        font-size: 0.85rem;
        line-height: 1.8;
    }
    
    .footer-item {
        display: block;
        margin: 0.25rem 0;
    }
    
    .footer-separator {
        display: none;
    }
}

/* Extra small screens - prevent any overflow */
@media (max-width: 375px) {
    body,
    html,
    main,
    .navbar,
    .footer,
    .section {
        overflow-x: hidden !important;
    }
    
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .footer-text {
        font-size: 0.8rem;
        padding: 0 5px;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .btn-sm {
        padding: 0.375rem 0.75rem !important;
        font-size: 0.8rem !important;
    }
}

/* Video Container Responsive Styles */
.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}

.ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Ensure video scales properly on all devices */
#video-container {
    max-width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
}

#video-container .d-flex {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#product-video {
    object-fit: contain;
    max-width: 100%;
    height: 100%;
}

/* Mobile-specific video adjustments */
@media (max-width: 768px) {
    .ratio {
        max-width: 100%;
        position: relative;
    }
    
    /* Ensure proper aspect ratio on mobile */
    .ratio-16x9::before {
        padding-top: 56.25% !important; /* 16:9 aspect ratio */
    }
    
    #video-container {
        border-radius: 0.5rem;
        min-height: 250px;
    }
    
    #video-container .d-flex {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        padding: 1rem !important;
    }
    
    #product-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
    
    /* Adjust play button size for mobile */
    #play-button {
        font-size: 60px !important;
    }
}

/* Very small phones */
@media (max-width: 480px) {
    #video-container {
        min-height: 200px;
    }
    
    #video-container .d-flex {
        padding: 0.75rem !important;
    }
    
    #play-button {
        font-size: 50px !important;
    }
}

/* Testimonial Cards */
.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--sa-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--sa-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(26, 77, 46, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--sa-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(26, 77, 46, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(26, 77, 46, 0.3);
}

/* Adjust scroll-to-top button position on mobile */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Hero Logo Animation */
@keyframes float-bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-bounce-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(26, 77, 46, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(26, 77, 46, 0.5));
    }
}

@keyframes pulse-glow-gentle {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(26, 77, 46, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(26, 77, 46, 0.4));
    }
}

.hero-logo-animated {
    animation: float-bounce 4s ease-in-out infinite, pulse-glow 4s ease-in-out infinite;
}

.hero-logo-animated-gentle {
    animation: float-bounce-gentle 4s ease-in-out infinite, pulse-glow-gentle 4s ease-in-out infinite;
}

/* Alternative: Gentle floating without glow */
.hero-logo-float {
    animation: float-bounce 3s ease-in-out infinite;
}

/* Dropdown styling */
.dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 0.5em;
    vertical-align: 0.15em;
    content: "\f078" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    border: none !important;
    font-size: 0.75em;
    transition: transform 0.3s ease;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    position: static !important;
    color: white !important;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-toggle:hover::after {
    color: white !important;
}

/* Prevent underline on dropdown toggles */
.dropdown-toggle.nav-link::after {
    background: none !important;
}

.navbar-light .dropdown-toggle {
    color: white !important;
}

.navbar-light .dropdown-toggle:hover {
    color: rgba(255, 255, 255, 0.95) !important;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Navbar Button Styles - Higher specificity to override nav-link styles */
.navbar .btn-nav-login {
    background-color: rgba(26, 32, 44, 0.8) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
}

.navbar .btn-nav-login::after {
    content: none !important;
    display: none !important;
}

.navbar .btn-nav-login:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: white !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.navbar .btn-nav-login:active {
    background-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(0);
}

.navbar .btn-nav-start {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid white !important;
    color: var(--sa-primary) !important;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
}

.navbar .btn-nav-start::after {
    content: none !important;
    display: none !important;
}

.navbar .btn-nav-start:hover {
    background-color: white !important;
    border-color: white !important;
    color: var(--sa-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

.navbar .btn-nav-start:active {
    background-color: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(0);
}