:root {
  /* Primary Color Palette */
  --primary-dark: #0f172a;
  --primary-medium: #1e293b;
  --primary-light: #334155;

  /* Accent Colors */
  --accent-primary: #0d9488;
  --accent-secondary: #14b8a6;
  --accent-tertiary: #2dd4bf;

  /* Gradient Definitions */
  --gradient-primary: linear-gradient(
    135deg,
    #0f172a 0%,
    #1e293b 50%,
    #334155 100%
  );
  --gradient-accent: linear-gradient(
    135deg,
    #0d9488 0%,
    #14b8a6 50%,
    #2dd4bf 100%
  );
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

  /* Background Colors */
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-card: rgba(30, 41, 59, 0.95);
  --bg-panel: rgba(45, 55, 72, 0.9);

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-accent: #14b8a6;

  /* Border and Effects */
  --border-primary: rgba(148, 163, 184, 0.2);
  --shadow-primary: 0 10px 25px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Josefin Sans", sans-serif !important;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--primary-dark);
  overflow-x: hidden;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  height: 5rem;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(49, 49, 49, 0.564);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 98px;
}


/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  background-attachment: fixed;
  padding: 70px 0 0;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 3rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 70px);
}

/* Hero Content */
.hero-content {
  padding: 2rem 0;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #34f8ff 0%, #3aff96 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.brand-highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* Trust Indicators */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent-primary);
}

.trust-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 12px;
  color: white;
  font-size: 1.2rem;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.trust-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Hero Form */
.hero-form {
  padding: 2rem 0;
  justify-content: center;
  display: flex;

  align-items: center;
}

.form-container {
  width: 100%;
  max-width: max-content;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-primary);
  box-shadow: var(--shadow-primary);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #49f3ff 0%, #80ffb5c7 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  color: rgb(187, 187, 187);
  line-height: 1;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

/* Center placeholder text in inputs and textarea */
.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: var(--text-muted);
  opacity: 1;
  font-size: 1rem;
  line-height: 1.2;
  vertical-align: middle;
}

/* Remove extra top padding for input/textarea when placeholder is shown */
.form-group input,
.form-group textarea,
.form-group select {
  padding-top: 1.25rem;
  padding-bottom: 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-secondary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* Floating label styles */
.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left top;
}

.form-group.focused label,
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
  transform: translateY(-0.5rem) scale(0.85);
  color: var(--accent-secondary);
}

/* Dropdown-specific adjustment */
.form-group select:focus + label,
.form-group select:not(:placeholder-shown) + label {
  transform: translateY(-0.5rem) scale(0.85);
  color: var(--accent-secondary);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--primary-medium);
  color: var(--text-primary);
}

.submit-btn {
  background: var(--gradient-accent);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Footer */
.footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--border-primary);
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  color: var(--accent-secondary);
}

.footer-section h4 {
  font-size: 1.1rem;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-secondary);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item h5 {
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-primary);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-certifications h5 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.cert-badges {
  display: flex;
  gap: 0.5rem;
}

.cert-badge {
  background: var(--gradient-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer-legal p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .trust-indicators {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    align-items: center;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .form-container {
    padding: 1.5rem 1rem;
  }

  .trust-item {
    padding: 1rem;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .trust-number {
    font-size: 1.25rem;
  }
}

.contact-video-section {
  position: relative;
  background-color: #233145;
  width: 100vw;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.contact-bg-video {
  position: absolute;
  width: 80vw;
  height: 70vh;
  border-radius: 12px;
  object-fit: cover;
  z-index: 0;
}

.gradient-text {
  background: linear-gradient(90deg, #34f8ff 0%, #8cffc9 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Footer Styles */
.premium-footer {
  background: linear-gradient(135deg, #0f172a 0%, #0d2538 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(20, 184, 166, 0.2);
  color: #f8fafc;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(20, 184, 166, 0.05) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(13, 148, 136, 0.05) 0%,
      transparent 30%
    );
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 90rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-column {
  padding: 0 1rem;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
  color: #f8fafc;
  font-weight: 600;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #14b8a6, #0ea5e9);
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #f8fafc;
  background: #14b8a6;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #14b8a6;
  transform: translateX(5px);
}

.footer-links a i {
  margin-right: 10px;
  color: #14b8a6;
  width: 20px;
  text-align: center;
  font-size: 0.8rem;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-icon {
  color: #14b8a6;
  margin-right: 15px;
  font-size: 1rem;
  margin-top: 3px;
}

.contact-text {
  flex: 1;
}

.contact-text strong {
  display: block;
  color: #f8fafc;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.contact-text p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 90rem;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  color: #94a3b8;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #14b8a6;
}

.back-to-top {
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  color: #f8fafc;
  background: #14b8a6;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}
