@font-face {
  font-family: satoshi;
  src: url(fonts/Fonts/OTF/Satoshi-Regular.otf);
}

:root {
  --olive-green: #6b814a;
  --navy-blue: #1e2c40;
  --deep-purple: #4A148C;
  --off-white: #f8f8f8;
  --white: #ffffff;
  --light-gray: #e5e5e5;
  --text-gray: #666666;
  --accent-gold: #d4af37;
  --border-radius: 12px;
  --section-padding: 120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  color: var(--navy-blue);
  background-color: var(--off-white);
  overflow-x: hidden;
  padding-top: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy-blue);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(248, 248, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(107, 129, 74, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.header-logo {
  display: flex;
  align-items: end;
  gap: 1rem;
  justify-content: center;
}

.logo-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
}

.logo-text {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.2rem;
  color: var(--navy-blue);
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: left;
}

.logo-text::before {
  content: 'NAWAT';
  font-weight: 700;
  font-size: 1.4rem;
  padding: 5px;
}

.logo-text::after {
  content: 'Z O N E.';
  font-weight: 400;
  font-size: 1.3rem;
  margin-top: -2px;
  padding: 5px;
}

/* Button Component */
.btn {
  display: inline-block;
  padding: 18px 36px;
  background-color: var(--olive-green);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(107, 129, 74, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(107, 129, 74, 0.4);
  background-color: #5a6d3f;
}

.btn-primary {
  background-color: var(--olive-green);
}

/* Section Animation */
section {
  padding: var(--section-padding) 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.hero-text {
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* About Us Section */
.about-us {
  background: var(--white);
}

/* Mission & Vision Section */
.mission-vision {
  background: var(--off-white);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.mission-card,
.vision-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(107, 129, 74, 0.1);
}

.mission-card .card-icon,
.vision-card .card-icon {
  width: 70px;
  height: 70px;
  background: var(--olive-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

/* Enhanced Who We Serve Section */
.who-we-serve {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}

.who-we-serve::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 140%;
  height: 120%;
  background: radial-gradient(ellipse at 30% 50%, rgba(107, 129, 74, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.who-we-serve .container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-subtitle {
  color: var(--olive-green);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--olive-green), var(--accent-gold));
  border-radius: 2px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Service Cards Grid */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

/* Individual Service Card */
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem 2.5rem 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(107, 129, 74, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transform: translateY(0);
}

/* Card hover effects */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--olive-green), var(--accent-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(107, 129, 74, 0.15);
  border-color: rgba(107, 129, 74, 0.2);
}

/* Card Icon Wrapper */
.card-icon-wrapper {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icon {
  width: 85px;
  height: 85px;
  font-size: 40px;
  background: linear-gradient(135deg, var(--olive-green) 0%, #5a6d3f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(107, 129, 74, 0.2);
}

.service-card:hover .card-icon {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 12px 35px rgba(107, 129, 74, 0.35);
}

.icon-accent {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--accent-gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.service-card:hover .icon-accent {
  opacity: 1;
  transform: scale(1);
}

/* Card Content */
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy-blue);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-description {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* Feature Tags */
.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.feature-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(107, 129, 74, 0.1);
  color: var(--olive-green);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(107, 129, 74, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
  background: rgba(107, 129, 74, 0.15);
  border-color: rgba(107, 129, 74, 0.3);
}

/* Call to Action Section */
.cta-section {
  margin-top: 5rem;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--olive-green), #5a6d3f);
  border-radius: 16px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: var(--white);
}

.btn-cta {
  background: var(--white);
  color: var(--olive-green);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  color: var(--olive-green);
}

/* Core Services */
.core-services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(107, 129, 74, 0.1);
  border-color: var(--olive-green);
}

.service-icon {
  width: 60px;
  height: 60px;
  font-size: 35px;
  background: var(--olive-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.service-content h3 {
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service-content p {
  color: var(--text-gray);
  margin-bottom: 0;
  font-size: 1rem;
}

/* Why Trust Us */
.why-trust-us {
  background: var(--white);
}

.trust-content {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
}

.values-section h3,
.pilot-offer h3 {
  color: var(--navy-blue);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-gray);
}

.value-icon {
  width: 32px;
  height: 32px;
  background: var(--olive-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.pilot-offer {
  background: var(--off-white);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.pilot-offer p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Meet the Founders */
.founders {
  background: var(--off-white);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.founder-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(107, 129, 74, 0.1);
}

.founder-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--olive-green);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info h3 {
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
}

.founder-role {
  color: var(--olive-green);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.founder-bio {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Our Process */
.our-process {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--off-white);
  border-radius: var(--border-radius);
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(107, 129, 74, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--olive-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.process-step h3 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.process-step p {
  color: var(--text-gray);
  margin-bottom: 0;
  font-size: 1rem;
}

/* Contact */
.contact {
  background: var(--off-white);
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-form-wrapper,
.meeting-cta {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--light-gray);
}

.contact-form-wrapper h3,
.meeting-cta h3 {
  color: var(--navy-blue);
  margin-bottom: 1.5rem;
  text-align: center;
}

.meeting-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meeting-cta p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: 'Manrope', sans-serif;
  background: var(--off-white);
  transition: all 0.3s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--olive-green);
  background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-gray);
}

/* Footer */
.footer {
  background: var(--navy-blue);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo .logo-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
}

.footer-logo h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-align: left;
}

.footer-logo h3::before {
  content: 'NAWAT ©';
  font-family: 'satoshi';
  font-weight: 700;
  font-size: 1.3rem;
  padding: 7px;
  margin: 16px 0px;
}

.footer-logo h3::after {
  content: 'Z O N E.';
  font-size: 1.2rem;
  font-family: 'satoshi';
  font-weight: 300;
  margin-top: -2px;
  padding: 7px;
  margin: -23px 0px;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent-gold);
}

.footer-contact {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent-gold);
}

.footer-tagline {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-tagline p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Form validation states */
.form-group.error input,
.form-group.error textarea {
  border-color: #e74c3c;
  background-color: #fdf2f2;
}

.form-group.focused input,
.form-group.focused textarea {
  border-color: var(--olive-green);
  box-shadow: 0 0 0 3px rgba(107, 129, 74, 0.1);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  body {
    padding-top: 70px;
  }

  .header {
    padding: 0.75rem 0;
  }

  .logo-text {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }

  .logo-text::before,
  .logo-text::after {
    font-size: 1.5rem;
  }

  .footer-logo h3 {
    font-size: 1rem;
  }

  .footer-logo h3::before,
  .footer-logo h3::after {
    font-size: 1rem;
  }

  .logo-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .trust-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-options {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Enhanced Who We Serve responsive */
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-description {
    font-size: 1.1rem;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    margin: 0 auto;
    max-width: 400px;
    padding: 2.5rem 2rem;
  }
  
  .card-features {
    justify-content: center;
  }
  
  .cta-section {
    margin-top: 3rem;
    padding: 2.5rem 1.5rem;
  }
  
  .cta-section h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .service-cards {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 16px 28px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  /* Enhanced Who We Serve mobile */
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .card-icon {
    width: 70px;
    height: 70px;
  }
  
  .feature-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
  }
  
  .section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
}