:root {
  --primary-teal: #0F4C4C;
  --primary-black: #1A1A1A;
  --accent-teal: #10B9A6;
  --accent-coral: #E76F51;
  --white: #FFFFFF;
  --light-gray: #F7F9FB;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  color: var(--white);
}

.App {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */
.navbar {
  background-color: var(--primary-black);
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 40px;
  width: auto;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  list-style: none;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

.navbar-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-links img {
  width: 24px;
  height: 24px;
}

/* Buttons */
.btn-primary {
  background-color: var(--accent-teal);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  border-radius: 0;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #21a6a6;
}

.btn-secondary {
  background-color: var(--accent-coral);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  border-radius: 0;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #d65f41;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, var(--primary-black), var(--accent-teal));
  padding: 8rem 20rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  max-width: 700px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: right;
  align-items: right;
  opacity: 0.3;
}

.hero-image img {
  max-width: 1000px;
  height: auto;
}

/* Sections */
.section {
  padding: 5rem 2rem;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

/* Services */
.services {
  background-color: #e1e1e1;
  color: var(--primary-black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.service-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-teal);
}

/* About */
.about {
  background-color: var(--accent-teal);
  color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* Contact */
.contact {
  background-color: #e1e1e1;
  color: var(--primary-black);
  flex: 1;
}

.contact-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.contact-form {
  flex: 1;
}

.contact-form p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-form form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form div {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-black);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  color: var(--primary-black);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 2px rgba(15, 76, 76, 0.2);
}

.contact-form button {
  width: 100%;
  background-color: var(--accent-coral);
  color: var(--white);
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #d65f41;
}

.contact-info {
  flex: 1;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--primary-black);
}

.contact-info a {
  color: var(--primary-teal);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--accent-coral);
}

/* Footer */
.footer {
  background-color: var(--primary-black);
  padding: 3rem 2rem;
  color: var(--white);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand a {
  text-decoration: none;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--white);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-column-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-link {
  color: var(--accent-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-column p {
  color: var(--white);
  margin: 0;
}

.footer-column a {
  color: var(--accent-teal);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--accent-coral);
}

/* Utility Classes */
.hidden {
  display: none;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
}

.font-semibold {
  font-weight: 600;
}

.w-full {
  width: 100%;
}

.block {
  display: block;
}

.text-sm {
  font-size: 0.875rem;
}

.font-medium {
  font-weight: 500;
}

.p-3 {
  padding: 0.75rem;
}

.border {
  border-width: 1px;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px rgba(15, 76, 76, 0.2);
}

.focus\:ring-\[#0F4C4C\]:focus {
  box-shadow: 0 0 0 2px rgba(15, 76, 76, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 1rem;
    height: auto;
  }

  .navbar-nav {
    margin-top: 1rem;
    gap: 1rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 4rem 1rem;
  }

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

  .hero-image {
    margin-top: 2rem;
    opacity: 0.5;
  }

  .hero-image img {
    max-width: 250px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .section {
    padding: 3rem 1rem;
  }

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

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

  .section-title {
    font-size: 1.75rem;
  }

  .service-title {
    font-size: 1.25rem;
  }
}

