/* CSS Variables for Brand Colors */
:root {
  --brand-dark-green: #193425;
  --brand-lime: #aaff88;
  --brand-orange: #ff4e02;
  --brand-black: #000000;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
.steelfish {
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--brand-lime);
  color: var(--brand-dark-green);
}

.btn-primary:hover {
  background-color: #9ef077;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brand-orange);
  border: 2px solid var(--brand-orange);
}

.btn-secondary:hover {
  background-color: var(--brand-orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-orange {
  background-color: var(--brand-orange);
  color: var(--white);
}

.btn-orange:hover {
  background-color: #e63d00;
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(25, 52, 37, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(170, 255, 136, 0.2);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-logo img {
  max-width: 30%;
  height: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

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

.nav-link:hover {
  color: var(--brand-lime);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--brand-dark-green) 0%, var(--brand-dark-green) 70%, var(--brand-black) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.circle-1 {
  width: 8rem;
  height: 8rem;
  background-color: var(--brand-lime);
  top: 5rem;
  left: 5rem;
}

.circle-2 {
  width: 12rem;
  height: 12rem;
  background-color: var(--brand-orange);
  bottom: 10rem;
  right: 5rem;
}

.circle-3 {
  width: 6rem;
  height: 6rem;
  background-color: var(--brand-lime);
  top: 50%;
  left: 33%;
}

.hero-content {
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 10;
  padding: 0 1rem;
}

.hero-text {
  margin-bottom: 2rem;
  align-items: center;
}

.hero-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: bold;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: bold;
  color: var(--brand-lime);
  line-height: 0.9;
  letter-spacing: 0.1em;
}

.hero-description {
  margin-bottom: 3rem;
}

.hero-role {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: bold;
  color: var(--brand-orange);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-intro {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
  align-items: center;
}

.hero-buttons {
  display: center;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--brand-lime);
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Styles */
.section-header {
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
}

.section-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: bold;
  color: var(--brand-dark-green);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-divider {
  width: 6rem;
  height: 0.5rem;
  background-color: var(--brand-orange);
  margin-bottom: 1.5rem;
}

.section-header.centered .section-divider {
  margin: 0 auto 1.5rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  line-height: 1.6;
}

.section-header.centered .section-description {
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.highlights-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brand-dark-green);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.highlights-list {
  display: grid;
  gap: 0.75rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-item i {
  color: var(--brand-lime);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-item span {
  font-weight: 500;
  color: var(--gray-700);
}

.about-visual {
  position: relative;
}

.about-card {
  background-color: rgba(170, 255, 136, 0.2);
  border-radius: 1rem;
  padding: 15rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.card-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.circle-orange {
  width: 4rem;
  height: 4rem;
  background-color: var(--brand-orange);
  top: 1rem;
  right: 1rem;
}

.circle-green {
  width: 3rem;
  height: 3rem;
  background-color: var(--brand-dark-green);
  bottom: 1rem;
  left: 1rem;
}

.about-avatar {
  width: 6rem;
  height: 6rem;
  background-color: var(--brand-dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 10;
}

.avatar img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: 50%;
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
}

.card-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brand-dark-green);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--gray-600);
  line-height: 1.5;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

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

.service-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background-color: rgba(25, 52, 37, 0.05);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(25, 52, 37, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: rgba(25, 52, 37, 0.2);
}

.service-icon i {
  font-size: 2rem;
}

.service-icon.lime i {
  color: var(--brand-lime);
}

.service-icon.orange i {
  color: var(--brand-orange);
}

.service-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--brand-dark-green);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--gray-600);
  line-height: 1.6;
}

.services-cta {
  background-color: var(--brand-dark-green);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.services-cta .circle-1 {
  width: 8rem;
  height: 8rem;
  background-color: var(--brand-lime);
  top: 0;
  right: 0;
  transform: translate(4rem, -4rem);
}

.services-cta .circle-2 {
  width: 6rem;
  height: 6rem;
  background-color: var(--brand-orange);
  bottom: 0;
  left: 0;
  transform: translate(-3rem, 3rem);
}

.cta-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bold;
  color: var(--brand-lime);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 10;
}

/* Portfolio Section */
.portfolio {
  padding: 5rem 0;
  background-color: var(--white);
}

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

.portfolio-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 2px solid;
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.lime-border {
  border-color: rgba(170, 255, 136, 0.2);
  background-color: rgba(170, 255, 136, 0.1);
}

.orange-border {
  border-color: rgba(255, 78, 2, 0.2);
  background-color: rgba(255, 78, 2, 0.1);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.portfolio-category {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(25, 52, 37, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.portfolio-header i {
  color: rgba(25, 52, 37, 0.4);
  transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-header i {
  color: var(--brand-dark-green);
}

.portfolio-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--brand-dark-green);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.portfolio-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.portfolio-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.portfolio-result i {
  color: var(--brand-lime);
  font-size: 1.25rem;
}

.portfolio-result span {
  font-weight: 600;
  color: var(--brand-dark-green);
}

.portfolio-cta {
  background: linear-gradient(135deg, var(--brand-dark-green) 0%, var(--brand-black) 100%);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.portfolio-cta .circle-1 {
  width: 5rem;
  height: 5rem;
  background-color: var(--brand-lime);
  top: 2.5rem;
  left: 2.5rem;
}

.portfolio-cta .circle-2 {
  width: 8rem;
  height: 8rem;
  background-color: var(--brand-orange);
  bottom: 2.5rem;
  right: 2.5rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info {
  justify-content: center;
  align-items: center;
  padding: 0% 20%;
}

.contact-intro {
  margin-bottom: 2rem;
}

.contact-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brand-dark-green);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.contact-description {
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  margin: auto;
  align-items: center;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-method:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(25, 52, 37, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.contact-method:hover .contact-icon {
  background-color: rgba(25, 52, 37, 0.2);
}

.contact-icon i {
  font-size: 1.5rem;
}

.contact-icon.lime i {
  color: var(--brand-lime);
}

.contact-icon.orange i {
  color: var(--brand-orange);
}

.contact-details h4 {
  font-weight: 600;
  color: var(--brand-dark-green);
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--gray-600);
}

.response-guarantee {
  background-color: var(--brand-dark-green);
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.guarantee-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.guarantee-bg-circle.circle-1 {
  width: 5rem;
  height: 5rem;
  background-color: var(--brand-lime);
  top: 0;
  right: 0;
  transform: translate(2.5rem, -2.5rem);
}

.guarantee-bg-circle.circle-2 {
  width: 4rem;
  height: 4rem;
  background-color: var(--brand-orange);
  bottom: 0;
  left: 0;
  transform: translate(-2rem, 2rem);
}

.guarantee-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--brand-lime);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.guarantee-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  position: relative;
  z-index: 10;
}

/* Footer */
.footer {
  margin-top: 5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
}

.footer-content {
  text-align: center;
}

.footer-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brand-dark-green);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer img {
  max-width: 30%;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 4rem;
    flex-direction: column;
    background-color: var(--brand-dark-green);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
