/* Additional styles for pages */

/* Page Hero */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: var(--space-sm);
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

/* Story Section */
.story-section {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.story-content p,
.mission p,
.vision p,
.value-card p,
.certificate-detail,
.office-details p,
.detail-item p {
  text-align: justify;
  word-spacing: -0.05em;
  hyphens: auto;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-justify: inter-word;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: stretch;
}

.story-content {
  padding-right: var(--space-xl);
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.mission,
.vision {
  background: var(--light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--secondary);
}

.mission i,
.vision i {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.mission h3,
.vision h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.story-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 100%;
  min-height: 400px;
}

.story-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
  transform: translate(0, 0);
}

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

.badge-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* Values Section */
.values-section {
  padding: var(--space-2xl) 0;
  background: var(--light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.value-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 180, 0, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  overflow: hidden;
  padding: 8px;
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.value-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

/* Certification Section */
.certification-section {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.certificate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.certificate-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-xl);
  text-align: center;
}

.certificate-header h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.certificate-number {
  color: var(--secondary);
  font-size: 1.125rem;
  font-weight: 600;
}

.certificate-body {
  padding: var(--space-xl);
}

.certificate-detail {
  display: flex;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-light);
}

.certificate-detail:last-child {
  border-bottom: none;
}

.certificate-detail .label {
  font-weight: 600;
  color: var(--primary);
}

.certificate-detail .value {
  color: var(--gray-dark);
  text-align: right;
  max-width: 60%;
}

.certificate-footer {
  background: var(--light);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.verification {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 500;
}

.download-btn {
  padding: 0.625rem 1.5rem;
}

/* Office Section */
.office-section {
  padding: var(--space-2xl) 0;
  background: var(--light);
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.office-details {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.detail-item i {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.detail-item h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.detail-item p {
  color: var(--gray);
  margin-bottom: 0;
}

.office-map {
  height: 400px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

/* Services Page Specific */
.services-hero {
  background: var(--gradient-primary);
}

.services-detail {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.service-category {
  margin-bottom: var(--space-2xl);
}

.service-category h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: 0.5rem;
}

.service-category h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary);
}

.category-header {
  margin-bottom: var(--space-xl);
}

.category-header p {
  color: var(--gray);
  font-size: 1.125rem;
  margin-bottom: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.service-item {
  background: var(--light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  transition: var(--transition-normal);
}

.service-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.service-item h3 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.service-features {
  margin-top: var(--space-md);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.service-features li i {
  color: var(--secondary);
}

/* Team Page Specific */
.team-hero {
  background: linear-gradient(135deg,
      var(--primary-light) 0%,
      var(--primary) 100%);
}

.team-detail {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.lawyer-profile {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

.profile-header {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: var(--light);
}

.profile-image {
  flex: 0 0 300px;
}

.profile-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.profile-info h2 {
  margin-bottom: 0.25rem;
}

.profile-position {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.profile-details {
  padding: var(--space-xl);
}

.detail-section {
  margin-bottom: var(--space-xl);
}

.detail-section h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

/* Contact Page Specific */
.contact-hero {
  background: var(--gradient-primary);
}

.contact-grid {
  padding: var(--space-2xl) 0;
  background: var(--light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info .info-header {
  margin-bottom: var(--space-lg);
}

.contact-info .section-subtitle {
  color: var(--secondary);
}

.contact-info .section-title {
  font-size: 1.75rem;
  margin-bottom: 0;
  color: var(--primary);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.info-card {
  background: var(--light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 3px solid var(--primary);
  transition: var(--transition-normal);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.info-card i {
  font-size: 1.5rem;
  color: var(--secondary);
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.info-card p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.info-card a {
  color: var(--secondary);
  font-weight: 500;
}

.emergency-banner {
  margin-top: var(--space-lg);
  background: rgba(255, 180, 0, 0.1);
  border: 1px solid var(--secondary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary);
}

.emergency-banner i {
  color: var(--secondary);
  font-size: 1.25rem;
}

.emergency-banner span {
  font-weight: 500;
  font-size: 0.9375rem;
}

.emergency-banner a {
  color: var(--primary);
  font-weight: 700;
}

.contact-form-wrapper {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper .form-header {
  margin-bottom: var(--space-md);
  text-align: center;
}

.contact-form-wrapper .form-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.contact-form-wrapper .form-header p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.contact-form-wrapper .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.contact-form-wrapper .form-group {
  margin-bottom: var(--space-sm);
}

.contact-form-wrapper .form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select,
.contact-form-wrapper .form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: var(--transition-normal);
  background: var(--light);
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group select:focus,
.contact-form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.1);
}

.contact-form-wrapper .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-form-wrapper .submit-btn {
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
}

/* Responsive for Pages */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  .page-hero-content h1 {
    font-size: 2.5rem;
  }

  .story-grid,
  .office-grid,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .story-content {
    padding-right: 0;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .certificate-footer {
    flex-direction: column;
    text-align: center;
  }

  .profile-header {
    flex-direction: column;
  }

  .profile-image {
    flex: 0 0 auto;
  }

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

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

  .contact-info,
  .contact-form-wrapper {
    padding: var(--space-md);
  }
}

/* Logo styling for about page */
.logo img {
  height: 100px;
  width: auto;
  display: block;
}

/* Navbar styling - desktop only */
@media (min-width: 769px) {
  .nav-links {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary);
  }

  .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
  }
}

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

  .story-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: var(--space-md);
  }

  .service-list {
    grid-template-columns: 1fr;
  }
}

/* Contact form status message */
.form-status {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  display: none;
  font-weight: 500;
  line-height: 1.5;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #065f46;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #7f1d1d;
}

/* Team - featured associate card (Tilak Bahadur Rijyal) */
.featured-associate .associate-image.has-photo {
  background: var(--light);
  padding: 0;
  overflow: hidden;
}

.featured-associate .associate-image.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-designation {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.team-bio {
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

/* Process Section */
.process-section {
  padding: var(--space-2xl) 0;
  background: var(--light);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.process-step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

.step-content p {
  color: var(--gray);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* FAQ Section */
.faq-section {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

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

.faq-item {
  background: var(--light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: var(--transition-normal);
}

.faq-header:hover {
  background: rgba(255, 180, 0, 0.05);
}

.faq-header h3 {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--primary);
  font-weight: 600;
  padding-right: var(--space-md);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-toggle i {
  color: var(--secondary);
  font-size: 0.875rem;
}

.faq-toggle:hover {
  background: var(--secondary);
}

.faq-toggle:hover i {
  color: var(--white);
}

.faq-item.active .faq-toggle {
  background: var(--primary);
}

.faq-item.active .faq-toggle i {
  color: var(--white);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--white);
}

.faq-body p {
  padding: 0 var(--space-lg) var(--space-md);
  color: var(--gray-dark);
  font-size: 0.9375rem;
  margin-bottom: 0;
  border-top: 1px solid var(--gray-light);
}

.faq-item.active {
  box-shadow: var(--shadow-sm);
}

/* FAQ Section */
.faq-section {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: var(--transition-normal);
}

.faq-question:hover {
  background: rgba(255, 180, 0, 0.05);
}

.faq-question h3 {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--primary);
  font-weight: 600;
}

.faq-question i {
  color: var(--secondary);
  transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 var(--space-lg) var(--space-md);
  color: var(--gray-dark);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.faq-item.active {
  box-shadow: var(--shadow-sm);
}

/* ================================
   NEW TEAM PAGE STYLES
   ================================ */

/* Hero Section */
.team-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--white);
  bottom: -50px;
  left: -50px;
  animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--secondary);
  top: 50%;
  left: 50%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 180, 0, 0.2);
  color: var(--secondary);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 180, 0, 0.3);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-title .highlight {
  color: var(--secondary);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 180, 0, 0.3);
  z-index: -1;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 1.5rem;
  color: var(--secondary);
}

.stat-info {
  text-align: left;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 1.25rem;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: var(--white);
}

.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-intro .section-title {
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--gray);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.team-card {
  perspective: 1000px;
}

.card-inner {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.team-card:hover .card-inner {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.5) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .card-overlay {
  opacity: 1;
}

.overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.team-card:hover .overlay-content {
  transform: translateY(0);
}

.quick-info {
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  margin-bottom: 6px;
}

.info-item i {
  color: var(--secondary);
  width: 16px;
}

.view-profile-btn {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-profile-btn:hover {
  background: var(--secondary-dark);
  transform: scale(1.05);
}

.card-content {
  padding: 24px;
}

.card-badge {
  display: inline-block;
  background: rgba(255, 180, 0, 0.1);
  color: var(--secondary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-name {
  font-size: 1.375rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.card-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.expertise-pill {
  background: var(--light);
  color: var(--gray-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--secondary);
  color: var(--white);
}

.experience-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: 0.8125rem;
}

.experience-badge i {
  color: var(--secondary);
}

/* Featured Card */
.team-card.featured .card-inner {
  border: 2px solid var(--secondary);
}

.featured-ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

/* Detailed Profiles Section */
.detailed-profiles {
  padding: 100px 0;
  background: var(--light);
}

.profile-detail-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.profile-header-modern {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  padding: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.profile-img-wrapper {
  position: relative;
}

.profile-img-wrapper img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.img-accent {
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 3px solid var(--secondary);
  border-radius: 20px;
  z-index: 0;
}

.profile-header-content {
  color: var(--white);
}

.header-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.role-badge {
  background: rgba(255, 180, 0, 0.2);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.role-badge.partner {
  background: var(--secondary);
  color: var(--primary-dark);
}

.experience {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.profile-header-content h2 {
  font-size: 2.25rem;
  margin-bottom: 12px;
  color: var(--white);
}

.tagline {
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 24px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: whitesmoke;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary);
  background: var(--white);
}

.contact-item i {
  color: var(--secondary);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.social-connect {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 48px;
  height: 48px;
  background: whitesmoke;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-btn:hover {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 180, 0, 0.4);
  border-color: var(--secondary);
}

/* Profile Body */
.profile-body {
  padding: 48px;
}

.info-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gray-light);
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-block h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.content-block p {
  color: var(--gray-dark);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Achievement Cards */
.achievement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.achievement-card {
  background: var(--light);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.achievement-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.achievement-card h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.achievement-card p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.stat-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Timeline */
.education-timeline {
  position: relative;
  padding-left: 40px;
}

.education-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-light);
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -40px;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-icon i {
  color: var(--white);
  font-size: 0.875rem;
}

.timeline-content {
  background: var(--light);
  padding: 20px;
  border-radius: 12px;
}

.timeline-content h4 {
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-content p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.expertise-card {
  background: var(--light);
  padding: 28px;
  border-radius: 16px;
  border-left: 4px solid var(--secondary);
  transition: all 0.3s ease;
}

.expertise-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.expertise-card i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.expertise-card h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.expertise-card p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Achievements List */
.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.achievement-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.achievement-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.achievement-content h4 {
  color: var(--primary);
  margin-bottom: 4px;
}

.achievement-content p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Specialization Grid */
.specialization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.specialization-card {
  background: var(--light);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.specialization-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.spec-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 180, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.spec-icon i {
  font-size: 2rem;
  color: var(--secondary);
}

.specialization-card h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

.specialization-card p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Values List */
.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--light);
  border-radius: 12px;
}

.value-item i {
  color: var(--secondary);
  font-size: 1.25rem;
}

.value-item span {
  color: var(--primary);
  font-weight: 600;
}

/* ================================
   TESTIMONIALS STYLES
   ================================ */

/* Testimonials Hero */
.testimonials-hero {
  background: linear-gradient(135deg,
      var(--primary-light) 0%,
      var(--primary) 100%);
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--light);
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}

/* Testimonial Header */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--secondary);
  box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.client-title {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.rating {
  display: flex;
  gap: 4px;
}

.rating i {
  color: var(--secondary);
  font-size: 0.875rem;
}

/* Testimonial Content */
.testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.quote-icon {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon i {
  color: var(--white);
  font-size: 1rem;
}

.testimonial-text {
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 40px;
  font-style: italic;
}

/* Testimonial Footer */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}

.service-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 180, 0, 0.1);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.service-tag i {
  font-size: 0.875rem;
}

.date {
  color: var(--gray);
  font-size: 0.8125rem;
}

/* Testimonials Stats */
.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  padding: 60px 0;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-stats .stat-item {
  text-align: center;
}

.testimonials-stats .stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.testimonials-stats .stat-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.testimonials-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonials-stats .stat-label {
  color: var(--gray);
  font-size: 0.9375rem;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-text {
    padding-left: 0;
    padding-top: 30px;
  }

  .quote-icon {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 16px;
  }

  .testimonial-footer {
    flex-direction: column;
    gap: 12px;
  }

  .testimonials-stats {
    gap: 40px;
    padding: 40px 20px;
  }
}

/* Why Choose Us Modern */
.why-choose-modern {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon i {
  font-size: 1.75rem;
  color: var(--secondary);
}

.feature-card h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray);
  margin-bottom: 0;
}

.feature-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 180, 0, 0.1) 50%);
  border-radius: 0 20px 0 100px;
}

/* CTA Section Modern */
.cta-section-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 180, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.cta-icon i {
  font-size: 2.5rem;
  color: var(--secondary);
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.125rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .profile-header-modern {
    grid-template-columns: 250px 1fr;
    gap: 32px;
    padding: 32px;
  }

  .profile-img-wrapper img {
    height: 250px;
  }
}

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

  .hero-stats {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .profile-header-modern {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-img-wrapper {
    max-width: 250px;
    margin: 0 auto;
  }

  .header-top {
    justify-content: center;
  }

  .contact-grid {
    justify-content: center;
  }

  .social-connect {
    justify-content: center;
  }

  .info-tabs {
    flex-wrap: wrap;
  }

  .tab-btn {
    padding: 12px 16px;
    font-size: 0.875rem;
  }

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

  .cta-content h2 {
    font-size: 1.75rem;
  }
}

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .profile-body {
    padding: 24px;
  }

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

/* ================================
   SUCCESS MODAL STYLES
   ================================ */

.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal, 1000);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal, all 0.3s ease);
}

.success-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white, #ffffff);
  padding: var(--space-2xl, 2rem);
  border-radius: var(--radius-lg, 12px);
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-xl, 0 20px 25px -5px rgba(0, 0, 0, 0.1));
  transform: translateY(20px);
  transition: var(--transition-normal, all 0.3s ease);
}

.success-modal.active .modal-content {
  transform: translateY(0);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: #10b981;
  border-radius: var(--radius-full, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg, 1rem);
  animation: bounce 1s ease infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.modal-icon i {
  color: var(--white, #ffffff);
  font-size: 2.5rem;
}

.modal-content h3 {
  color: var(--primary, #0d1b2a);
  margin-bottom: var(--space-lg, 1rem);
  font-size: 1.5rem;
}

.modal-content p {
  color: var(--gray, #6b7280);
  margin-bottom: var(--space-sm, 0.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.emergency-notice {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  border-radius: var(--radius-md, 8px);
  padding: var(--space-md, 1rem);
  margin: var(--space-lg, 1rem) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.emergency-notice i {
  color: #ef4444;
}

.modal-close {
  margin-top: var(--space-lg, 1rem);
}

/* Error Toast Styles */
.error-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #ef4444;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md, 8px);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
  z-index: var(--z-modal, 1000);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  max-width: 400px;
}

.error-toast.show {
  transform: translateX(0);
}

.error-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.error-content i {
  font-size: 1.25rem;
}

.error-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
  padding: 0 0.25rem;
}


