@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  /* Color Palette - Transitioned to Brand GRS Link Red, Matte Black, and White */
  --primary: #df1f26;          /* Brand Red */
  --primary-hover: #b9151c;    /* Deep Red Hover */
  --primary-light: #fef2f2;    /* Light Crimson Tint */
  --secondary: #111111;        /* Brand Matte Black */
  --secondary-light: #f8f9fa;  /* Ultra-light Cool Gray */
  --accent: #e52b31;           /* Crimson Accent */
  --accent-glow: rgba(223, 31, 38, 0.12);
  
  /* Neutral Colors */
  --bg-main: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-footer: #111111;
  --text-dark: #1f1f1f;
  --text-muted: #666666;
  --text-light: #ffffff;
  --border-color: #e5e7eb;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Misc */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(223, 31, 38, 0.05);
  --shadow-lg: 0 20px 50px rgba(17, 17, 17, 0.1);
  --shadow-glow: 0 0 25px rgba(223, 31, 38, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET & BASICS --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

ul {
  list-style: none;
}

/* --- TYPOGRAPHY & TITLES --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary);
}

h1 {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
  position: relative;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-xl) 0;
}

section[id] {
  scroll-margin-top: 100px;
}

.section-bg {
  background-color: var(--secondary-light);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 0.5rem;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(223, 31, 38, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(223, 31, 38, 0.35);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: hsl(168, 80%, 10%);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* --- TOPBAR --- */
.topbar {
  background-color: var(--secondary);
  color: var(--text-light);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contacts {
  display: flex;
  gap: var(--space-md);
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.85;
}

.topbar-link:hover {
  opacity: 1;
  color: var(--accent);
}

.download-app-btn {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

.download-app-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* --- HEADER & NAVIGATION --- */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 46px;
  width: 123px;
  object-fit: contain;
  display: block;
}

.footer-logo-wrapper {
  background-color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  width: fit-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary);
  font-size: 1rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--secondary);
  margin-bottom: 5px;
  transition: var(--transition);
}

.mobile-toggle span:last-child {
  margin-bottom: 0;
}

/* --- HERO SECTION --- */
.hero {
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(223, 31, 38, 0.05) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(17, 17, 17, 0.01) 0%, transparent 50%);
}

.hero-content {
  max-width: 660px;
}

.hero h1 {
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
}

.hero-image-wrapper {
  position: relative;
  perspective: 1000px;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(223, 31, 38, 0.12), 0 5px 15px rgba(244, 63, 94, 0.08);
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 3D Floating Popup effect on Hover */
.hero-image-wrapper:hover .hero-image {
  transform: translateY(-8px) rotateY(-1.5deg) rotateX(1.5deg);
  box-shadow: 0 30px 60px rgba(223, 31, 38, 0.22), 0 12px 24px rgba(244, 63, 94, 0.15);
}

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

.floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-left: 4px solid var(--primary);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  width: fit-content;
  animation: float 4s ease-in-out infinite;
}

.floating-badge-icon {
  background-color: var(--primary-light);
  color: var(--primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.floating-badge-text {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.floating-badge-text h5 {
  font-size: 0.88rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0;
}

.floating-badge-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- FEATURES SECTION --- */
.features-grid {
  margin-top: var(--space-lg);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(223, 31, 38, 0.25);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon-wrapper {
  background-color: var(--primary-light);
  color: var(--primary);
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--primary);
  color: var(--text-light);
  transform: rotateY(180deg);
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* --- PRICING SECTION --- */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.pricing-tab-btn {
  background: white;
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.pricing-tab-btn.active, .pricing-tab-btn:hover {
  background-color: var(--secondary);
  color: var(--text-light);
  border-color: var(--secondary);
}

.pricing-group {
  display: none;
}

.pricing-group.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background: linear-gradient(to bottom, #ffffff, var(--primary-light));
}

.price-card.featured::after {
  content: 'Best Deal';
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: 0 4px 8px rgba(223, 31, 38, 0.2);
}

.price-header {
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.price-card.featured .price-header {
  border-bottom-color: rgba(223, 31, 38, 0.2);
}

.price-title {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--secondary);
}

.price-amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-features {
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.price-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.price-features li.price-feature-cost {
  background-color: var(--primary-light);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
  margin-top: 0.4rem;
  box-shadow: 0 2px 6px rgba(223, 31, 38, 0.05);
  display: flex;
  align-items: center;
}

.price-card .btn {
  width: 100%;
}

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

/* --- FOOTER --- */
footer {
  background-color: var(--bg-footer);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 5px solid var(--primary);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand h3 {
  color: var(--text-light);
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.footer-brand h3 span {
  color: var(--primary);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  background-color: rgba(255, 255, 255, 0.05);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- SUB-PAGES SPECIFICS --- */

/* Sub Hero */
.sub-hero {
  background: linear-gradient(135deg, hsl(142, 40%, 96%), hsl(210, 20%, 98%));
  color: var(--secondary);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.sub-hero h1 {
  color: var(--secondary);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0;
}

.sub-hero + .section {
  padding-top: var(--space-lg);
}

/* About Us Layout */
.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.principle-item {
  display: flex;
  gap: 0.8rem;
}

.principle-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.principle-content h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.principle-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.about-banner-cta {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--text-light);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-banner-cta h2 {
  color: var(--text-light);
}

.about-banner-cta p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

/* Careers Layout */
.no-jobs-alert {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  max-width: 600px;
  margin: var(--space-md) auto 0;
  box-shadow: var(--shadow-sm);
}

.no-jobs-icon {
  background-color: var(--secondary-light);
  color: var(--secondary);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
}

/* Form Styles */
.card-form {
  background: white;
  border: 1px solid var(--border-color);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--bg-main);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* File Upload drag/drop styling */
.file-upload-area {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background-color: var(--bg-main);
}

.file-upload-area:hover, .file-upload-area.drag-over {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

.file-upload-icon {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

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

.file-upload-text span {
  font-weight: 600;
  color: var(--primary);
}

/* Contact Page Layout */
.contact-details-card {
  background-color: var(--secondary);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  height: 100%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 100% 0%, rgba(223, 31, 38, 0.15) 0%, transparent 65%), var(--secondary);
}

.contact-details-card h3 {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.contact-info-list li {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.contact-info-icon {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text h5 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 1rem;
  color: var(--text-light);
}

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

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.85rem; }
  
  .grid-4, .pricing-group.active {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none; /* Hide topbar on smaller mobile displays for compactness */
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: white;
    flex-direction: column;
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-md);
    transition: 0.4s ease-in-out;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero {
    text-align: center;
    padding: var(--space-lg) 0;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: var(--space-md);
  }

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

  .hero-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

  .floating-badge {
    left: 10px;
    bottom: 10px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .pricing-group.active {
    grid-template-columns: 1fr;
  }
  
  .pricing-tabs {
    flex-direction: column;
    align-items: center;
  }
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.floating-whatsapp.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-whatsapp:hover {
  background-color: #20ba5a;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
}
