/* Algoinsu Inc. Website Styles - Enhanced with Futuristic Design */

:root {
  --primary-color: #7a0c25; /* Burgundy from logo */
  --secondary-color: #d4b872; /* Gold from logo */
  --accent-color: #00c8ff; /* Futuristic blue accent */
  --dark-color: #121212;
  --light-color: #f8f9fa;
  --success-color: #00e676;
  --error-color: #ff1744;
  --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: 1px solid rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --gradient-bg: linear-gradient(135deg, rgba(122, 12, 37, 0.95), rgba(60, 6, 18, 0.95));
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

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

/* Futuristic Elements */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glow {
  position: relative;
}

.glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  box-shadow: 0 0 20px 5px var(--accent-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.glow:hover::after {
  opacity: 0.5;
}

.animated-gradient {
  background: linear-gradient(-45deg, var(--primary-color), var(--dark-color), #3c0612, var(--secondary-color));
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

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

/* Header */
.header {
  background-color: rgba(18, 18, 18, 0.95);
  color: #fff;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: var(--box-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  background-color: rgba(18, 18, 18, 0.98);
}

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

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

.logo {
  height: 60px;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

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

.company-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.company-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.logo-container:hover .company-name::after {
  transform: translateX(0);
}

.tagline {
  font-size: 1rem;
  color: var(--secondary-color);
  font-style: italic;
  opacity: 0.9;
}

.nav-menu {
  display: flex;
}

.nav-item {
  margin-left: 25px;
  position: relative;
}

.nav-link {
  color: #fff;
  font-weight: 500;
  transition: var(--transition);
  padding: 5px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu {
  display: none;
  cursor: pointer;
  color: var(--secondary-color);
  font-size: 1.5rem;
  transition: var(--transition);
}

.mobile-menu:hover {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  background: var(--gradient-bg), url('../images/insurance-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:hover::before {
  transform: translateX(100%);
}

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

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

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

/* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--light-color), #f0f0f0);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4b872' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  background: var(--primary-color);
  color: var(--secondary-color);
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  top: -50%;
  left: -50%;
  transition: var(--transition);
}

.service-card:hover .service-icon::before {
  transform: scale(1.2);
}

.service-content {
  padding: 30px;
}

.service-title {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 1.5px;
}

.service-text {
  margin-bottom: 20px;
  color: #555;
}

/* Quote Form Section */
.quote-section {
  background: #f9f9f9;
  padding: 100px 0;
  position: relative;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23000000' fill-opacity='0.05' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
  opacity: 0.5;
}

.form-container {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-tabs {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.form-tab {
  padding: 15px 25px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  font-weight: 500;
  color: #777;
  position: relative;
  overflow: hidden;
}

.form-tab::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.form-tab:hover {
  color: var(--primary-color);
}

.form-tab.active {
  color: var(--primary-color);
  font-weight: 600;
}

.form-tab.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.form-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

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

.form-content.active {
  display: block;
}

.form-content h3 {
  margin-bottom: 25px;
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 600;
}

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

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

.form-input,
.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  background-color: #f9f9f9;
  color: #333;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.1);
  outline: none;
  background-color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.form-submit {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(122, 12, 37, 0.3);
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
}

.form-submit:hover {
  background: #5a0a1c;
  box-shadow: 0 7px 20px rgba(122, 12, 37, 0.4);
}

.form-submit:hover::before {
  transform: translateX(100%);
}

/* Error and Success Messages */
.error-message {
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 5px;
  animation: fadeIn 0.3s ease;
}

.success-message {
  background-color: rgba(0, 230, 118, 0.1);
  color: var(--success-color);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid var(--success-color);
  animation: fadeIn 0.5s ease;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 184, 114, 0.1) 0%, rgba(212, 184, 114, 0) 70%);
  top: -150px;
  left: -150px;
  border-radius: 50%;
}

.about::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(122, 12, 37, 0.1) 0%, rgba(122, 12, 37, 0) 70%);
  bottom: -150px;
  right: -150px;
  border-radius: 50%;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(122, 12, 37, 0.3), rgba(212, 184, 114, 0.3));
  opacity: 0.6;
  transition: var(--transition);
}

.about-image:hover::before {
  opacity: 0.4;
}

.about-image img {
  transition: transform 0.5s ease;
  display: block;
}

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

.about-content h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.about-text {
  margin-bottom: 25px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Contact Section */
.contact {
  background: var(--gradient-bg);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.contact h2 {
  color: var(--secondary-color);
  position: relative;
  z-index: 1;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info h3 {
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 1.5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  margin-right: 15px;
  color: var(--secondary-color);
  font-size: 1.5rem;
  background: rgba(212, 184, 114, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: rgba(212, 184, 114, 0.2);
  transform: scale(1.1);
}

.contact-form .form-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary-color);
}

.contact-form .form-submit {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.contact-form .form-submit:hover {
  background: #c0a55e;
}

.social-links {
  display: flex;
  margin-top: 25px;
}

.social-link {
  height: 40px;
  width: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  transition: var(--transition);
  color: var(--secondary-color);
}

.social-link:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-5px);
}

/* Footer */
.footer {
  background: #121212;
  color: #fff;
  padding: 70px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-about p {
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-title {
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-size: 1.2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 1.5px;
}

.footer-links li {
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: #aaa;
  transition: var(--transition);
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  transition: var(--transition);
}

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

.footer-links a:hover::before {
  transform: translateX(3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #777;
  font-size: 0.9rem;
}

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

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

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: 2;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }
  
  .logo-container {
    margin-bottom: 15px;
    justify-content: center;
  }
  
  .nav-menu {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .nav-item {
    margin: 10px;
    width: 100%;
    text-align: center;
  }
  
  .mobile-menu {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .form-tabs {
    flex-wrap: wrap;
  }
  
  .form-tab {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 25px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-title::after,
  .contact-info h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .social-links {
    justify-content: center;
  }
}
