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

:root {
  --primary-blue: #0066cc;
  --secondary-blue: #004080;
  --accent-blue: #00a8ff;
  --light-blue: #e6f3ff;
  --dark-navy: #001e3c;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --success: #10b981;
  --warning: #f59e0b;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 140px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.logo-link:hover {
  background: rgba(0, 102, 204, 0.05);
  padding: 0.5rem;
  margin: -0.5rem;
}

.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-img:hover {
  filter: brightness(1.1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

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

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin: 2px 0;
}

.mobile-menu-btn span:first-child {
  margin-top: 0;
}

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

.mobile-menu-btn:hover {
  background: rgba(0, 102, 204, 0.1);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.mobile-menu-btn:hover span {
  background: var(--primary-blue);
  box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: var(--primary-blue);
  box-shadow: 0 2px 4px rgba(0, 102, 204, 0.3);
  margin: 0;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  margin: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--primary-blue);
  box-shadow: 0 2px 4px rgba(0, 102, 204, 0.3);
  margin: 0;
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: transparent;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 168, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(0, 64, 128, 0.05) 0%, transparent 50%);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  background: linear-gradient(-45deg, var(--primary-blue), var(--accent-blue), var(--secondary-blue), var(--primary-blue));
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
  font-weight: 500;
}

.hero-feature::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

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

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
}

.btn-hero-secondary {
  background: white;
  color: var(--primary-blue);
  padding: 1rem 2rem;
  border: 2px solid var(--primary-blue);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

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

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 102, 204, 0.2);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: float 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

.floating-card-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0.5s;
}

.floating-card-2 {
  bottom: -20px;
  left: -20px;
  animation-delay: 1s;
}

.card-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.card-info p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

.stats-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  padding: 4rem 0;
  margin-top: -2px;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.stat-card {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-section {
  padding: 6rem 0;
  background: transparent;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

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

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 32px 64px rgba(0, 102, 204, 0.15);
  border-color: rgba(0, 168, 255, 0.3);
  background: rgba(255, 255, 255, 0.8);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 168, 255, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.service-link {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 1rem;
}

.service-cta {
  margin-top: auto;
  padding-top: 1rem;
}

.service-cta .service-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  opacity: 0.8;
}

.service-card:hover .service-cta .service-link {
  opacity: 1;
  gap: 1rem;
}

.about-section {
  padding: 6rem 0;
  background: transparent;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 4rem;
  align-items: flex-start;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.badge-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}

.badge-text p {
  color: var(--gray-600);
  margin: 0;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 168, 255, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.highlight-text h4 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.highlight-text p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.5;
}

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  position: relative;
  overflow: hidden;
}

