/* ========================================
   SERVICE DETAIL PAGES
   ======================================== */

.service-detail-section {
  padding: 80px 0;
  background: white;
}

.service-detail-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Feature Cards Grid */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.feature-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(249, 250, 251, 0.9) 100%
  );
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(149, 193, 31, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(149, 193, 31, 0.15) 0%,
    rgba(149, 193, 31, 0.05) 100%
  );
}

.feature-icon svg {
  width: 48px;
  height: 48px;
}

.feature-icon.blue {
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.15) 0%,
    rgba(2, 132, 199, 0.05) 100%
  );
}

.feature-icon.purple {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(124, 58, 237, 0.05) 100%
  );
}

.feature-icon.pink {
  background: linear-gradient(
    135deg,
    rgba(219, 39, 119, 0.15) 0%,
    rgba(219, 39, 119, 0.05) 100%
  );
}

.feature-icon.orange {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.15) 0%,
    rgba(249, 115, 22, 0.05) 100%
  );
}

.feature-icon.green {
  background: linear-gradient(
    135deg,
    rgba(5, 150, 105, 0.15) 0%,
    rgba(5, 150, 105, 0.05) 100%
  );
}

.feature-icon.red {
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.15) 0%,
    rgba(220, 38, 38, 0.05) 100%
  );
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Event Management Content Styles - Premium Design */
.event-content-block {
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.event-content-block .lead-text {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
  border-left: 4px solid var(--primary);
}

.event-content-block .lead-text strong {
  background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.event-content-block p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* Event Services Grid - Card Style */
.event-services-table {
  max-width: 1000px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.event-services-table .services-row {
  display: contents;
}

.event-services-table .service-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.event-services-table .service-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, #0d9488 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-services-table .service-cell:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(149, 193, 31, 0.15);
  border-color: rgba(149, 193, 31, 0.3);
}

.event-services-table .service-cell:hover::before {
  opacity: 1;
}

.event-services-table .service-cell svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 6px;
  background: linear-gradient(
    135deg,
    rgba(149, 193, 31, 0.15) 0%,
    rgba(20, 184, 166, 0.1) 100%
  );
  border-radius: 10px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.event-services-table .service-cell:hover svg {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

/* Section Title for Services */
.event-services-title {
  text-align: center;
  margin-bottom: 40px;
}

.event-services-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.event-services-title h2 .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-services-title p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* Image Gallery Placeholder for Future Images */
.event-gallery-section {
  margin: 60px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--teal-50) 100%);
  border-radius: var(--radius-xl);
}

.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.event-gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 2px dashed var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.event-gallery-item:hover {
  border-color: var(--primary);
  background: rgba(149, 193, 31, 0.05);
}

.event-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   EVENT MANAGEMENT PAGE - NEW LAYOUT
   ======================================== */

/* Intro Section with Warm Background */
.event-intro-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #fef7ed 0%, #fdf4e8 50%, #fcf0e0 100%);
  text-align: center;
}

.event-intro-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.event-intro-content .intro-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #c9a032;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.event-intro-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.3;
}

.event-intro-content h2 .highlight {
  color: var(--primary);
}

.event-intro-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin-bottom: 16px;
  text-align: justify;
}

.event-intro-content p strong {
  color: var(--dark);
}

.intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  color: #c9a032;
}

.intro-divider span {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a032);
}

.intro-divider span:last-child {
  background: linear-gradient(90deg, #c9a032, transparent);
}

/* Gallery & Services Section */
.event-gallery-services-section {
  padding: 80px 0;
  background: white;
}

.event-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Image Gallery Grid */
.event-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.event-image-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-50);
  cursor: pointer;
}

.event-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-image-item:hover img {
  transform: scale(1.05);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  color: var(--gray-400);
  transition: all 0.3s ease;
  cursor: pointer;
}

.image-placeholder:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(149, 193, 31, 0.05);
}

.image-placeholder span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* View More Overlay */
.view-more-item {
  position: relative;
}

.view-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-more-overlay:hover {
  background: rgba(0, 0, 0, 0.8);
}

.view-more-overlay .plus-icon {
  font-size: 3rem;
  font-weight: 300;
  color: white;
  line-height: 1;
}

.view-more-overlay .more-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  padding: 60px 80px;
}

.lightbox-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80vh;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--primary);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .lightbox-content {
    padding: 60px 20px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/* Services Card - Dark Theme */
.event-services-card {
  background: #878780;
  border-radius: var(--radius-xl);
  padding: 40px;
  color: white;
}

.event-services-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: white;
}

.event-services-card .services-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  font-style: italic;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(149, 193, 31, 0.15);
  transform: translateX(8px);
}

.service-item svg {
  flex-shrink: 0;
  color: var(--primary);
}

/* CTA Buttons in Card */
.card-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-contact,
.btn-whatsapp,
.btn-services {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact {
  background: linear-gradient(135deg, var(--primary) 0%, #7cb51a 100%);
  color: white;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(149, 193, 31, 0.3);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-services {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-services:hover {
  background: linear-gradient(135deg, var(--primary) 0%, #7cb51a 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(149, 193, 31, 0.3);
}

/* Closing Section */
.event-closing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--teal-50) 100%);
}

.closing-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.closing-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0d9488 100%);
  border-radius: 50%;
  color: white;
}

.closing-content-wrapper h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.closing-content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.closing-content-wrapper p strong {
  color: var(--dark);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .event-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .event-images-grid {
    max-width: 500px;
    margin: 0 auto;
  }

  .event-services-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .event-intro-section,
  .event-gallery-services-section,
  .event-closing-section {
    padding: 60px 0;
  }

  .event-services-card {
    padding: 30px 24px;
  }

  .card-cta-buttons {
    flex-direction: column;
  }

  .btn-contact,
  .btn-whatsapp {
    justify-content: center;
  }

  .event-images-grid {
    gap: 12px;
  }

  .closing-icon {
    width: 60px;
    height: 60px;
  }

  .closing-icon svg {
    width: 32px;
    height: 32px;
  }
}

/* Responsive Event Services */
@media (max-width: 768px) {
  .event-services-table {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-services-table .service-cell {
    padding: 22px 24px;
  }

  .event-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-closing-block {
    padding: 32px 24px;
    margin: 40px 20px;
  }
}

@media (max-width: 480px) {
  .event-gallery-grid {
    grid-template-columns: 1fr;
  }

  .event-content-block .lead-text {
    font-size: 1.1rem;
    padding-left: 16px;
  }
}

/* Service Stats */
.service-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--teal-50) 100%);
  border-radius: var(--radius-xl);
  margin-bottom: 80px;
}

.service-stats .stat-item {
  text-align: center;
}

