/* ===================================
   CORPORATE HR & LEGAL COMPLIANCE FIRM
   Design System - Bomale Consulting
   =================================== */

/* CSS Variables - Corporate Color Palette */
:root {
  /* Primary Colors - Navy Blue System */
  --primary-dark: #0a1628;
  --primary: #1e3a5f;
  --primary-light: #2d5a8a;
  --primary-lighter: #4a7ba7;
  
  /* Secondary Colors - Gray Scale */
  --secondary-dark: #2c3e50;
  --secondary: #5a6c7d;
  --secondary-light: #8a9bb0;
  --secondary-lighter: #b8c6d6;
  
  /* Accent Colors */
  --accent-gold: #c9a227;
  --accent-gold-light: #d4b84d;
  --success: #27ae60;
  --success-light: #2ecc71;
  
  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #ced4da;
  --dark-gray: #495057;
  
  /* Typography */
  --font-primary: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-secondary: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  color: var(--secondary-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--secondary);
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-light);
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--spacing-md);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-accent { color: var(--accent-gold); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-white { background-color: var(--white); }
.bg-off-white { background-color: var(--off-white); }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.pt-1 { padding-top: var(--spacing-xs); }
.pt-2 { padding-top: var(--spacing-sm); }
.pt-3 { padding-top: var(--spacing-md); }
.pt-4 { padding-top: var(--spacing-lg); }
.pt-5 { padding-top: var(--spacing-xl); }

.pb-1 { padding-bottom: var(--spacing-xs); }
.pb-2 { padding-bottom: var(--spacing-sm); }
.pb-3 { padding-bottom: var(--spacing-md); }
.pb-4 { padding-bottom: var(--spacing-lg); }
.pb-5 { padding-bottom: var(--spacing-xl); }

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  letter-spacing: 0.01em;
}

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

.btn-primary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-accent:hover {
  background-color: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* ===================================
   NAVIGATION
   =================================== */

.top-bar {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.top-bar .contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.top-bar .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar .contact-item i {
  color: var(--accent-gold);
}

.main-nav {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-base);
}

.main-nav.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand .brand-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.navbar-brand .brand-tagline {
  font-size: 0.75rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--secondary-dark);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 60px 60px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-text p {
  color: var(--secondary-lighter);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust p {
  font-size: 0.875rem;
  color: var(--secondary-lighter);
  margin-bottom: 1rem;
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--white);
}

.trust-badge i {
  color: var(--accent-gold);
  font-size: 1.25rem;
}

/* ===================================
   SERVICES OVERVIEW
   =================================== */

.services-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-top: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, transparent 70%);
  opacity: 0.1;
  transition: opacity var(--transition-base);
}

.service-card:hover::before {
  opacity: 0.2;
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-card p {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--secondary);
  font-size: 0.95rem;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  transition: gap var(--transition-fast);
}

.service-card .card-link:hover {
  gap: 0.75rem;
}

/* ===================================
   TRUST INDICATORS SECTION
   =================================== */

.trust-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--white);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: var(--spacing-lg);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 500;
}

.client-logos {
  margin-top: var(--spacing-lg);
}

.client-logos h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary);
  font-size: 1.25rem;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.7;
}

.logo-item {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
}

/* ===================================
   WHY CHOOSE US
   =================================== */

.why-choose-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}

.why-choose-section .section-header h2 {
  color: var(--white);
}

.why-choose-section .section-header p {
  color: var(--secondary-lighter);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.feature-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1.25rem;
}

.feature-item h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: var(--secondary-lighter);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--accent-gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
}

.author-info h4 {
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.author-info p {
  font-size: 0.875rem;
  color: var(--secondary-light);
  margin-bottom: 0;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.cta-section .btn-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.cta-section .btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-section .btn-outline-white:hover {
  background-color: var(--white);
  color: var(--accent-gold);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: var(--spacing-lg) 0 2rem;
}

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

.footer-brand img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--secondary-lighter);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--secondary-lighter);
  transition: color var(--transition-fast);
}

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

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--secondary-lighter);
  font-size: 0.95rem;
}

.footer-contact .contact-item i {
  color: var(--accent-gold);
  margin-top: 0.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-base);
}

.social-links a:hover {
  background-color: var(--accent-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--secondary-lighter);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--secondary-lighter);
}

