/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #1d4ed8;
}

.logo i {
  font-size: 28px;
}

/* Logo Images */
.logo-img {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

/* Desktop Logo (Horizontal) */
.logo-desktop {
  display: block;
}

.logo-mobile {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2563eb;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: white;
  color: #1e293b;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: #2563eb;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  outline: none;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
}

/* Team Photo Styles */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team-photo {
  position: relative;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.3s ease;
  z-index: 2;
  width: 450px;
  height: 500px;
}

.team-photo:hover {
  transform: none;
}

.hero-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 0 0 10px 10px;
}

.team-photo:hover .hero-team-img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
  text-align: center;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.team-overlay h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-overlay p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.2rem;
  color: #64748b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  height: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.service-card-link .service-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

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

.service-card-link:hover .service-card::before {
  left: 100%;
}

.service-card-link .service-card .service-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-card-link .service-card h3 {
  color: white;
  font-weight: 700;
}

.service-card-link .service-card p {
  color: rgba(255, 255, 255, 0.9);
}

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

.service-card-link:hover .service-card {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e293b;
  flex-shrink: 0;
  line-height: 1.3;
}

.service-card p {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.95rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  text-align: center;
}

/* About Section */
.about {
  padding: 100px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 30px;
  line-height: 1.7;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  color: #10b981;
  font-size: 1.2rem;
}

.feature span {
  font-weight: 500;
  color: #1e293b;
}

.stats-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.stat p {
  opacity: 0.9;
}

/* Our Carriers Section */
.carriers {
  padding: 100px 0;
  background: #f8fafc;
}

.carriers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.carrier-logo {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  width: 100%;
  max-width: 220px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.carrier-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.carrier-img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: grayscale(20%) opacity(0.8);
}

.carrier-logo:hover .carrier-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: #f8fafc;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.contact-card:nth-child(1) {
  grid-column: 1;
}

.contact-card:nth-child(2) {
  grid-column: 1 / -1;
}

.contact-card:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}

.contact-card:nth-child(4) {
  grid-column: 1 / -1;
}

.contact-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e293b;
}