.service-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.service-stats .stat-label {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

/* Home Contact Section */
.home-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-card-item {
  transition: all 0.3s ease;
}

.contact-card-item:hover {
  transform: translateX(8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.home-form input,
.home-form select,
.home-form textarea {
  transition: all 0.3s ease;
}

.home-form input:focus,
.home-form select:focus,
.home-form textarea:focus {
  outline: none;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(149, 193, 31, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .home-contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .home-contact-info {
    text-align: center;
  }
  
  .home-contact-info p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-cards-stack {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .home-form > div {
    grid-template-columns: 1fr !important;
  }
  
  .home-contact-section {
    padding: 60px 0 !important;
  }
}

/* ========================================
   SITEMAP PAGE
   ======================================== */

.sitemap-section {
  padding: 80px 0;
  background: white;
}

.sitemap-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.sitemap-column h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list li {
  margin-bottom: 12px;
}

.sitemap-list a {
  font-size: 15px;
  color: var(--gray-600);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sitemap-list a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.sitemap-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gray-300);
  border-radius: 50%;
  transition: var(--transition-normal);
}

.sitemap-list a:hover::before {
  background: var(--primary);
}

/* ========================================
   RESPONSIVE - SERVICE PAGES
   ======================================== */

@media (max-width: 1024px) {
  .service-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 24px;
  }

  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .service-detail-section {
    padding: 60px 0;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 60px;
  }

  .feature-card {
    padding: 24px 20px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .feature-icon svg {
    width: 40px;
    height: 40px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .service-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 32px 20px;
    margin-bottom: 60px;
  }

  .service-stats .stat-number {
    font-size: 2rem;
  }

  .cta-section {
    padding: 40px 24px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .sitemap-section {
    padding: 60px 0;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sitemap-column {
    text-align: center;
  }

  .sitemap-column h3 {
    display: inline-block;
  }

  .sitemap-list a {
    justify-content: center;
  }

  .sitemap-list a:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .service-detail-section {
    padding: 40px 0;
  }

  .feature-card {
    padding: 20px 16px;
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto 16px;
  }

  .service-stats {
    padding: 24px 16px;
    gap: 20px;
  }

  .service-stats .stat-number {
    font-size: 1.75rem;
  }

  .service-stats .stat-label {
    font-size: 12px;
  }

  .cta-section {
    padding: 32px 16px;
  }

  .cta-section h2 {
    font-size: 1.25rem;
  }

  .cta-section p {
    font-size: 14px;
  }
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.contact-info > p {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}

.contact-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-form-wrapper {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(249, 250, 251, 0.9) 100%
  );
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form select {
  cursor: pointer;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 8px;
}

/* ========================================
   PROJECTS PAGE
   ======================================== */

.projects-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.project-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-image {
  height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
}

.project-category {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-full);
}

.project-content {
  padding: 24px;
}

.project-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.project-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition-normal);
}

.project-link:hover {
  color: var(--green-600);
}

/* ========================================
   CAREERS PAGE
   ======================================== */

.careers-openings {
  margin-bottom: 80px;
}

.careers-openings h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--dark);
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.job-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.job-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}

.job-info p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ========================================
   SERVICES OVERVIEW PAGE
   ======================================== */

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 0px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.service-overview-card {
  display: block;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.95) 30%, white 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 24px 24px 0 0;
  padding: 40px 32px 32px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  margin: 0 8px;
}

.service-overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  border-radius: 24px 24px 0 0;
  pointer-events: none;
}

.service-overview-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, white 100%);
}

.service-overview-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-overview-icon svg {
  width: 48px;
  height: 48px;
}

.service-overview-icon.orange {
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.15) 0%,
    rgba(217, 119, 6, 0.05) 100%
  );
}

.service-overview-icon.purple {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(124, 58, 237, 0.05) 100%
  );
}

.service-overview-icon.blue {
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.15) 0%,
    rgba(2, 132, 199, 0.05) 100%
  );
}

.service-overview-icon.green {
  background: linear-gradient(
    135deg,
    rgba(5, 150, 105, 0.15) 0%,
    rgba(5, 150, 105, 0.05) 100%
  );
}

.service-overview-icon.teal {
  background: linear-gradient(
    135deg,
    rgba(13, 148, 136, 0.15) 0%,
    rgba(13, 148, 136, 0.05) 100%
  );
}

.service-overview-icon.gray {
  background: linear-gradient(
    135deg,
    rgba(107, 114, 128, 0.15) 0%,
    rgba(107, 114, 128, 0.05) 100%
  );
}

.service-overview-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-overview-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.learn-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition-normal);
}

.service-overview-card:hover .learn-more {
  color: var(--green-600);
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-content {
  margin-bottom: 60px;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.about-text p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ========================================
   RESPONSIVE - ADDITIONAL PAGES
   ======================================== */

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }


  .services-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
  }
  
  .service-overview-card {
    margin: 0 4px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    width: 100%;
  }

  .projects-filter {
    justify-content: center;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .project-image {
    height: 160px;
  }

  .project-content {
    padding: 20px;
  }

  .careers-openings {
    margin-bottom: 60px;
  }

  .careers-openings h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .services-overview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 60px;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .job-card .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .services-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0 12px;
  }

  .service-overview-card {
    padding: 24px 16px;
    margin: 0 4px 16px;
    border-radius: 16px 16px 0 0;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 15px;
  }
  
  /* Reduce space between service cards and overview section */
  .about-overview-section {
    padding-top: 30px !important;
    margin-top: -20px;
  }
  
  .services-section {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 20px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .project-content h3 {
    font-size: 1.1rem;
  }

  .job-info h3 {
    font-size: 1rem;
  }

  .service-overview-icon {
    width: 60px;
    height: 60px;
  }

  .service-overview-icon svg {
    width: 40px;
    height: 40px;
  }
  
  /* Further reduce spacing on smaller screens */
  .about-overview-section {
    padding-top: 20px !important;
    margin-top: -30px;
  }
}

/* ========================================
   ABOUT PAGE - ENHANCED STYLES
   ======================================== */

/* About Hero */
.about-hero {
  position: relative;
  overflow: hidden;
}

.about-hero h1 .gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--green-600) 50%,
    var(--teal-500) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Construction Hero */
.construction-hero {
  position: relative;
  overflow: hidden;
}

.construction-hero h1 .gradient-text {
  background: linear-gradient(135deg, #d97706 0%, #f97316 50%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--teal-50) 100%);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-badge.dark {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  color: white;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-header h2 .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--green-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Story Section */
.about-story-section {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}

.about-story-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content {
  padding-right: 20px;
}

.story-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
  line-height: 1.2;
}

.story-content h2 .highlight {
  color: var(--primary);
}

.story-content .lead-text {
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 500;
}

.story-content p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 24px;
}

.story-quote {
  background: linear-gradient(
    135deg,
    var(--green-50) 0%,
    rgba(167, 243, 208, 0.3) 100%
  );
  border-left: 4px solid var(--primary);
  padding: 24px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-top: 32px;
}

.story-quote svg {
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 12px;
}

.story-quote blockquote {
  font-size: 16px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0;
}

/* Visual Cards */
.story-visual {
  position: relative;
}

.visual-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.visual-card.main-card {
  margin-bottom: 24px;
  transform: translateX(-20px);
}

.visual-card.secondary-card {
  transform: translateX(40px);
}

.visual-card .icon-box {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card .icon-box svg {
  width: 56px;
  height: 56px;
}

.visual-card .icon-box.green {
  background: linear-gradient(
    135deg,
    rgba(5, 150, 105, 0.15) 0%,
    rgba(5, 150, 105, 0.05) 100%
  );
}

.visual-card .icon-box.blue {
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.15) 0%,
    rgba(2, 132, 199, 0.05) 100%
  );
}

.visual-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.visual-card p {
  font-size: 14px;
  color: var(--gray-500);
}

/* Pioneer Section */
.about-pioneer-section {
  padding: 100px 0;
  background: white;
}

.about-pioneer-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pioneer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pioneer-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(249, 250, 251, 0.95) 100%
  );
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition-normal);
}

.pioneer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(149, 193, 31, 0.3);
}

