/* Variables globales */
:root {
  --primary-color: #184166;
  --secondary-color: #2d5f73;
  --accent-color: #8c6a5c;
  --dark-color: #0d1524;
  --light-color: #d2dbe6;
  --gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  --transition: all 0.3s ease;
  --purple-bg: #142336;
  --dark-custom: #142336;
  --text-color: #1b2430;
  --muted-text: #4e5e72;
  --surface: #c0cbd9;
  --surface-alt: #b3bfce;
  --surface-card: #d1d9e4;
  --border-soft: #a5b2c4;
}

/* Estilos generales */
body {
  font-family: "Roboto", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  padding-top: 76px;
  width: 100%;
  background: linear-gradient(180deg, #c0cbd9 0%, #b0bccb 100%);
  line-height: 1.6;
}

.tech-divider {
  position: relative;
  height: 48px;
  width: 100%;
  display: block;
  overflow: hidden;
  --divider-line: 28vw;
  background: linear-gradient(90deg, rgba(12, 18, 30, 0.98), rgba(16, 26, 40, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(120, 201, 255, 0.06) 0%, rgba(120, 201, 255, 0) 65%),
    linear-gradient(90deg, rgba(27, 58, 87, 0.25) 0%, rgba(12, 18, 30, 0) 75%);
  opacity: 0.55;
  animation: dividerPulse 10s ease-in-out infinite;
}

.tech-divider span {
  position: absolute;
  top: 50%;
  left: 0;
  width: var(--divider-line);
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 201, 255, 0), rgba(120, 201, 255, 0.35), rgba(120, 201, 255, 0));
  box-shadow: 0 0 12px rgba(120, 201, 255, 0.2);
  animation: dividerScan 12s linear infinite;
  will-change: transform;
}

.tech-divider span:nth-child(1) {
  animation-delay: 0s;
}

.tech-divider span:nth-child(2) {
  animation-delay: 3s;
  opacity: 0.45;
}

.tech-divider span:nth-child(3) {
  animation-delay: 6s;
  opacity: 0.35;
}

@keyframes dividerScan {
  0% {
    transform: translateX(calc(-1 * var(--divider-line) - 10vw)) translateY(-50%);
  }
  100% {
    transform: translateX(calc(100% + var(--divider-line) + 10vw)) translateY(-50%);
  }
}

@keyframes dividerPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.9;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.3;
}

/* Navbar mejorada */
.navbar {
  padding: 15px 0;
  transition: var(--transition);
  background: rgba(11, 18, 32, 0.96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.navbar-scrolled {
  padding: 8px 0;
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  font-size: 1rem;
  color: white !important;
  transition: var(--transition);
}

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

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

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

.animate {
  animation: fadeIn 1s ease forwards;
}

/* Hero Section */
.solution-hero {
  position: relative;
  min-height: 500px; /* o lo que prefieras */
  padding: 150px 0 100px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* se comporta como background-size: cover */
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 64, 0.7); /* capa oscura encima del video */
  z-index: -1;
}

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

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 0.3s both;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  animation: fadeIn 1s ease 0.6s both;
}

/* Botones */
.btn-primary {
  background: var(--gradient);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  color: white;
  box-shadow: 0 4px 15px rgba(43, 79, 108, 0.35);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  transition: var(--transition);
  z-index: -1;
}

.btn-primary:hover::before {
  width: 100%;
}

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

.btn-outline-light {
  border: 2px solid white;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--surface-card);
  color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(15, 23, 42, 0.15);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(18, 140, 126, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.whatsapp-float i {
  font-size: 1.6rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(18, 140, 126, 0.45);
  opacity: 0.95;
}

.whatsapp-float:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

@media (max-width: 576px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 11px 16px;
    font-size: 0.95rem;
  }
}

/* ============================= */
/*    TECH AMBIENT ANIMATIONS    */
/* ============================= */
.solution-hero,
.solution-section {
  position: relative;
  overflow: hidden;
}

.tech-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.tech-ambient::before {
  content: "";
  position: absolute;
  inset: -30%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.25;
  animation: techGrid 24s linear infinite;
}

.tech-ambient::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 20%, rgba(33, 73, 110, 0.35), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(43, 88, 106, 0.35), transparent 50%);
  opacity: 0.7;
  animation: techGlow 18s ease-in-out infinite;
}