/* ===================================
   MOBILE MENU TOGGLE
   =================================== */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle .hamburger {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-trust {
    text-align: center;
  }
  
  .trust-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .top-bar .contact-info {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
  
  .navbar-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    order: 3;
    background-color: var(--white);
    border-top: 1px solid var(--light-gray);
  }
  
  .navbar-menu.active {
    max-height: 500px;
    padding: 1rem 0;
  }
  
  .navbar-menu .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
  }
  
  .navbar-menu .nav-link:last-child {
    border-bottom: none;
  }
  
  .nav-cta {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    order: 4;
    padding: 0;
  }
  
  .nav-cta.active {
    max-height: 200px;
    padding: 1rem 0;
  }
  
  .nav-cta .btn {
    width: 100%;
    margin: 0.25rem 0 !important;
  }
  
  .section-header {
    padding: 0 1rem;
  }
  
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .top-bar,
  .main-nav,
  .hero-buttons,
  .cta-section,
  .social-links {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}
/* ===================================
   FOOTER SOCIAL MEDIA LINKS
   =================================== */

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  opacity: 0.7;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  opacity: 1;
  transform: scale(1.1);
  background: var(--accent-gold);
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  background-color: #128C7E;
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: var(--primary-dark);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* WhatsApp Message Modal */
.whatsapp-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.whatsapp-modal.active {
  display: flex;
}

.whatsapp-modal-content {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: slideIn 0.3s ease;
  position: relative;
}

.whatsapp-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light-gray);
}

.whatsapp-modal-header i {
  font-size: 2rem;
  color: #25d366;
}

.whatsapp-modal-header h3 {
  margin: 0;
  color: var(--primary);
}

.whatsapp-modal-body textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-primary);
  resize: vertical;
  transition: border-color 0.3s ease;
  margin-bottom: 1.5rem;
}

.whatsapp-modal-body textarea:focus {
  outline: none;
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.whatsapp-modal-footer {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.whatsapp-modal-footer .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.whatsapp-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--light-gray);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--secondary-dark);
  transition: all 0.3s ease;
}

.whatsapp-modal-close:hover {
  background: var(--secondary-dark);
  color: var(--white);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Responsiveness for WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
  
  .whatsapp-float .tooltip {
    display: none;
  }
  
  .whatsapp-modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .whatsapp-modal-footer {
    flex-direction: column;
  }
  
  .whatsapp-modal-footer .btn {
    width: 100%;
  }
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 120px;
  background: var(--primary);
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;
    right: 80px;
  }
}

/* ===================================
   INTERACTIVE HOVER EFFECTS
   =================================== */

/* Enhanced Service Card Hover */
.service-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Enhanced Button Hover Effects */
.btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

/* ===================================
   SMOOTH SCROLLING
   =================================== */

html {
  scroll-behavior: smooth;
}

/* ===================================
   MOBILE MENU IMPROVEMENTS
   =================================== */

.navbar-menu {
  transition: all 0.3s ease;
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

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

/* ===================================
   ANIMATIONS
   =================================== */

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

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

.pulse-animation {
  animation: pulse 2s infinite;
}

/* ===================================
   INTERACTIVE FORM ENHANCEMENTS
   =================================== */

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

/* ===================================
   LIVE CHAT BUTTON (Placeholder)
   =================================== */

.live-chat-btn {
  position: fixed;
  bottom: 40px;
  left: 40px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border: 2px solid var(--white);
}

.live-chat-btn:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .live-chat-btn {
    bottom: 20px;
    left: 20px;
    padding: 10px 18px;
  }
}

/* ===================================
   FLOATING SOCIAL MEDIA SIDEBAR
   =================================== */

.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 0.5rem;
  border-radius: 0 12px 12px 0;
  box-shadow: 2px 2px 12px rgba(0,0,0,0.15);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.social-sidebar a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.social-sidebar a:hover {
  background: var(--accent-gold);
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.social-sidebar a::after {
  content: attr(title);
  position: absolute;
  left: 55px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.social-sidebar a:hover::after {
  opacity: 1;
  visibility: visible;
  left: 50px;
}

/* Mobile Responsive Sidebar */
@media (max-width: 768px) {
  .social-sidebar {
    left: 0;
    top: auto;
    bottom: 120px;
    transform: none;
    flex-direction: column;
    padding: 0.75rem 0.4rem;
    border-radius: 0 12px 12px 0;
  }
  
  .social-sidebar a {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .social-sidebar a::after {
    display: none;
  }
}

/* ===================================
   FOUNDER SECTION
   =================================== */

.founder-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-image img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.founder-text h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.founder-text h3 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.founder-text .founder-title {
  font-size: 1.1rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.founder-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.founder-text .founder-philosophy {
  font-size: 1.2rem;
  color: var(--primary-dark);
  font-style: italic;
  font-weight: 600;
  margin: 1.5rem 0;
  padding: 1rem;
  border-left: 4px solid var(--accent-gold);
  background: rgba(201, 162, 39, 0.1);
}

@media (max-width: 768px) {
  .founder-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .founder-text h2 {
    font-size: 2rem;
  }
  
  .founder-text h3 {
    font-size: 1.5rem;
  }
}