.pioneer-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--green-50) 0%,
    rgba(167, 243, 208, 0.3) 100%
  );
  border-radius: 24px;
}

.pioneer-icon svg {
  width: 64px;
  height: 64px;
}

.pioneer-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.pioneer-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Corporate Section */
.about-corporate-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray-800) 100%);
  color: white;
}

.about-corporate-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.corporate-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.corporate-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
}

.corporate-text h2 .highlight {
  color: var(--primary);
}

.corporate-text p {
  font-size: 16px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 32px;
}

.corporate-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.corp-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.corp-feature span {
  font-size: 15px;
  color: var(--gray-200);
  font-weight: 500;
}

/* Partnership Cards */
.partnerships-showcase h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 24px;
  text-align: center;
}

.partnership-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.partnership-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition-normal);
}

.partnership-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(149, 193, 31, 0.3);
}

.partnership-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.partnership-icon svg {
  width: 48px;
  height: 48px;
}

.partnership-card span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
}

/* Mission Section */
.about-mission-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.about-mission-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mission-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition-normal);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.mission-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-icon svg {
  width: 80px;
  height: 80px;
}

.mission-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

.mission-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========================================
   ABOUT PAGE - RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-content {
    padding-right: 0;
  }

  .story-visual {
    display: flex;
    gap: 24px;
  }

  .visual-card {
    flex: 1;
  }

  .visual-card.main-card,
  .visual-card.secondary-card {
    transform: none;
    margin: 0;
  }

  .corporate-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .partnership-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .about-story-section,
  .about-pioneer-section,
  .about-corporate-section,
  .about-mission-section {
    padding: 60px 0;
  }

  .story-content h2 {
    font-size: 1.75rem;
  }

  .story-visual {
    flex-direction: column;
  }

  .pioneer-grid,
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pioneer-card,
  .mission-card {
    padding: 32px 24px;
  }

  .pioneer-icon,
  .mission-icon {
    width: 80px;
    height: 80px;
  }

  .pioneer-icon svg,
  .mission-icon svg {
    width: 52px;
    height: 52px;
  }

  .section-header h2,
  .corporate-text h2 {
    font-size: 1.75rem;
  }

  .partnership-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .section-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .story-content h2 {
    font-size: 1.5rem;
  }

  .story-quote {
    padding: 20px;
  }

  .story-quote blockquote {
    font-size: 14px;
  }

  .visual-card {
    padding: 20px;
  }

  .visual-card .icon-box {
    width: 64px;
    height: 64px;
  }

  .visual-card .icon-box svg {
    width: 40px;
    height: 40px;
  }

  .pioneer-card h3,
  .mission-card h3 {
    font-size: 1.15rem;
  }

  .partnership-cards {
    gap: 12px;
  }

  .partnership-card {
    padding: 16px;
  }

  .partnership-icon {
    width: 56px;
    height: 56px;
  }

  .partnership-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* Company Directors Section */
.directors-container {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  align-items: stretch;
}

.directors-header {
  margin-top: 60px;
  text-align: center;
  margin-bottom: 30px;
}

.directors-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.directors-header h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.director-card {
  flex: 1;
  background: linear-gradient(145deg, #ffffff 0%, #f8faf5 100%);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(149, 193, 31, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* First card - expands to LEFT */
.director-card:first-child {
  margin-left: -60px;
  padding-left: 40px;
  border-left: 4px solid transparent;
  border-image: linear-gradient(
      180deg,
      var(--primary) 0%,
      #7aa31a 50%,
      var(--teal-500) 100%
    )
    1;
  border-radius: 0 20px 20px 0;
}

.director-card:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(149, 193, 31, 0.03) 0%,
    transparent 40%
  );
  pointer-events: none;
}

.director-card:first-child::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(149, 193, 31, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Second card - expands to RIGHT */
.director-card:last-child {
  margin-right: -60px;
  padding-right: 40px;
  border-right: 4px solid transparent;
  border-image: linear-gradient(
      180deg,
      var(--teal-500) 0%,
      #7aa31a 50%,
      var(--primary) 100%
    )
    1;
  border-radius: 20px 0 0 20px;
}

.director-card:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    225deg,
    rgba(20, 184, 166, 0.03) 0%,
    transparent 40%
  );
  pointer-events: none;
}

.director-card:last-child::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Hover effects */
.director-card:first-child:hover {
  transform: translateX(-8px) translateY(-4px);
  box-shadow: 0 12px 40px rgba(149, 193, 31, 0.15);
  margin-left: -70px;
}

.director-card:last-child:hover {
  transform: translateX(8px) translateY(-4px);
  box-shadow: 0 12px 40px rgba(20, 184, 166, 0.15);
  margin-right: -70px;
}

.director-info {
  position: relative;
  z-index: 1;
}

.director-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Different accent for each card's title */
.director-card:first-child .director-info h3 {
  background: linear-gradient(90deg, var(--dark) 0%, var(--gray-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.director-card:last-child .director-info h3 {
  background: linear-gradient(90deg, var(--gray-700) 0%, var(--dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.director-title {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Different gradient for each card's badge */
.director-card:first-child .director-title {
  background: linear-gradient(135deg, var(--primary) 0%, #7aa31a 100%);
}

.director-card:last-child .director-title {
  background: linear-gradient(135deg, var(--teal-500) 0%, #0d9488 100%);
}

.director-bio {
  font-size: 11.5px;
  color: var(--gray-600);
  line-height: 1.7;
}

.director-bio p,
.page-hero .director-bio p {
  font-size: 11.5px;
  margin-bottom: 12px;
  text-align: justify;
  line-height: 1.7;
  max-width: none;
  color: var(--gray-600);
}

.director-bio p:last-child {
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .directors-container {
    gap: 30px;
  }

  .director-card:first-child {
    margin-left: -30px;
    padding-left: 30px;
  }

  .director-card:last-child {
    margin-right: -30px;
    padding-right: 30px;
  }

  .director-card:first-child:hover {
    margin-left: -40px;
  }

  .director-card:last-child:hover {
    margin-right: -40px;
  }
}

@media (max-width: 768px) {
  .directors-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }

  .directors-container::before {
    display: none;
  }

  .director-card {
    padding: 24px;
    border-radius: 16px !important;
  }

  .director-card:first-child,
  .director-card:last-child {
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    padding-right: 24px;
    border-left: 4px solid transparent;
    border-right: none;
    border-radius: 16px !important;
  }

  .director-card:first-child:hover,
  .director-card:last-child:hover {
    transform: translateY(-6px);
    margin-left: 0;
    margin-right: 0;
  }

  .director-info h3 {
    font-size: 1rem;
  }

  .director-bio,
  .director-bio p,
  .page-hero .director-bio p {
    font-size: 11px;
  }
}

/* ========================================
   HOME PAGE - ABOUT SECTIONS
   ======================================== */

/* About Overview Section */
.about-overview-section {
  padding: 15px 0 15px;
  margin-top: -40px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: stretch;
  margin-top: 20px;
}

.about-intro-content {
  display: flex;
  flex-direction: column;
}

.about-intro-content .about-quote {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro-content .lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-intro-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Section Badge Button - About Us */
.section-badge-btn {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(149, 193, 31, 0.15) 0%, rgba(149, 193, 31, 0.08) 100%);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  border: 1px solid rgba(149, 193, 31, 0.3);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.section-badge-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(149, 193, 31, 0.3);
}

.about-quote {
  background: linear-gradient(
    135deg,
    rgba(149, 193, 31, 0.08) 0%,
    rgba(6, 78, 59, 0.05) 100%
  );
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: 0 16px 16px 0;
  position: relative;
}

.about-quote svg {
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 12px;
}

.about-quote blockquote {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.8;
  font-size: 1rem;
}

.about-quote .quote-intro-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

.about-intro-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  border: 2px solid rgba(149, 193, 31, 0.2);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(149, 193, 31, 0.1);
  transition: var(--transition-normal);
}

.visual-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(149, 193, 31, 0.15);
}

.visual-stat-card .stat-icon {
  display: block;
  margin-bottom: 20px;
}

.visual-stat-card .stat-icon svg {
  width: 100px;
  height: 100px;
}

.visual-stat-card .stat-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
}

/* Core Services Section */
.core-services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2e0a 100%);
}

.core-services-section .section-header h2 {
  color: #ffffff;
}

.core-services-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.core-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.core-service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition-normal);
}

.core-service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: rgba(149, 193, 31, 0.3);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-wrapper svg {
  width: 48px;
  height: 48px;
}

.service-icon-wrapper.purple {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.2) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
  color: #a78bfa;
}

