/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #121212;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: #1e1e1e;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00aeef;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-logo a:hover {
  color: #ffffff;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #00aeef;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00aeef;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #cccccc;
  line-height: 1.6;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-placeholder {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #00aeef 0%, #1e90ff 100%);
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
  background: linear-gradient(135deg, #1e90ff 0%, #00aeef 100%);
}

/* Sections */
.what-we-do,
.service-section,
.about-section,
.founder-section {
  padding: 80px 0;
}

.what-we-do {
  background-color: #1e1e1e;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-content p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
}

/* Page Headers */
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
}

/* Service Sections */
.service-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #00aeef;
}

.service-text {
  margin-bottom: 2rem;
}

.service-text p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* About Page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image {
  display: flex;
  justify-content: center;
}

.founder-placeholder {
  animation: float 8s ease-in-out infinite;
}

.founder-content {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.founder-content p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Consultation Page */
.consultation-header {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
}

.consultation-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.consultation-subtitle {
  font-size: 1.5rem;
  color: #00aeef;
  font-weight: 500;
}

.consultation-form-section {
  padding: 60px 0 80px;
  background-color: #1e1e1e;
}

.consultation-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #2a2a2a;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #444;
  border-radius: 8px;
  background-color: #1e1e1e;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00aeef;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #00aeef 0%, #1e90ff 100%);
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
  background: linear-gradient(135deg, #1e90ff 0%, #00aeef 100%);
}

.success-message {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: center;
  background-color: #2a2a2a;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #00aeef;
}

.success-message h3 {
  color: #00aeef;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.success-message p {
  color: #cccccc;
  font-size: 1.1rem;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.legal-meta {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
}

.legal-meta p {
  color: #cccccc;
  margin-bottom: 0.5rem;
}

.legal-content {
  max-width: 800px;
}

.legal-content p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00aeef;
  margin: 2rem 0 1rem;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
  color: #cccccc;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #1e1e1e;
  padding: 3rem 0;
  border-top: 1px solid #333;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2a2a2a;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #00aeef;
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00aeef;
}

.footer-links span {
  color: #666;
}

.footer-copyright p {
  color: #cccccc;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #1e1e1e;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .consultation-title {
    font-size: 2rem;
  }

  .consultation-subtitle {
    font-size: 1.2rem;
  }

  .consultation-form {
    padding: 2rem;
    margin: 0 1rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .consultation-form {
    padding: 1.5rem;
  }

  .legal-title {
    font-size: 2rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.section-content,
.service-content,
.about-content,
.founder-content,
.consultation-form {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
input:focus,
textarea:focus,
button:focus,
a:focus {
  outline: 2px solid #00aeef;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar,
  .footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .hero,
  .page-header {
    padding: 2rem 0;
  }
}