.cta-section::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.btn-cta {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-primary {
  background: white;
  color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-cta-secondary:hover {
  background: white;
  color: var(--primary-blue);
}

.contact-section {
  padding: 6rem 0;
  background: transparent;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.contact-text {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  transition: all 0.3s;
}

.contact-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.contact-detail h4 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-detail p {
  color: var(--gray-600);
  margin: 0;
}

.contact-detail a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail a:hover {
  color: var(--primary-blue);
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: var(--gray-700);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background: var(--gray-100);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.file-input-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.file-input-hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.file-input-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-blue);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.file-input-button:hover {
  background: var(--secondary-blue);
  transform: translateY(-1px);
}

.file-input-text {
  color: var(--gray-600);
  font-size: 0.9rem;
  flex: 1;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.footer {
  background: var(--dark-navy);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  backdrop-filter: blur(10px);
}

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

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-blue), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
  border-color: var(--primary-blue);
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  padding-left: 0;
  position: relative;
}

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

.footer-careers-link,
.footer-contact-link,
.footer-service-link {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  transition: all 0.3s !important;
  padding-left: 0 !important;
  position: relative !important;
}

.footer-careers-link:hover,
.footer-contact-link:hover,
.footer-service-link:hover {
  color: var(--accent-blue) !important;
  padding-left: 10px !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideInRight 0.5s ease;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
  position: relative;
}

.whatsapp-icon {
  width: 45px !important;
  height: 45px !important;
  max-width: 45px;
  max-height: 45px;
  border-radius: 50%;
  border: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  background: white;
  color: var(--gray-800);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(248, 250, 252, 0.5);
  backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  transform: scale(1.1);
}

img {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}



.main-content {
  min-height: calc(100vh - 140px);
}

@media (max-width: 768px) {
  .main-content {
    min-height: calc(100vh - 80px);
  }
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: calc(100vh - 140px);
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out;
}

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

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

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

.projects-section {
  padding: 6rem 0;
  background: transparent;
}

.projects-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 102, 204, 0.15);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-info {
  padding: 1.5rem;
}

.project-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.project-info p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.project-result {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

body.aos-loaded [data-aos] {
  opacity: 0;
}

body.aos-loaded [data-aos].aos-animate {
  opacity: 1;
}

@media (max-width: 1024px) {
  .hero-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image img {
    height: 300px;
  }

  .stats-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .tab-content {
    min-height: calc(100vh - 80px);
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 2rem 2rem;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    display: flex;
    opacity: 0;
    visibility: hidden;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu.active .nav-cta {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .nav-menu .tab-link {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    background: rgba(0, 102, 204, 0.08);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

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

  .nav-menu .tab-link:hover::before {
    left: 100%;
  }

  .nav-menu .tab-link:hover {
    background: rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
    transform: translateX(8px);
  }

  .nav-menu .tab-link.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    border-color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  }

  .nav-menu .nav-cta {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 25px;
    font-weight: 700;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .logo-img {
    height: 50px;
  }
  
  .nav-container {
    height: 80px;
  }

  .hero {
    min-height: 80vh;
  }

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

  .hero-features {
    flex-direction: column;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
  }

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

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .whatsapp-tooltip {
    display: none;
  }
  
  .service-card,
  .project-card {
    min-height: 44px;
    cursor: pointer;
  }
  
  .hero-buttons {
    gap: 1rem;
  }
  
  .hero-buttons .btn-hero-primary,
  .hero-buttons .btn-hero-secondary {
    min-height: 48px;
    font-size: 1rem;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}

.modal-content {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  margin: 2% auto;
  padding: 0;
  border-radius: 24px;
  width: 90%;
  max-width: 900px;
  max-height: 95vh;
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: white;
  padding: 3rem 2rem 2rem;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
  opacity: 0.3;
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.modal-header h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.modal-body {
  padding: 2.5rem 2rem 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  font-size: 1.05rem;
  max-height: 60vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 102, 204, 0.3) rgba(0, 0, 0, 0.1);
}

.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: rgba(248, 250, 252, 0.8);
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
}

.modal-body h4 {
  color: var(--gray-900);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-body h4::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  border-radius: 2px;
}

.modal-body ul {
  margin: 1rem 0 1.5rem 0;
  padding-left: 0;
}

.modal-body li {
  list-style: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s;
}

.modal-body li:last-child {
  border-bottom: none;
}

.modal-body li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-body li:hover {
  background: var(--gray-50);
  padding-left: 1rem;
  margin: 0 -1rem;
  border-radius: 8px;
}

.modal-footer {
  padding: 2rem;
  text-align: center;
  background: var(--gray-50);
  border-radius: 0 0 24px 24px;
  border-top: 1px solid var(--gray-200);
}

.btn-modal {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.3);
  position: relative;
  overflow: hidden;
}

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

.btn-modal:hover::before {
  left: 100%;
}

.btn-modal:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.4);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



@media (max-width: 768px) {
  .footer-logo {
    height: 80px;
    padding: 10px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .job-requirements {
    flex-direction: column;
  }
  
  .application-form {
    padding: 2rem 1.5rem;
  }
  
  .modal-content {
    margin: 2% auto;
    width: 96%;
    max-width: none;
    border-radius: 20px;
    max-height: 96vh;
  }
  
  .modal-header {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    border-radius: 20px 20px 0 0;
  }
  
  .modal-header h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  
  .modal-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .modal-body {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 0.95rem;
    max-height: 65vh;
    line-height: 1.6;
  }
  
  .modal-body h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem 0;
  }
  
  .modal-body ul {
    margin: 0.75rem 0 1rem 0;
  }
  
  .modal-body li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }
  
  .modal-footer {
    padding: 1.5rem;
    border-radius: 0 0 20px 20px;
  }
  
  .btn-modal {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98%;
    margin: 1% auto;
    max-height: 98vh;
  }
  
  .modal-header {
    padding: 1.5rem 1rem 1rem;
  }
  
  .modal-header h2 {
    font-size: 1.25rem;
  }
  
  .modal-body {
    padding: 1rem 1rem 0.5rem;
    max-height: 70vh;
    font-size: 0.9rem;
  }
  
  .modal-body h4 {
    font-size: 1rem;
  }
  
  .modal-footer {
    padding: 1rem;
  }
  
  .btn-modal {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .main-content, .tab-content {
    min-height: calc(100vh - 70px);
  }

  .section-title {
    font-size: 2rem;
  }

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

  .nav-container {
    padding: 0 1rem;
    height: 70px;
  }
  
  .logo-img {
    height: 45px;
  }

  .hero-container,
  .stats-container,
  .services-grid,
  .about-container,
  .contact-container,
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-logo {
    height: 70px;
    padding: 8px;
  }
}


.contact-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  background: var(--gray-100);
  padding: 0.5rem;
  border-radius: 16px;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.contact-toggle-btn {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--gray-600);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.contact-toggle-btn:hover {
  color: var(--primary-blue);
  background: rgba(0, 102, 204, 0.1);
}

.contact-toggle-btn.active {
  background: var(--primary-blue);
  color: white;
  box-shadow: var(--shadow-lg);
}

.contact-type-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.contact-type-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.4s ease;
}

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

.job-status {
  background: var(--light-blue);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e1f0ff;
  margin: 2rem 0;
}

.job-status h4 {
  color: var(--primary-blue);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.job-status p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .contact-toggle {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.25rem;
  }
  
  .contact-toggle-btn {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefit-item {
    padding: 1rem;
  }
}