.service-icon-wrapper.blue {
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.2) 0%,
    rgba(2, 132, 199, 0.1) 100%
  );
  color: #38bdf8;
}

.service-icon-wrapper.green {
  background: linear-gradient(
    135deg,
    rgba(149, 193, 31, 0.2) 0%,
    rgba(149, 193, 31, 0.1) 100%
  );
  color: #95c11f;
}

.core-service-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.core-service-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Business Solutions Section */
.business-solutions-section {
  padding: 100px 0;
  background: #ffffff;
}

.solutions-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.solutions-text .section-badge.dark {
  background: rgba(6, 78, 59, 0.1);
  color: var(--dark);
}

.solutions-text h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin: 20px 0;
}

.solutions-text h2 .highlight {
  color: var(--primary);
}

.solutions-text > p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.industry-partners {
  margin-top: 32px;
}

.industry-partners h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(
    135deg,
    rgba(149, 193, 31, 0.08) 0%,
    rgba(149, 193, 31, 0.02) 100%
  );
  border-radius: 10px;
  transition: var(--transition-fast);
}

.partner-badge:hover {
  background: linear-gradient(
    135deg,
    rgba(149, 193, 31, 0.15) 0%,
    rgba(149, 193, 31, 0.05) 100%
  );
}

.partner-badge span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

.solutions-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(149, 193, 31, 0.3);
}

.stat-card .stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card .stat-icon svg {
  width: 36px;
  height: 36px;
}

.stat-card .stat-icon.employees {
  background: linear-gradient(
    135deg,
    rgba(149, 193, 31, 0.15) 0%,
    rgba(149, 193, 31, 0.05) 100%
  );
}

.stat-card .stat-icon.associates {
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.15) 0%,
    rgba(2, 132, 199, 0.05) 100%
  );
}

.stat-card .stat-icon.retention {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.15) 0%,
    rgba(249, 115, 22, 0.05) 100%
  );
}

.stat-card .stat-icon.morale {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(124, 58, 237, 0.05) 100%
  );
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-info .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.stat-info .stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Home CTA Section */
.home-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

.home-cta-section .cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.home-cta-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.home-cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.home-cta-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.home-cta-section .btn-primary {
  background: #ffffff;
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-normal);
  text-decoration: none;
}

.home-cta-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-cta-section .btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-normal);
  text-decoration: none;
}

.home-cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles for Home About Sections */
@media (max-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-intro-visual {
    order: -1;
  }

  .core-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .about-overview-section,
  .core-services-section,
  .business-solutions-section,
  .home-cta-section {
    padding: 60px 0;
  }

  .core-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solutions-stats {
    grid-template-columns: 1fr;
  }

  .partners-list {
    grid-template-columns: 1fr;
  }

  .solutions-text h2 {
    font-size: 2rem;
  }

  .home-cta-section h2 {
    font-size: 1.75rem;
  }

  .home-cta-section .cta-buttons {
    flex-direction: column;
  }

  .home-cta-section .btn-primary,
  .home-cta-section .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   OUR SERVICES SECTION
   ======================================== */

.our-services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, var(--gray-50) 50%, white 100%);
}

.our-services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-content {
  max-width: 1000px;
  margin: 0 auto;
}

.overview-text {
  line-height: 1.8;
}

.overview-text p {
  font-size: 17px;
  color: var(--gray-700);
  margin-bottom: 40px;
  text-align: justify;
  line-height: 1.8;
  position: relative;
  padding: 0 20px;
}

.overview-text p:last-child {
  margin-bottom: 0;
}

.overview-text strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 17px;
}

.overview-text p:first-child {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding-left: 40px;
  margin-bottom: 50px;
}

.overview-text p:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, #7dd321 100%);
  border-radius: 3px;
}

.overview-text p:nth-child(2) {
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  color: var(--primary);
  margin: 60px 0;
  padding: 0 40px;
  position: relative;
}

.overview-text p:nth-child(2)::before,
.overview-text p:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, #7dd321 100%);
}

.overview-text p:nth-child(2)::before {
  left: 0;
}

.overview-text p:nth-child(2)::after {
  right: 0;
}

.overview-text p:nth-child(3) {
  font-size: 18px;
  margin: 50px 0;
  padding: 0 30px;
}

.overview-text p:nth-child(4) {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin: 50px 0 30px 0;
  padding: 0;
}

.overview-text p:nth-child(5) {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin: 30px 0;
  padding: 0;
}

.overview-text p:nth-child(6) {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin: 30px 0 0 0;
  padding: 0;
}

/* ========================================
   RESPONSIVE - OUR SERVICES SECTION
   ======================================== */

@media (max-width: 1024px) {
  .our-services-section {
    padding: 80px 0;
  }

  .services-content {
    padding: 50px 40px;
  }

  .services-intro h3 {
    font-size: 1.35rem;
  }

  .services-objectives h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .our-services-section {
    padding: 60px 0;
  }

  .services-content {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  .services-intro {
    margin-bottom: 40px;
  }

  .services-intro h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .service-item {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    margin-bottom: 24px;
  }

  .service-item:hover {
    transform: none;
  }

  .service-number {
    align-self: flex-start;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .service-description {
    font-size: 14px;
    text-align: left;
  }

  .services-objectives {
    padding-top: 40px;
  }

  .services-objectives h3 {
    font-size: 1.15rem;
    margin-bottom: 32px;
  }

  .objective-item {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .objective-number {
    align-self: flex-start;
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .objective-description {
    font-size: 13px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .services-content {
    padding: 32px 20px;
  }

  .services-intro h3 {
    font-size: 1.1rem;
  }

  .services-objectives h3 {
    font-size: 1.05rem;
  }

  .service-item {
    padding: 16px;
    margin-bottom: 20px;
  }

  .service-number {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .objective-item {
    padding: 14px;
  }

  .objective-number {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .service-description,
  .objective-description {
    font-size: 12px;
    line-height: 1.5;
  }
}
/* ===
=====================================
   REDESIGNED OVERVIEW SECTION
   ======================================== */

.about-overview-section {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}

.about-overview-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.overview-content {
  background: white;
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.overview-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.overview-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.overview-intro h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.overview-intro .lead-text {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 500;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.expertise-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(249, 250, 251, 0.9) 100%
  );
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--green-400) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(149, 193, 31, 0.3);
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.expertise-icon svg {
  width: 32px;
  height: 32px;
  transition: var(--transition-normal);
}

.expertise-icon.construction {
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.15) 0%,
    rgba(217, 119, 6, 0.05) 100%
  );
  color: #d97706;
}

.expertise-icon.technology {
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.15) 0%,
    rgba(2, 132, 199, 0.05) 100%
  );
  color: #0284c7;
}

.expertise-icon.consulting {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(124, 58, 237, 0.05) 100%
  );
  color: #7c3aed;
}

.expertise-icon.infrastructure {
  background: linear-gradient(
    135deg,
    rgba(149, 193, 31, 0.15) 0%,
    rgba(149, 193, 31, 0.05) 100%
  );
  color: var(--primary);
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.1);
}

.expertise-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.expertise-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.company-vision {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
  padding-top: 40px;
  border-top: 2px solid var(--gray-100);
}

.vision-content {
  position: relative;
}

.vision-quote {
  background: linear-gradient(
    135deg,
    var(--green-50) 0%,
    rgba(167, 243, 208, 0.3) 100%
  );
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
}

.vision-quote svg {
  color: var(--primary);
  opacity: 0.7;
  margin-bottom: 20px;
}

.vision-quote blockquote {
  margin: 0;
}

.vision-quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
}

