/* Completely restructured CSS with new design system */
/* PageVerse Website - Modern Restructured Design */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap");

/* Root Variables - New Color Scheme */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #2d3748;
  --accent-green: #48bb78;
  --accent-orange: #ed8936;
  --accent-purple: #805ad5;
  --text-dark: #1a202c;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.font-serif {
  font-family: "Crimson Text", serif;
}

/* Sidebar Navigation */
.sidebar-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1a202c 100%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.sidebar-nav.active {
  transform: translateX(0);
}

@media (min-width: 992px) {
  .sidebar-nav {
    transform: translateX(0);
  }
}

.sidebar-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-brand {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-brand i {
  color: var(--primary-color);
}

.sidebar-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
}

.sidebar-menu {
  flex: 1;
  padding: 2rem 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-link:hover,
.sidebar-link.active {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--primary-color);
}

.sidebar-link.cta-link {
  margin: 1rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-orange)
  );
  border-radius: 12px;
  border-left: none;
  justify-content: center;
}

.sidebar-link.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-footer .social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.sidebar-footer .social-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.sidebar-footer .social-links a:hover {
  color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
  background: var(--primary-color);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Main Content */
.main-content {
  margin-left: 0;
  min-height: 100vh;
}

@media (min-width: 992px) {
  .main-content {
    margin-left: 280px;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 50%, #feb2b2 100%);
  overflow: hidden;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.float-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.float-2 {
  width: 150px;
  height: 150px;
  background: var(--accent-green);
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.float-3 {
  width: 100px;
  height: 100px;
  background: var(--accent-orange);
  top: 50%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-orange)
  );
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
  color: white;
}

.btn-secondary-custom {
  background: white;
  color: var(--text-dark);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

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

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
}

/* Services Masonry */
.services-masonry {
  padding: 5rem 0;
  background: var(--bg-white);
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry-item.large {
  grid-row: span 2;
}

.masonry-item.medium {
  grid-row: span 1;
}

.masonry-item.small {
  grid-row: span 1;
}

.service-card-modern {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.service-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.service-card-modern.accent-green {
  border-left: 4px solid var(--accent-green);
}

.service-card-modern.accent-orange {
  border-left: 4px solid var(--accent-orange);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-orange)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card-modern.accent-green .service-icon {
  background: linear-gradient(135deg, var(--accent-green), #38a169);
}

.service-card-modern.accent-orange .service-icon {
  background: linear-gradient(135deg, var(--accent-orange), #dd6b20);
}

.service-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card-modern p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-list li {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

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

.service-link:hover {
  color: var(--accent-orange);
  transform: translateX(5px);
}

.testimonial-card-modern {
  background: linear-gradient(135deg, var(--secondary-color), #1a202c);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  height: 100%;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.testimonial-card-modern p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.875rem;
  display: block;
  margin-top: 0.25rem;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-orange)
  );
}

.cta-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.btn-cta {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
  color: var(--primary-color);
}

/* Page Header Modern */
.page-header-modern {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
}

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

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-nav a {
  color: var(--text-light);
  text-decoration: none;
}

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

.breadcrumb-nav i {
  color: var(--text-light);
  font-size: 0.75rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Detail */
.services-detail {
  padding: 5rem 0;
  background: var(--bg-white);
}

.service-detail-card {
  margin-bottom: 5rem;
  padding: 3rem 0;
}

.service-detail-card.reverse .row {
  flex-direction: row-reverse;
}

.service-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-orange)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-icon-large.accent-green {
  background: linear-gradient(135deg, var(--accent-green), #38a169);
}

.service-icon-large.accent-orange {
  background: linear-gradient(135deg, var(--accent-orange), #dd6b20);
}

.service-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 10px;
}

.feature-item i {
  color: var(--accent-green);
  font-size: 1.25rem;
}

.service-visual {
  position: relative;
}

.service-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-large);
}

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

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .masonry-item.large,
  .masonry-item.medium,
  .masonry-item.small {
    grid-row: span 1;
  }

  .service-detail-card.reverse .row {
    flex-direction: column;
  }

  .cta-title {
    font-size: 2rem;
  }
}

/* Additional modern components for services and about pages */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card-large {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.stars {
  color: #fbbf24;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.7;
}

.contact-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-method i {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-orange)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.contact-method strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-method span {
  color: var(--text-light);
}

.contact-form-modern {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

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

.form-input-modern {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  transition: all 0.3s ease;
}

.form-input-modern:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-label-modern {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--text-light);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-input-modern:focus + .form-label-modern,
.form-input-modern:not(:placeholder-shown) + .form-label-modern {
  top: -0.5rem;
  left: 0.75rem;
  font-size: 0.875rem;
  color: var(--primary-color);
  background: white;
  padding: 0 0.5rem;
}

.form-check-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.form-check-input-modern {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
}

.form-check-label-modern {
  color: var(--text-light);
  font-size: 0.875rem;
}

.btn-submit-modern {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-orange)
  );
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

/* About page specific styles */
.story-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.story-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-orange)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding-top: 0.5rem;
}

.timeline-year {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.7;
}

.mission-vision-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.mission-card-modern,
.vision-card-modern {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card-modern:hover,
.vision-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-orange)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.mission-card-modern h3,
.vision-card-modern h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.mission-card-modern p,
.vision-card-modern p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.1rem;
}

.team-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.member-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

.member-info {
  padding: 2rem;
}

.member-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 1rem;
}

.member-info p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.member-social {
  display: flex;
  gap: 1rem;
}

.member-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.values-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary-color), #1a202c);
  color: white;
}

.values-section .section-title,
.values-section .section-subtitle {
  color: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-orange)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.value-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