.tech-ambient span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(120, 201, 255, 0.55);
  box-shadow: 0 0 18px rgba(120, 201, 255, 0.6);
  animation: floatNode 10s ease-in-out infinite;
}

.tech-ambient span:nth-child(1) {
  top: 18%;
  left: 12%;
  width: 10px;
  height: 10px;
  animation-duration: 9s;
}

.tech-ambient span:nth-child(2) {
  top: 35%;
  left: 70%;
  width: 16px;
  height: 16px;
  animation-duration: 12s;
}

.tech-ambient span:nth-child(3) {
  bottom: 22%;
  left: 22%;
  width: 12px;
  height: 12px;
  animation-duration: 11s;
}

.tech-ambient span:nth-child(4) {
  bottom: 18%;
  right: 18%;
  width: 18px;
  height: 18px;
  animation-duration: 13s;
}

.tech-ambient span:nth-child(5) {
  top: 12%;
  right: 25%;
  width: 9px;
  height: 9px;
  animation-duration: 8s;
}

.tech-ambient span:nth-child(6) {
  top: 62%;
  left: 45%;
  width: 14px;
  height: 14px;
  animation-duration: 10s;
}

.hero-content {
  position: relative;
  z-index: 2;
}

@keyframes techGrid {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(80px, 80px, 0) rotate(0.5deg);
  }
}

@keyframes techGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.9;
    transform: translate3d(-20px, 15px, 0);
  }
}

@keyframes floatNode {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-18px) scale(1.15);
    opacity: 0.65;
  }
}

@media (max-width: 768px) {
  .tech-ambient::before {
    background-size: 120px 120px;
  }

  .tech-ambient span {
    box-shadow: 0 0 12px rgba(120, 201, 255, 0.45);
  }
}

.btn-download {
  background: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(43, 79, 108, 0.35);
}

.btn-download:hover {
  background: #244560;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(43, 79, 108, 0.45);
}

/* Secciones de solución */
.solution-intro {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
}

.solution-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.solution-intro h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.solution-intro .lead {
  font-size: 1.2rem;
  color: var(--muted-text);
  max-width: 800px;
  margin: 40px auto 0;
}

.solution-section {
  padding: 100px 0;
  position: relative;
}

.solution-section.bg-light {
  background-color: var(--surface-alt) !important;
}

.bg-dark-custom {
  background: var(--dark-custom) !important;
}

/* Títulos de sección */
.section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.solution-section.bg-dark-custom .section-main-title {
  color: white !important;
}

.section-main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.solution-section.bg-dark-custom .section-main-title::after {
  background: var(--secondary-color);
}

.solution-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.solution-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 10px;
}

.solution-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient);
}

.solution-features {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.solution-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  transition: var(--transition);
  padding: 8px 10px;
  border-radius: 5px;
}

.solution-features li:hover {
  background: rgba(30, 187, 163, 0.1);
  transform: translateX(5px);
}

.solution-section.bg-dark-custom .solution-features li:hover {
  background: rgba(255, 255, 255, 0.1);
}

.solution-features i {
  color: var(--secondary-color);
  margin-right: 12px;
  font-size: 1.1rem;
  margin-top: 4px;
  min-width: 20px;
}

.solution-section.bg-dark-custom .solution-features i {
  color: white !important;
}

.solution-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.solution-image img {
  transition: var(--transition);
  width: 100%;
  height: auto;
}

.solution-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-image:hover img {
  transform: scale(1.03);
}

/* Tarjetas */
.card {
  transition: var(--transition);
  border: none !important;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.card-text {
  color: #666;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d1524 0%, #1a314b 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
  position: relative;
  font-size: 2.5rem;
}

.cta-section .lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  background-color: #101826;
  color: white;
  padding: 60px 0 30px;
  width: 100%;
}

.footer-brand img {
  margin-bottom: 20px;
}