.vision-quote cite {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
}

.company-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.company-stats .stat-item {
  text-align: center;
  padding: 24px 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(249, 250, 251, 0.8) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition-normal);
}

.company-stats .stat-item:hover {
  border-color: rgba(149, 193, 31, 0.3);
  box-shadow: 0 8px 20px rgba(149, 193, 31, 0.1);
}

.company-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.company-stats .stat-label {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

/* ========================================
   RESPONSIVE - REDESIGNED OVERVIEW
   ======================================== */

@media (max-width: 1024px) {
  .about-overview-section {
    padding: 80px 0;
  }

  .overview-content {
    padding: 50px 40px;
  }

  .overview-intro h3 {
    font-size: 1.5rem;
  }

  .expertise-grid {
    gap: 24px;
  }

  .company-vision {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .company-stats {
    flex-direction: row;
    justify-content: space-between;
  }

  .company-stats .stat-item {
    flex: 1;
    margin: 0 8px;
  }
}

@media (max-width: 768px) {
  .about-overview-section {
    padding: 60px 0;
  }

  .overview-content {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  .overview-main {
    gap: 40px;
  }

  .overview-intro h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
  }

  .overview-intro .lead-text {
    font-size: 16px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expertise-card {
    padding: 24px 20px;
  }

  .expertise-card:hover {
    transform: none;
  }

  .expertise-icon {
    width: 56px;
    height: 56px;
  }

  .expertise-icon svg {
    width: 28px;
    height: 28px;
  }

  .expertise-card h4 {
    font-size: 1.15rem;
  }

  .expertise-card p {
    font-size: 13px;
  }

  .company-vision {
    padding-top: 32px;
    gap: 32px;
  }

  .vision-quote {
    padding: 32px 24px;
  }

  .vision-quote p {
    font-size: 15px;
  }

  .company-stats {
    flex-direction: column;
    gap: 20px;
  }

  .company-stats .stat-item {
    margin: 0;
    padding: 20px 16px;
  }

  .company-stats .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .overview-content {
    padding: 32px 20px;
  }

  .overview-main {
    gap: 32px;
  }

  .overview-intro h3 {
    font-size: 1.2rem;
  }

  .overview-intro .lead-text {
    font-size: 15px;
  }

  .expertise-card {
    padding: 20px 16px;
  }

  .expertise-icon {
    width: 48px;
    height: 48px;
  }

  .expertise-icon svg {
    width: 24px;
    height: 24px;
  }

  .expertise-card h4 {
    font-size: 1.05rem;
  }

  .expertise-card p {
    font-size: 12px;
  }

  .vision-quote {
    padding: 24px 20px;
  }

  .vision-quote p {
    font-size: 14px;
  }

  .company-stats .stat-number {
    font-size: 1.75rem;
  }

  .company-stats .stat-label {
    font-size: 12px;
  }
}

/* ========================================
   COMPANY DIRECTORS SECTION
   ======================================== */

.directors-section {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, var(--gray-50) 100%);
}

.directors-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.director-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.director-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--green-400) 100%);
}

.director-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(149, 193, 31, 0.3);
}

.director-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-100);
}

.director-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--green-50) 0%,
    rgba(167, 243, 208, 0.3) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  border: 3px solid rgba(149, 193, 31, 0.2);
}

.director-avatar svg {
  width: 40px;
  height: 40px;
}

.director-title-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.2;
}

.director-position {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: var(--green-50);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
}

.director-bio {
  line-height: 1.7;
}

.director-bio p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
  text-align: justify;
}

.director-bio p:last-child {
  margin-bottom: 0;
}

/* ========================================
   RESPONSIVE - DIRECTORS SECTION
   ======================================== */

