/* Font declarations */
@font-face {
  font-family: "Xeroda";
  src: url("https://fonts.cdnfonts.com/s/1021980/Xeroda.woff2") format("woff2"),
    url("https://fonts.cdnfonts.com/s/1021980/Xeroda.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #8e61f8;
  --secondary: #3498fe;
  --dark: #111;
  --darker: #0a0a0a;
  --light: #f5f5f5;
  --gray: #666;
  --gray-text: #999;
  --gray-border: #333;
  --gradient: linear-gradient(45deg, var(--primary), var(--secondary));
  --gradient-hover: linear-gradient(45deg, var(--secondary), var(--primary));
  --primary-light: #9e7cf9;
  --light-text: #f0f0f0;
  --font-heading: "Xeroda", sans-serif;
  --font-body: "Andika", sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}

/* Apply Xeroda to all headings */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.gradient-title,
.form-title,
.contact-info-title,
.logo,
.footer-logo {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

/* Enhance heading styles */
.gradient-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGradient 8s ease infinite;
}

@keyframes titleGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 1.8rem;
}

/* Enhance body text */
p,
input,
textarea,
button,
a {
  font-family: var(--font-body);
  line-height: 1.6;
}

/* Enhance feature card headings */
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
  letter-spacing: 0.5px;
}

/* Enhance team member names */
.team-member-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  color: white;
  letter-spacing: 0.3px;
}

/* Enhance logo */
.logo {
  font-size: 1.8rem;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: var(--transition-normal);
  position: relative;
  z-index: 2;
}

.logo:hover {
  transform: scale(1.05);
  background: var(--gradient-hover);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Enhance footer logo */
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}

body {
  background-color: var(--dark);
  color: var(--light-text);
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
}

/* Background Video */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}

/* Enhanced Header Styles */
header {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

nav {
  display: flex;
  align-items: center;
}

/* Enhanced Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 45px;
  height: 35px;
  cursor: pointer;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-toggle:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--gradient);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform-origin: center;
}

.menu-toggle.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#navMenu {
  display: flex;
  align-items: center;
  position: relative;
}

#navMenu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition-normal);
}

#navMenu ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

#navMenu li {
  position: relative;
}

.nav-link {
  color: var(--light-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link i {
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover i {
  transform: scale(1.1);
}

.nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--primary);
  background: rgba(142, 97, 248, 0.1);
}

.nav-link.active i {
  color: var(--primary);
}

main {
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}

.page {
  display: none;
  padding: 2rem 0;
}

.page.active {
  display: block;
}

h1.gradient-title {
  text-align: center;
  margin-bottom: 3rem;
  animation: titleGradient 8s ease infinite;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

p {
  color: var(--gray-text);
  margin-bottom: 1.5rem;
}

.hero {
  text-align: center;
  padding: 4rem 0;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.feature-card:hover::before {
  opacity: 0.1;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--light-text);
}

.feature-card .subtitle {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card p {
  margin-bottom: 1.5rem;
}

.analyze-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.analyze-form:hover {
  border-color: var(--primary);
}

.form-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.form-subtitle {
  color: var(--gray-text);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--light-text);
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-border);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  font-size: 1rem;
  transition: var(--transition-normal);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(142, 97, 248, 0.2);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: none;
  gap: 0.5rem;
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(142, 97, 248, 0.2);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142, 97, 248, 0.3);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(142, 97, 248, 0.2);
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn.btn-purple {
  background: var(--gradient);
  color: white;
}

.btn.btn-purple:hover {
  background: var(--gradient-hover);
}

.btn.clicked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
  animation: ripple 0.7s ease-out;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes wobble {
  0%,
  100% {
    transform: translateX(0%);
    transform-origin: 50% 50%;
  }
  15% {
    transform: translateX(-5px) rotate(-5deg);
  }
  30% {
    transform: translateX(3px) rotate(3deg);
  }
  45% {
    transform: translateX(-3px) rotate(-3deg);
  }
  60% {
    transform: translateX(2px) rotate(2deg);
  }
  75% {
    transform: translateX(-1px) rotate(-1deg);
  }
}

.empty-state {
  text-align: center;
  padding: 3rem 0;
}

.empty-state i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.empty-state h3 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.empty-state p {
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Team Section Styles */
.team-section {
  margin-top: 4rem;
  padding: 2rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 1;
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.team-member:hover::before {
  opacity: 0.1;
}

.team-member-img {
  width: 100%;
  height: 200px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.team-member-info {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.team-member-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--light-text);
  font-weight: 600;
}

.team-member-info p {
  color: var(--gray-text);
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-detail p {
  color: var(--gray-text);
  font-size: 1rem;
}

footer {
  background: rgba(17, 17, 17, 0.95);
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-content p {
  color: var(--gray-text);
}

.hidden {
  display: none;
}

/* Form Messages */
.success-message,
.error-message {
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: slideDown 0.3s ease-out;
}

.success-message {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

.error-message {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

.success-message i,
.error-message i {
  font-size: 1.2rem;
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  #navMenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    transition: var(--transition-normal);
    z-index: 1000;
  }

  #navMenu.active {
    left: 0;
  }

  #navMenu ul {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 1rem;
  }

  .nav-link i {
    font-size: 1.3rem;
  }

  .nav-link::before {
    display: none;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-member-img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .gradient-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .analyze-form {
    padding: 1.5rem;
  }

  .btn {
    width: 100%;
  }
}

/* Contact Form Styles */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--light-text);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-border);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(142, 97, 248, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button[type="submit"] {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

.contact-form button[type="submit"] i {
  margin-right: 0.5rem;
}

/* Analyze Page Styles */
.analyze-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.search-tab-btn {
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-sm);
  background: var(--dark);
  border: 1px solid var(--primary);
  color: var(--light-text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-tab-btn.active {
  background: var(--gradient);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(142, 97, 248, 0.2);
}

.search-tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(142, 97, 248, 0.2);
}

.search-forms {
  margin-bottom: 2rem;
}

.search-form {
  display: none;
}

.search-form.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.search-form .form-group {
  display: flex;
  gap: 1rem;
}

.search-form input {
  flex: 1;
  padding: 1rem;
  border: 1px solid var(--gray-border);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.search-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(142, 97, 248, 0.2);
}

.analyze-btn {
  padding: 1rem 1.5rem;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.analyze-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(142, 97, 248, 0.2);
}

.analyze-btn:active {
  transform: translateY(0);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: none;
  gap: 0.5rem;
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(142, 97, 248, 0.2);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142, 97, 248, 0.3);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(142, 97, 248, 0.2);
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn.btn-purple {
  background: var(--gradient);
  color: white;
}

.btn.btn-purple:hover {
  background: var(--gradient-hover);
}

/* Contact Form Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--light-text);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-border);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(142, 97, 248, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 768px) {
  .analyze-container {
    padding: 1rem;
  }

  .search-tabs {
    flex-direction: column;
  }

  .search-form .form-group {
    flex-direction: column;
  }

  .analyze-btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
