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

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #ffffff;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #006663;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #22BABB;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #006663;
}

.nav-cta {
  background: #006663;
  color: white !important;
  padding: 0.7rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: #004d4b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,102,99,0.3);
}

.nav-cta::after {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34,186,187,0.1) 0%, rgba(0,102,99,0.15) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  letter-spacing: -1px;
}

.hero-text .highlight {
  color: #006663;
  position: relative;
  display: inline-block;
}

.hero-text p {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 400;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #006663;
  display: block;
}

.stat-label {
  color: #666;
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background: #006663;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid #006663;
}

.btn-primary:hover {
  background: #004d4b;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,102,99,0.3);
}

.btn-secondary {
  background: transparent;
  color: #006663;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid #006663;
}

.btn-secondary:hover {
  background: #006663;
  color: white;
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
  overflow: hidden;
  position: relative;
  animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34,186,187,0.1) 0%, rgba(0,102,99,0.1) 100%);
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #4c5f7a;
  padding: 2rem;
  text-align: center;
}

.image-placeholder svg {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.image-placeholder h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #006663;
}

.image-placeholder p {
  font-size: 1rem;
  opacity: 0.8;
}

/* Services Section */
.services {
  padding: 8rem 3rem;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-label {
  color: #22BABB;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.8;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 3rem 2rem;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #22BABB, #006663);
  transition: height 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: white;
  border-color: #e0e0e0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #22BABB, #006663);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.service-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-link {
  color: #006663;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

/* Expertise Section */
.expertise {
  padding: 8rem 3rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.expertise-grid {
  max-width: 1400px;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.expertise-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.expertise-number {
  font-size: 3rem;
  font-weight: 700;
  color: #22BABB;
  margin-bottom: 0.5rem;
}

.expertise-label {
  font-size: 1.1rem;
  color: #ccc;
}

/* Profile Section */
.profile-section {
  max-width: 1200px;
  margin: 6rem auto 0;
  padding: 0 3rem;
}

.profile-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.profile-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.profile-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #22BABB 0%, #006663 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-placeholder svg {
  width: 120px;
  height: 120px;
  color: rgba(255,255,255,0.6);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-text {
  color: white;
}

.profile-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #22BABB;
}

.profile-title {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 2rem;
  font-weight: 500;
}

.profile-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 2.5rem;
}

.profile-credentials {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border-left: 3px solid #22BABB;
}

.credential-icon {
  font-size: 1.5rem;
}

.credential-text {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 8rem 3rem;
  background: linear-gradient(135deg, #22BABB 0%, #006663 100%);
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.btn-white {
  background: white;
  color: #006663;
  padding: 1.2rem 3rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #999;
  padding: 4rem 3rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: #22BABB;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #999;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #22BABB;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #666;
}

@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-image {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .profile-name {
    font-size: 2rem;
  }

  .profile-title {
    font-size: 1.1rem;
  }

  .profile-bio {
    font-size: 1rem;
  }

  .profile-content {
    padding: 2rem;
  }
}

/* Contact Page Styles */
.contact-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding-top: 100px;
  text-align: center;
  color: white;
}

.contact-hero-content {
  max-width: 800px;
  padding: 0 3rem;
}

.contact-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-hero p {
  font-size: 1.25rem;
  color: #ccc;
  line-height: 1.8;
}

.contact-form-section {
  padding: 6rem 3rem;
  background: #f8f9fa;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22BABB;
  box-shadow: 0 0 0 3px rgba(34, 186, 187, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.875rem;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.radio-option {
  position: relative;
}

/* Hide both radio buttons AND checkboxes */
.radio-option input[type="radio"],
.radio-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.radio-option label {
  display: block;
  padding: 1rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 500;
}

/* Styles for checked radio buttons */
.radio-option input[type="radio"]:checked + label {
  border-color: #006663;
  background: #006663;
  color: white;
  font-weight: 600;
}

/* Styles for checked checkboxes */
.radio-option input[type="checkbox"]:checked + label {
  border-color: #006663;
  background: #006663;
  color: white;
  font-weight: 600;
}

.radio-option label:hover {
  border-color: #22BABB;
  background: rgba(34, 186, 187, 0.05);
}

.submit-btn {
  background: linear-gradient(135deg, #22BABB 0%, #006663 100%);
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(34, 186, 187, 0.3);
}

.required {
  color: #e74c3c;
}

.success-message {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  border: 1px solid #c3e6cb;
}

.success-message.show {
  display: block;
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }
}