@media (max-width: 1024px) {
  .directors-section {
    padding: 80px 0;
  }

  .directors-grid {
    gap: 32px;
  }

  .director-card {
    padding: 32px 28px;
  }

  .director-header {
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .director-avatar {
    width: 70px;
    height: 70px;
  }

  .director-avatar svg {
    width: 36px;
    height: 36px;
  }

  .director-title-info h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 768px) {
  .directors-section {
    padding: 60px 0;
  }

  .directors-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .director-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
  }

  .director-card:hover {
    transform: none;
  }

  .director-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .director-avatar {
    width: 64px;
    height: 64px;
  }

  .director-avatar svg {
    width: 32px;
    height: 32px;
  }

  .director-title-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .director-bio p {
    font-size: 13px;
    margin-bottom: 14px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .director-card {
    padding: 24px 20px;
  }

  .director-header {
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .director-avatar {
    width: 56px;
    height: 56px;
  }

  .director-avatar svg {
    width: 28px;
    height: 28px;
  }

  .director-title-info h3 {
    font-size: 1.15rem;
  }

  .director-position {
    font-size: 12px;
    padding: 3px 10px;
  }

  .director-bio p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
}

/* ========================================
   RESPONSIVE - REDESIGNED OUR SERVICES SECTION
   ======================================== */

@media (max-width: 1024px) {
  .our-services-section {
    padding: 80px 0;
  }

  .services-content {
    padding: 50px 40px;
    border-radius: 20px;
  }

  .overview-text p {
    font-size: 15px;
    margin-bottom: 28px;
    padding: 20px 0;
  }

  .overview-text p:first-child {
    padding-left: 25px;
  }

  .overview-text p:first-child::before {
    height: 50px;
  }

  .overview-text p:nth-child(2) {
    padding: 24px 20px;
    margin: 32px 0;
  }

  .overview-text p:nth-child(3) {
    padding: 28px 24px;
  }

  .overview-text p:nth-child(4),
  .overview-text p:nth-child(5),
  .overview-text p:nth-child(6) {
    padding: 18px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .our-services-section {
    padding: 60px 0;
  }

  .services-content {
    padding: 40px 24px;
    border-radius: 16px;
  }

  .overview-text p {
    font-size: 14px;
    margin-bottom: 24px;
    padding: 16px 0;
    text-align: left;
  }

  .overview-text p:hover {
    padding-left: 16px;
    padding-right: 16px;
  }

  .overview-text p:first-child {
    padding-left: 20px;
  }

  .overview-text p:first-child::before {
    height: 40px;
    width: 3px;
  }

  .overview-text p:nth-child(2) {
    padding: 20px 16px;
    margin: 24px 0;
    border-radius: 12px;
  }

  .overview-text p:nth-child(3) {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .overview-text p:nth-child(4),
  .overview-text p:nth-child(5),
  .overview-text p:nth-child(6) {
    padding: 16px 18px;
    font-size: 13px;
    margin: 16px 0;
    border-radius: 10px;
  }

  .overview-text strong {
    font-size: 14px;
    padding: 1px 4px;
  }
}

@media (max-width: 480px) {
  .services-content {
    padding: 32px 20px;
  }

  .overview-text p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 14px 0;
  }

  .overview-text p:first-child {
    padding-left: 18px;
  }

  .overview-text p:nth-child(2) {
    padding: 18px 14px;
    margin: 20px 0;
  }

  .overview-text p:nth-child(3) {
    padding: 20px 16px;
  }

  .overview-text p:nth-child(4),
  .overview-text p:nth-child(5),
  .overview-text p:nth-child(6) {
    padding: 14px 16px;
    font-size: 12px;
    margin: 14px 0;
  }

  .overview-text strong {
    font-size: 13px;
  }
} /* =
=======================================
   RESPONSIVE - NEW OPEN DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .overview-text p {
    font-size: 16px;
    margin-bottom: 35px;
    padding: 0 16px;
  }

  .overview-text p:first-child {
    font-size: 17px;
    padding-left: 35px;
    margin-bottom: 45px;
  }

  .overview-text p:nth-child(2) {
    font-size: 18px;
    margin: 50px 0;
    padding: 0 35px;
  }

  .overview-text p:nth-child(2)::before,
  .overview-text p:nth-child(2)::after {
    width: 50px;
  }

  .overview-text p:nth-child(3) {
    font-size: 17px;
    margin: 45px 0;
    padding: 0 25px;
  }
}

@media (max-width: 768px) {
  .overview-text p {
    font-size: 15px;
    margin-bottom: 30px;
    padding: 0 12px;
    text-align: left;
  }

  .overview-text p:first-child {
    font-size: 16px;
    padding-left: 30px;
    margin-bottom: 40px;
  }

  .overview-text p:first-child::before {
    width: 4px;
  }

  .overview-text p:nth-child(2) {
    font-size: 17px;
    margin: 40px 0;
    padding: 0 30px;
  }

  .overview-text p:nth-child(2)::before,
  .overview-text p:nth-child(2)::after {
    width: 40px;
  }

  .overview-text p:nth-child(3) {
    font-size: 16px;
    margin: 35px 0;
    padding: 0 20px;
  }

  .overview-text p:nth-child(4),
  .overview-text p:nth-child(5),
  .overview-text p:nth-child(6) {
    font-size: 15px;
    margin: 25px 0;
  }
}

@media (max-width: 480px) {
  .overview-text p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    padding: 0 8px;
  }

  .overview-text p:first-child {
    font-size: 15px;
    padding-left: 25px;
    margin-bottom: 35px;
  }

  .overview-text p:first-child::before {
    width: 3px;
  }

  .overview-text p:nth-child(2) {
    font-size: 16px;
    margin: 35px 0;
    padding: 0 25px;
  }

  .overview-text p:nth-child(2)::before,
  .overview-text p:nth-child(2)::after {
    width: 30px;
  }

  .overview-text p:nth-child(3) {
    font-size: 15px;
    margin: 30px 0;
    padding: 0 15px;
  }

  .overview-text p:nth-child(4),
  .overview-text p:nth-child(5),
  .overview-text p:nth-child(6) {
    font-size: 14px;
    margin: 20px 0;
  }

  .overview-text strong {
    font-size: 14px;
  }
}

/* ========================================
   EDUCATION CONSULTANCY CONTENT SECTION
   ======================================== */

.education-content-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
}

.education-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 40px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.education-main-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #c45000;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #c45000;
  display: inline-block;
}

.education-content-block {
  margin-bottom: 28px;
}

.education-content-block:last-child {
  margin-bottom: 0;
}

.education-content-block p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 16px;
  text-align: justify;
}

.education-content-block p:last-child {
  margin-bottom: 0;
}

/* Highlight styles matching the screenshot */
.highlight-orange {
  color: #c45000;
  font-weight: 700;
}

.highlight-blue {
  color: #0066cc;
  text-decoration: underline;
  font-weight: 500;
}

.education-content-block strong {
  color: #333;
  font-weight: 700;
}

.education-content-block em {
  font-style: italic;
  color: #444;
}

/* Responsive styles */
@media (max-width: 768px) {
  .education-content-section {
    padding: 60px 0;
  }

  .education-content-wrapper {
    padding: 30px 24px;
    margin: 0 16px;
  }

  .education-main-title {
    font-size: 1.5rem;
  }

  .education-content-block p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .education-content-wrapper {
    padding: 24px 20px;
    margin: 0 12px;
  }

  .education-main-title {
    font-size: 1.35rem;
  }

  .education-content-block p {
    font-size: 0.95rem;
    text-align: left;
  }
}

/* ========================================
   EDUCATION INFO CARD (Similar to Event Services)
   ======================================== */

.education-info-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-100);
}

.education-side-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.education-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.education-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.education-info-card .services-subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  font-style: italic;
}

.education-info-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.education-info-content p:last-child {
  margin-bottom: 0;
}

.education-info-content strong {
  color: var(--dark);
  font-weight: 600;
}

.text-accent {
  color: var(--primary);
  font-weight: 600;
  position: relative;
}

.text-accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  opacity: 0.4;
}

/* Education Intro Section Customization */
.education-intro .intro-badge {
  color: #0891b2;
}

.education-intro .intro-divider {
  color: #0891b2;
}