.footer-description {
  color: #ccc;
  margin-bottom: 20px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-size: 1.2rem;
  color: white;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  color: #999;
}

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .solution-content h2 {
    font-size: 2rem;
  }

  .solution-content h3 {
    font-size: 1.6rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-main-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .solution-hero {
    padding: 120px 0 80px;
  }

  .solution-hero .hero-title {
    font-size: 2.5rem;
  }

  .solution-hero .hero-subtitle {
    font-size: 1.2rem;
  }

  .solution-section {
    padding: 80px 0;
  }

  .solution-intro {
    padding: 80px 0;
  }

  .solution-intro h2 {
    font-size: 2rem;
  }

  .solution-content h2 {
    font-size: 1.8rem;
  }

  .solution-image {
    margin-top: 40px;
  }

  .cta-section {
    padding: 80px 0;
  }

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

@media (max-width: 576px) {
  .solution-hero .hero-title {
    font-size: 2rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .hero-buttons .ms-3 {
    margin-left: 0 !important;
  }

  .solution-intro h2 {
    font-size: 1.8rem;
  }

  .solution-content h3 {
    font-size: 1.5rem;
  }

  .section-main-title {
    font-size: 1.8rem;
  }

  .card-body {
    padding: 1.5rem;
  }
}

/* Iconos grandes para secciones */
.section-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.bg-dark-custom .section-icon {
  color: var(--secondary-color);
}

/* Mejoras para botones de descarga */
.btn-download {
  position: relative;
  overflow: hidden;
}

.btn-download .btn-text {
  transition: opacity 0.3s ease;
}

.btn-download .loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
}

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

.btn-download.downloading {
  pointer-events: none;
}

.btn-download.downloading .btn-text {
  opacity: 0;
}

.btn-download.downloading .loading-spinner {
  display: block;
}

.btn-download.success {
  background-color: #28a745;
}

.btn-download.success:hover {
  background-color: #218838;
}

/* Estilos específicos para la página de Ciberseguridad */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--surface-card);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  border-left: 4px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-left: 4px solid var(--secondary-color);
}

.service-card i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-card p {
  color: #666;
}

.approach-item {
  display: flex;
  margin-bottom: 30px;
}

.approach-icon {
  flex: 0 0 60px;
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 20px;
}

.approach-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.approach-content p {
  color: #666;
}

/* Contact Form Styles */
.contact-form-card {
  background: rgba(16, 16, 53, 0.95); /* 🔹 Fondo morado translúcido */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 40px 30px;
  transition: all 0.3s ease;
  color: white; /* 🔹 Asegura que el texto se vea sobre el fondo oscuro */
}
.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}
/* Títulos */
.contact-form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
  color: white; /* 🔹 Cambiado a blanco */
}

/* Labels */
.contact-form-card label {
  font-weight: 600;
  color: #ddd; /* 🔹 Mejor contraste sobre fondo oscuro */
  margin-bottom: 8px;
  display: inline-block;
}

/* Inputs y textarea */
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1); /* 🔹 Semi-transparente */
  color: white;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #bbb; /* 🔹 Placeholder visible */
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(43, 79, 108, 0.25);
}

/* Textarea ajuste */
.contact-form-card textarea {
  resize: none;
  min-height: 120px;
}

/* Botón */
.contact-form-card button {
  background: var(--gradient);
  color: white;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  width: 100%;
  margin-top: 10px;
}

.contact-form-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
/* Fondo de la sección del formulario */
.contact-form-section {
  background: linear-gradient(135deg, #0d1524 0%, #1a314b 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(44,111,214,0.03)"/></svg>');
  background-size: cover;
  pointer-events: none; /* 🔹 Esto evita que bloquee el formulario */
}

/* Estilos para el modal de formulario */
#contactFormModal .modal-content {
  background: rgba(16, 16, 53, 0.95);
  border-radius: 15px;
  border: none;
  color: white;
}

#contactFormModal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 30px 10px;
}

#contactFormModal .modal-title {
  font-weight: 700;
  color: white;
}

#contactFormModal .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

#contactFormModal .modal-body {
  padding: 10px 30px 30px;
}

#contactFormModal .form-label {
  font-weight: 600;
  color: #ddd;
  margin-bottom: 8px;
}

#contactFormModal .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  padding: 12px 15px;
}

#contactFormModal .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #2c6fd6;
  box-shadow: 0 0 0 3px rgba(43, 79, 108, 0.25);
  color: white;
}

#contactFormModal .form-control::placeholder {
  color: #bbb;
}

#contactFormModal .btn-primary {
  background: linear-gradient(135deg, #2c6fd6, #1a4fac);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  padding: 14px;
  transition: all 0.3s ease;
  width: 100%;
}

#contactFormModal .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