.contact-card p {
  color: #64748b;
  margin-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.contact-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #1d4ed8;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section:first-child {
  margin-right: 20px;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-section .contact-info {
  display: block;
  width: 100%;
}

.footer-section .contact-info p {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-section .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-section .contact-item span {
  font-size: 0.85rem;
  word-break: break-all;
}

.footer-section .contact-item:nth-child(2) span {
  font-size: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
  color: #94a3b8;
}

/* Social Media Links in Footer */
.social-media {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.social-link:hover {
  background-color: rgba(225, 48, 108, 0.1);
  border-color: rgba(225, 48, 108, 0.3);
  transform: translateY(-2px);
}

/* Instagram specific hover color */
.social-link[href*='instagram']:hover {
  color: #e1306c;
  background-color: rgba(225, 48, 108, 0.1);
  border-color: rgba(225, 48, 108, 0.3);
}

/* Facebook specific hover color */
.social-link[href*='facebook']:hover {
  color: #1877f2;
  background-color: rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.3);
}

/* LinkedIn specific hover color */
.social-link[href*='linkedin']:hover {
  color: #0a66c2;
  background-color: rgba(10, 102, 194, 0.1);
  border-color: rgba(10, 102, 194, 0.3);
}

.social-link i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.social-link span {
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .logo {
    font-size: 20px;
  }

  .logo i {
    font-size: 22px;
  }

  /* Mobile Logo Switch */
  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .logo-img {
    height: 50px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 90px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

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

  .nav-menu li {
    margin: 10px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image::before {
    width: 420px;
    height: 420px;
  }

  .team-photo {
    width: 380px;
    height: 420px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  /* Reset desktop grid positioning on mobile - show all 4 cards vertically */
  .contact-card:nth-child(1),
  .contact-card:nth-child(2),
  .contact-card:nth-child(3),
  .contact-card:nth-child(4) {
    grid-column: 1;
    grid-row: unset;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .stats-card {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .carriers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section .contact-info p {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .footer-section .contact-info p:nth-child(2) {
    font-size: 0.85rem;
    word-break: break-all;
  }

  .contact-card:nth-child(4) {
    grid-column: 1;
    grid-row: unset;
  }

  .license-banner {
    padding: 35px 0;
  }

  .banner-content {
    padding: 0 20px;
  }

  .banner-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
    font-weight: 700;
  }

  .banner-track {
    gap: 25px;
  }

  .state-item {
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 22px;
  }

  .footer-section .contact-item:nth-child(2) span {
    font-size: 0.75rem;
  }

  .social-link {
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .social-link span {
    display: none;
  }

  .social-link i {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo {
    font-size: 18px;
    gap: 8px;
  }

  .logo i {
    font-size: 20px;
  }

  .logo-img {
    height: 45px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-image::before {
    width: 350px;
    height: 350px;
  }

  .team-photo {
    width: 320px;
    height: 360px;
  }

  .team-overlay {
    padding: 20px;
  }

  .team-overlay h3 {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px;
  }

  .service-card {
    height: 300px;
    padding: 25px 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .stats-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .carriers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-section .contact-info p:nth-child(2) {
    font-size: 0.8rem;
  }

  .license-banner {
    padding: 25px 0;
  }

  .banner-content {
    padding: 0 10px;
  }

  .banner-title {
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 700;
  }

  .banner-track {
    gap: 15px;
    animation-duration: 30s;
  }

  .state-item {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 18px;
  }
}

/* Large Screen Optimization */
@media (min-width: 1440px) {
  .hero-image::before {
    width: 600px;
    height: 600px;
  }

  .team-photo {
    width: 550px;
    height: 600px;
  }

  .hero-content h1 {
    font-size: 4rem;
  }

  .hero-content p {
    font-size: 1.3rem;
  }
}

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

.service-card,
.contact-card {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(even) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3n) {
  animation-delay: 0.4s;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Additional Hover Effects */
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* License Banner */
.license-banner {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}

.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.banner-title {
  text-align: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.9;
}

.banner-scroll {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.banner-track {
  display: inline-flex;
  animation: scrollStates 20s linear infinite;
  gap: 20px;
}

.state-item {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.state-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

@keyframes scrollStates {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Language Switcher Styles */
.language-switcher {
  display: flex;
  gap: 4px;
  margin-left: 20px;
}

.lang-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
}

.lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.lang-btn.active {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.lang-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.5);
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
  .language-switcher {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    margin-left: 0;
  }

  .lang-btn {
    min-width: 35px;
    height: 32px;
    font-size: 1rem;
    padding: 4px 8px;
  }
}

/* Medicare Agent Menu Item - Special Styling */
.medicare-agent-item {
  margin-left: 20px;
}

.medicare-agent-link {
  background: linear-gradient(135deg, #4285f4, #34a853) !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3) !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
  position: relative !important;
  overflow: hidden !important;
}

.medicare-agent-link::before {
  /* content: '🏥'; */
  /* margin-right: 6px; */
  /* font-size: 1rem; */
}

.medicare-agent-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.4) !important;
  background: linear-gradient(135deg, #3367d6, #2d8c47) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.medicare-agent-link:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3) !important;
}

/* Pulse animation for Medicare Agent link */
@keyframes medicare-pulse {
  0% {
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
  }
  50% {
    box-shadow: 0 2px 16px rgba(66, 133, 244, 0.5);
  }
  100% {
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
  }
}

.medicare-agent-link {
  animation: medicare-pulse 3s ease-in-out infinite;
}

/* Mobile Medicare Agent Styling */
@media (max-width: 768px) {
  .medicare-agent-item {
    margin-left: 0;
    margin-top: 10px;
  }

  .medicare-agent-link {
    display: block !important;
    text-align: center !important;
    margin: 10px 20px !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
  }

  .nav-menu.active .medicare-agent-item {
    order: -1; /* Put Medicare Agent at the top on mobile */
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

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

/* Mobile responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