.education-intro .intro-divider span {
  background: linear-gradient(90deg, transparent, #0891b2);
}

.education-intro .intro-divider span:last-child {
  background: linear-gradient(90deg, #0891b2, transparent);
}

/* Responsive Styles for Education Info Card */
@media (max-width: 992px) {
  .education-info-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .education-info-card {
    padding: 30px 24px;
  }
}

/* ========================================
   ABOUT US PAGE - NEW SECTIONS
   ======================================== */

/* Company Introduction Section */
.about-intro-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #fffbf5 0%, #fff7ed 50%, #fff5e6 100%);
}

.about-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text-block {
  margin-bottom: 40px;
}

.intro-paragraph {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 20px;
  text-align: justify;
}

.intro-paragraph strong {
  color: var(--primary);
  font-weight: 700;
}

/* Quote Box */
.quote-box {
  background: linear-gradient(135deg, var(--primary) 0%, #7ab31a 100%);
  border-radius: var(--radius-xl);
  padding: 16px 48px 4px;
  margin: 24px 0 16px;
  position: relative;
  box-shadow: 0 16px 48px rgba(149, 193, 31, 0.25);
}

.quote-box .quote-icon {
  position: absolute;
  top: -16px;
  left: 40px;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  padding: 10px;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quote-box blockquote {
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.intro-paragraph.after-quote {
  margin-top: 40px;
  font-size: 1.1rem;
}

/* Established by Young Entrepreneurs Section */
.about-entrepreneurs-section {
  padding: 50px 0;
  background: white;
}

.entrepreneurs-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.entrepreneurs-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 32px;
}

.entrepreneurs-content h2 .highlight {
  color: var(--primary);
}

.entrepreneurs-text {
  text-align: justify;
}

.entrepreneurs-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.entrepreneurs-text p:last-child {
  margin-bottom: 0;
}

/* Directors Section */
.about-directors-section {
  padding: 40px 0 60px;
  background-color: #878786;
}

.about-directors-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.about-directors-section .section-header h2 {
  color: #1a1a2e;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Director Profile Card */
.director-profile-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.director-profile-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.director-portrait {
  float: left;
  margin: 0 24px 12px 0;
  width: 120px;
  height: 120px;
}

.director-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary);
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(149, 193, 31, 0.2) 0%, rgba(149, 193, 31, 0.1) 100%);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.director-profile-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.director-designation {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.director-expertise {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Director Full Bio Styles */
.director-bio-full {
  margin-top: 16px;
  position: relative;
}

.director-bio-full p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #111827;
  margin-bottom: 12px;
  text-align: left;
}

.director-bio-full .more-text {
  display: none;
}

.director-bio-full.expanded .more-text {
  display: block;
}

.read-more-btn {
  display: inline-block;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  text-decoration: underline;
  transform: translateX(4px);
}

.director-bio-full p:last-child {
  margin-bottom: 0;
}

/* Key Highlights Section */
.about-highlights-section {
  padding: 40px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-highlights-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.highlight-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.highlight-icon svg {
  width: 100%;
  height: 100%;
}

.highlight-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Key Points */
.key-points {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.key-points h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  text-align: center;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.point-checkmark {
  flex-shrink: 0;
}

.point-item span {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .directors-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-intro-section,
  .about-entrepreneurs-section,
  .about-directors-section,
  .about-highlights-section {
    padding: 60px 0;
  }

  .quote-box {
    padding: 16px 24px 4px;
  }

  .quote-box blockquote {
    font-size: 1.1rem;
  }

  .points-grid {
    grid-template-columns: 1fr;
  }

  .director-profile-card {
    padding: 24px;
  }

  .portrait-placeholder {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-paragraph {
    font-size: 1rem;
    text-align: left;
  }

  .entrepreneurs-text p {
    font-size: 1rem;
    text-align: left;
  }

  .key-points {
    padding: 24px;
  }
}

/* ========================================
   DIRECTOR PHOTO LIGHTBOX
   ======================================== */

.director-photo-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.director-photo-lightbox.active {
  display: flex;
}

.director-photo-lightbox .lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.director-photo-lightbox .lightbox-content {
  position: relative;
  z-index: 10001;
  max-width: 90vw;
  max-height: 90vh;
  animation: zoomIn 0.3s ease;
}

.director-photo-lightbox .lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.director-photo-lightbox .lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.director-photo-lightbox .lightbox-image-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.director-photo-lightbox .lightbox-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.director-placeholder-large {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(149, 193, 31, 0.2) 0%, rgba(149, 193, 31, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.director-placeholder-large svg {
  width: 200px;
  height: 200px;
}

/* Hover effect for director portraits */
.director-portrait:hover {
  opacity: 0.8;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive styles for lightbox */
@media (max-width: 768px) {
  .director-photo-lightbox .lightbox-content {
    max-width: 95vw;
  }

  .director-photo-lightbox .lightbox-close {
    top: -45px;
    width: 36px;
    height: 36px;
  }

  .director-placeholder-large {
    width: 300px;
    height: 300px;
  }

  .director-placeholder-large svg {
    width: 150px;
    height: 150px;
  }
}

/* ========================================
   COMPANY OBJECTS SECTION V2 - LIGHT THEME
   ======================================== */

.company-objects-section-v2 {
  margin-top: 80px;
  margin-bottom: 60px;
}

/* Section Header */
.objects-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.objects-section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.objects-section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* Ancillary Section Header */
.ancillary-section-header {
  margin-top: 60px;
  margin-bottom: 32px;
}

.ancillary-section-header h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

/* Objects Cards Grid */
.objects-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card Base Style */
.object-card-v2 {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.object-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Card Number Badge */
.object-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

/* Card Text */
.object-card-v2 p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin: 0;
  text-align: justify;
}

/* Color Variants - Light Backgrounds */
.object-card-v2.color-green {
  background: linear-gradient(135deg, rgba(149, 193, 31, 0.08) 0%, rgba(149, 193, 31, 0.04) 100%);
  border-color: rgba(149, 193, 31, 0.15);
}

.object-card-v2.color-green:hover {
  border-color: rgba(149, 193, 31, 0.3);
}

.object-card-number.green {
  background: linear-gradient(135deg, #95C11F 0%, #7cb51a 100%);
}

.object-card-v2.color-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.04) 100%);
  border-color: rgba(59, 130, 246, 0.15);
}

.object-card-v2.color-blue:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.object-card-number.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.object-card-v2.color-orange {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0.04) 100%);
  border-color: rgba(249, 115, 22, 0.15);
}

.object-card-v2.color-orange:hover {
  border-color: rgba(249, 115, 22, 0.3);
}

.object-card-number.orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.object-card-v2.color-teal {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(13, 148, 136, 0.04) 100%);
  border-color: rgba(13, 148, 136, 0.15);
}

.object-card-v2.color-teal:hover {
  border-color: rgba(13, 148, 136, 0.3);
}

.object-card-number.teal {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.object-card-v2.color-purple {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0.04) 100%);
  border-color: rgba(124, 58, 237, 0.15);
}

.object-card-v2.color-purple:hover {
  border-color: rgba(124, 58, 237, 0.3);
}

.object-card-number.purple {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.object-card-v2.color-amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.04) 100%);
  border-color: rgba(245, 158, 11, 0.15);
}

.object-card-v2.color-amber:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.object-card-number.amber {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.object-card-v2.color-rose {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.08) 0%, rgba(244, 63, 94, 0.04) 100%);
  border-color: rgba(244, 63, 94, 0.15);
}

.object-card-v2.color-rose:hover {
  border-color: rgba(244, 63, 94, 0.3);
}

.object-card-number.rose {
  background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
}

.object-card-v2.color-cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(6, 182, 212, 0.04) 100%);
  border-color: rgba(6, 182, 212, 0.15);
}

.object-card-v2.color-cyan:hover {
  border-color: rgba(6, 182, 212, 0.3);
}

.object-card-number.cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

/* Responsive Styles for Company Objects V2 */
@media (max-width: 992px) {
  .objects-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .company-objects-section-v2 {
    margin-top: 60px;
  }

  .object-card-v2 {
    padding: 24px;
  }

  .ancillary-section-header {
    margin-top: 48px;
  }

  .ancillary-section-header h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .object-card-v2 {
    padding: 20px;
  }

  .object-card-v2 p {
    font-size: 0.9rem;
    text-align: left;
  }

  .object-card-number {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* Sectoral Expertise Grid */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sector-card {
  padding: 40px 32px;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.sector-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.sector-icon svg {
  width: 28px;
  height: 28px;
}

.sector-icon.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.sector-icon.cyan { background: rgba(6, 182, 212, 0.1); color: #06b6d4; }
.sector-icon.orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.sector-icon.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.sector-icon.teal { background: rgba(20, 184, 166, 0.1); color: #14b8a6; }
.sector-icon.gray { background: rgba(107, 114, 128, 0.1); color: #6b7280; }

.sector-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.sector-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

/* Sector Card Background Images */
.sector-card-heavy-civil,
.sector-card-transportation,
.sector-card-power,
.sector-card-buildings,
.sector-card-water,
.sector-card-minerals {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.sector-card-heavy-civil::before,
.sector-card-transportation::before,
.sector-card-power::before,
.sector-card-buildings::before,
.sector-card-water::before,
.sector-card-minerals::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.50) 100%);
  z-index: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card-heavy-civil:hover::before,
.sector-card-transportation:hover::before,
.sector-card-power:hover::before,
.sector-card-buildings:hover::before,
.sector-card-water:hover::before,
.sector-card-minerals:hover::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.sector-card-heavy-civil .sector-icon,
.sector-card-heavy-civil .sector-content,
.sector-card-transportation .sector-icon,
.sector-card-transportation .sector-content,
.sector-card-power .sector-icon,
.sector-card-power .sector-content,
.sector-card-buildings .sector-icon,
.sector-card-buildings .sector-content,
.sector-card-water .sector-icon,
.sector-card-water .sector-content,
.sector-card-minerals .sector-icon,
.sector-card-minerals .sector-content {
  position: relative;
  z-index: 1;
}

/* White text for cards with background images */
.sector-card-heavy-civil .sector-content h4,
.sector-card-transportation .sector-content h4,
.sector-card-power .sector-content h4,
.sector-card-buildings .sector-content h4,
.sector-card-water .sector-content h4,
.sector-card-minerals .sector-content h4 {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.sector-card-heavy-civil .sector-content p,
.sector-card-transportation .sector-content p,
.sector-card-power .sector-content p,
.sector-card-buildings .sector-content p,
.sector-card-water .sector-content p,
.sector-card-minerals .sector-content p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Keep icons with their original colors but add shadow */
.sector-card-heavy-civil .sector-icon,
.sector-card-transportation .sector-icon,
.sector-card-power .sector-icon,
.sector-card-buildings .sector-icon,
.sector-card-water .sector-icon,
.sector-card-minerals .sector-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}


.sector-card-heavy-civil {
  background-image: url('../assets/heavy-civil-infrastructure.jpg');
}

.sector-card-transportation {
  background-image: url('../assets/transportation-infrastructure.jpg');
}

.sector-card-power {
  background-image: url('../assets/power-transmission.jpg');
}

.sector-card-buildings {
  background-image: url('../assets/buildings-factories.jpg');
}

.sector-card-water {
  background-image: url('../assets/water-treatment.jpg');
}

.sector-card-minerals {
  background-image: url('../assets/minerals-metals.jpg');
}

@media (max-width: 992px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 640px) {
  .sector-grid { grid-template-columns: 1fr; }
  .sector-card { padding: 32px 24px; }
}


/* ========================================
   BUSINESS VERTICALS SECTION - HOME PAGE
   ======================================== */

.verticals-section {
  padding: 100px 0;
  background: #f5f7fa;
}

.verticals-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vertical-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--gray-100);
  border-left: 4px solid #95C11F;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.vertical-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(149, 193, 31, 0.15);
  border-left-color: #7cb51a;
}

.vertical-content {
  padding: 28px 24px;
  flex: 1;
}

.vertical-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.vertical-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

.vertical-image {
  height: 140px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--teal-50) 100%);
}

.vertical-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vertical-card:hover .vertical-image img {
  transform: scale(1.08);
}

.vertical-arrow {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(149, 193, 31, 0.1) 0%, rgba(149, 193, 31, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.vertical-card:hover .vertical-arrow {
  background: var(--primary);
  color: white;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .verticals-section {
    padding: 70px 0;
  }
  
  .verticals-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .vertical-card {
    flex-direction: row;
    align-items: stretch;
  }
  
  .vertical-content {
    padding: 20px;
    flex: 1;
  }
  
  .vertical-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .vertical-image {
    width: 120px;
    height: auto;
    flex-shrink: 0;
  }
  
  .vertical-arrow {
    top: auto;
    bottom: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .vertical-card {
    flex-direction: column;
  }
  
  .vertical-image {
    width: 100%;
    height: 120px;
    order: -1;
  }
  
  .vertical-content {
    padding: 20px 16px;
  }
}

/* ========================================
   BUSINESS VERTICALS SECTION V2 - REFERENCE STYLE
   ======================================== */

.verticals-section-v2 {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, #f0f8e8 0%, #e8f4dc 50%, #f5faf0 100%);
}

.verticals-section-v2 .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.verticals-section-v2 .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.verticals-section-v2 .section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.verticals-section-v2 .section-header p {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

.verticals-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.vertical-card-v2 {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(149, 193, 31, 0.2);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  padding: 24px 16px 0;
}

.vertical-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(149, 193, 31, 0.18);
  border-color: #95C11F;
}

.vertical-card-v2 h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.vertical-card-v2 p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex: 1;
}

.vertical-img-wrapper {
  width: calc(100% - 16px);
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  margin: auto 8px 16px;
  background: linear-gradient(135deg, rgba(149, 193, 31, 0.1) 0%, rgba(149, 193, 31, 0.05) 100%);
}

.vertical-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vertical-card-v2:hover .vertical-img-wrapper img {
  transform: scale(1.08);
}

.vertical-img-wrapper.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(149, 193, 31, 0.15) 0%, rgba(149, 193, 31, 0.08) 100%);
}

.vertical-img-wrapper.placeholder::after {
  content: "🖼️";
  font-size: 32px;
  opacity: 0.5;
}

/* Responsive V2 */
@media (max-width: 1200px) {
  .verticals-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .verticals-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .verticals-section-v2 {
    padding: 60px 0;
  }
}

@media (max-width: 600px) {
  .verticals-grid-v2 {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .verticals-section-v2 .section-header h2 {
    font-size: 1.75rem;
  }
  
  .vertical-card-v2 {
    padding: 20px 14px 0;
  }
  
  .vertical-card-v2 h4 {
    font-size: 1.1rem;
  }
  
  .vertical-img-wrapper {
    height: 180px;
  }
}

/* ========================================
   COMMENTS / TESTIMONIALS SLIDER SECTION
   ======================================== */

.comments-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #fef9e7 0%, #fdf6e3 100%);
}

.comments-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.comments-intro .intro-paragraph {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

.comments-intro .intro-paragraph strong {
  color: var(--primary);
}

.comments-slider-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto 30px;
}

.comments-slider {
  position: relative;
  overflow: hidden;
}

.comment-slide {
  display: none;
  animation: fadeSlide 0.5s ease-in-out;
}

.comment-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.comment-box {
  background: linear-gradient(135deg, #95C11F 0%, #7cb51a 100%);
  border-radius: 16px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(149, 193, 31, 0.3);
}

.comment-box .quote-icon {
  color: white;
  opacity: 0.7;
  margin-bottom: 16px;
}

.comment-box blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: white;
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: white;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--primary);
  color: white;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(149, 193, 31, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.slider-dots .dot:hover {
  background: var(--primary);
}

.comments-section .intro-paragraph.after-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--gray-600);
}

/* Responsive */
@media (max-width: 768px) {
  .comments-section {
    padding: 40px 0;
  }
  
  .comment-box {
    padding: 24px 20px;
  }
  
  .comment-box blockquote {
    font-size: 1rem;
  }
  
  .slider-btn {
    width: 38px;
    height: 38px;
  }
}
