@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --background: 220 20% 98%;
  --foreground: 222 47% 11%;
  --card: 0 0% 100%;
  --primary: 38 80% 45%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 38 85% 55%;
  --secondary: 220 14% 96%;
  --muted: 220 14% 94%;
  --muted-foreground: 220 9% 46%;
  --accent: 222 47% 15%;
  --accent-foreground: 0 0% 100%;
  --border: 220 13% 91%;
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s;
}

header.scrolled {
  background: white;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
  border-bottom: 1px solid hsl(var(--border));
}

.header-top {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
  header.scrolled .header-top {
    display: none;
  }
}

.header-phone {
  color: white;
  transition: color 0.3s;
}

header.scrolled .header-phone {
  color: hsl(var(--muted-foreground));
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
  border-radius: 2px;
}

header.scrolled .mobile-menu-toggle span {
  background: hsl(var(--foreground));
}

.inner-page-header .mobile-menu-toggle span {
  background: hsl(var(--foreground));
}

.mobile-menu-toggle.active span {
  background: hsl(var(--foreground));
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 48px;
  width: auto;
  transition: opacity 0.3s;
}

.logo .logo-default {
  display: block;
}

.logo .logo-scrolled {
  display: none;
}

header.scrolled .logo .logo-default,
.inner-page-header .logo .logo-default {
  display: none;
}

header.scrolled .logo .logo-scrolled,
.inner-page-header .logo .logo-scrolled {
  display: block;
}

.logo-text {
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.mobile-menu-logo {
  display: none;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}

.mobile-menu-logo img {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.nav-links a {
  padding: 0.625rem 1rem;
  text-decoration: none;
  color: #FFF;
  opacity: 0.8;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s;
  position: relative;
}

header.scrolled .nav-links a {
  color: #0f1729;
}

.nav-links a:hover,
.nav-links a.active {
  color: hsl(var(--primary));
  background: hsla(var(--primary), 0.05);
  opacity: 1;
}

.btn {
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 0.875rem;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 20px -4px hsla(var(--primary), 0.35);
}

.btn-primary:hover {
  background: hsl(var(--primary-glow));
  transform: scale(1.05);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 20s ease-out infinite alternate;
}

@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  padding: 5rem 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsla(var(--primary), 0.2);
  border: 1px solid hsla(var(--primary), 0.3);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: hsl(var(--primary));
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero h1 .highlight {
  color: hsl(var(--primary));
}

.typing-cursor {
  color: hsl(var(--primary));
  font-weight: 400;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
  transition: transform 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: hsl(var(--primary));
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

/* Scroll Indicator - Right Side */
.scroll-indicator {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.scroll-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to bottom, hsl(var(--primary)), transparent);
  animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
  0% { transform: translateY(-30px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(80px); opacity: 0; }
}

.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}

.scroll-indicator:hover .scroll-text {
  color: hsl(var(--primary));
}

.scroll-indicator:hover .scroll-line {
  background: linear-gradient(to bottom, transparent, hsl(var(--primary)), transparent);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255,255,255,0.4);
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

.scroll-indicator:hover .scroll-arrow {
  border-color: hsl(var(--primary));
}

/* Inner Page Header Styles */
.inner-page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
  border-bottom: 1px solid hsl(var(--border));
}

.inner-page-header .logo-text {
  display: none;
}

.inner-page-header .nav-links a {
  color: #0f1729;
}

.inner-page-header.sticky .nav-links a {
  color: #0f1729;
}

/* Section */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  color: hsl(var(--primary));
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-title .highlight {
  color: hsl(var(--primary));
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, hsla(var(--primary), 0.2), hsla(var(--primary), 0.05));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

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

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Footer */
footer {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  position: relative;
  overflow: hidden;
}

.footer-cta {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 0;
}

.footer-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
  
  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
  
  .footer-cta-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo {
    display: block;
    text-align: center;
  }
  
  .footer-logo img {
    height: 36px;
    width: auto;
    display: inline-block;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  transition: transform 0.3s;
  display: block;
  max-width: 100%;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.social-icon:hover {
  background: hsl(var(--primary));
  transform: scale(1.1) rotate(360deg);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: hsl(var(--primary));
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.footer-contact li i {
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
}

/* Swiper 3D Carousel Styles */
.teamSwiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}

.teamSwiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 450px;
}

.swiper-pagination-bullet {
  background: hsl(var(--primary));
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: hsl(var(--primary));
}

/* Team Card Styles */
.team-card {
  background: hsl(var(--card));
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.team-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.team-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: hsl(var(--primary));
  color: white;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.team-contact-btn:hover {
  background: hsl(var(--primary-glow));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.team-info p {
  color: hsl(var(--primary));
  font-weight: 500;
  font-size: 0.875rem;
}

/* Modern Card Enhancements */
.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.card:hover::before {
  left: 100%;
}

/* Glassmorphism Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Parallax Effect */
.parallax {
  transform: translateZ(0);
  will-change: transform;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Advanced Values Section */
.values-section {
  background: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(var(--background)) 100%);
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsla(var(--primary), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

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

.values-content {
  padding-right: 2rem;
}

.values-description {
  margin-top: 2rem;
  space: 1.5rem;
}

.values-description p {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.values-description strong {
  color: hsl(var(--primary));
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  border-color: hsl(var(--primary));
}

.value-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: hsla(var(--primary), 0.1);
  line-height: 1;
  transition: all 0.3s;
}

.value-card:hover .value-number {
  color: hsla(var(--primary), 0.2);
  transform: scale(1.2);
}

.value-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px -5px hsla(var(--primary), 0.4);
  transition: all 0.3s;
}

.value-card:hover .value-icon-wrapper {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 15px 35px -5px hsla(var(--primary), 0.6);
}

.value-icon {
  width: 32px;
  height: 32px;
  color: white;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.value-card p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Advanced Clients Section */
.clients-section {
  background: hsl(var(--background));
  position: relative;
}

.clientsSwiper {
  width: 100%;
  padding: 3rem 0 4rem;
}

.clientsSwiper .swiper-slide {
  width: 400px;
  height: 550px;
}

.client-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 40px -10px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.client-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px -10px rgba(0,0,0,0.25);
}

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

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover .client-image img {
  transform: scale(1.15);
}

.client-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.client-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.client-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px -5px hsla(var(--primary), 0.4);
  transition: all 0.3s;
}

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

.client-icon i {
  width: 28px;
  height: 28px;
  color: white;
}

.client-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
  font-family: 'Cormorant Garamond', serif;
}

.client-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.client-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

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

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.swiper-button-next,
.swiper-button-prev {
  color: hsl(var(--primary)) !important;
  background: white !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
  transition: all 0.3s !important;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: 30% !important;
  }
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: hsl(var(--primary));
  color: white;
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .values-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .values-content {
    padding-right: 0;
  }
  
  .clientsSwiper .swiper-slide {
    width: 350px;
    height: 500px;
  }
}

/* Useful Links Section */
.useful-links-section {
  background: linear-gradient(135deg, hsl(var(--accent)) 0%, hsl(222 47% 10%) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.useful-links-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(var(--primary), 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.useful-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.useful-link-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  text-decoration: none;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.useful-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s;
}

.useful-link-card:hover::before {
  left: 100%;
}

.useful-link-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
  border-color: hsl(var(--primary));
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
}

.link-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.link-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px hsla(var(--primary), 0.4);
  transition: all 0.3s;
}

.useful-link-card:hover .link-icon {
  transform: rotate(360deg) scale(1.1);
}

.link-icon i {
  width: 28px;
  height: 28px;
  color: white;
}

.link-badge {
  padding: 0.375rem 0.875rem;
  background: hsla(var(--primary), 0.2);
  border: 1px solid hsl(var(--primary));
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.useful-link-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.useful-link-card p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.link-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.link-url {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-family: monospace;
}

.link-arrow {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.useful-link-card:hover .link-arrow {
  background: hsl(var(--primary));
  transform: scale(1.1);
}

.link-arrow i {
  width: 18px;
  height: 18px;
  color: white;
}

.useful-links-cta {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Info Links Cards - Premium Design */
.info-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.info-link-card {
  position: relative;
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--secondary)) 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

.info-link-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s;
}

.info-link-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: hsl(var(--primary));
  box-shadow: 0 25px 50px -10px rgba(0,0,0,0.2);
}

.info-link-card:hover::before {
  left: 100%;
}

.info-link-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px -5px hsla(var(--primary), 0.5);
  z-index: 2;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.info-link-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 15px 40px -10px hsla(var(--primary), 0.5);
  transition: all 0.4s;
  position: relative;
  z-index: 2;
}

.info-link-card:hover .info-link-icon {
  transform: rotate(360deg) scale(1.15);
  box-shadow: 0 20px 50px -10px hsla(var(--primary), 0.7);
}

.info-link-icon i {
  color: white;
}

.info-link-content {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.info-link-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
  transition: color 0.3s;
}

.info-link-card:hover .info-link-content h3 {
  color: hsl(var(--primary));
}

.info-link-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  font-size: 0.9375rem;
}

.info-link-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 2px solid hsl(var(--border));
  position: relative;
  z-index: 2;
}

.info-link-url {
  font-size: 0.8125rem;
  color: hsl(var(--primary));
  font-weight: 500;
  font-family: monospace;
}

.info-link-arrow {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  box-shadow: 0 8px 20px -5px hsla(var(--primary), 0.4);
}

.info-link-card:hover .info-link-arrow {
  transform: scale(1.2) rotate(45deg);
  box-shadow: 0 12px 30px -5px hsla(var(--primary), 0.6);
}

.info-link-arrow i {
  color: white;
}

.info-link-glow {
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, hsla(var(--primary), 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.info-link-card:hover .info-link-glow {
  opacity: 1;
  animation: glowSpin 3s linear infinite;
}

@keyframes glowSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* News Cards - Modern Design */
.news-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.news-card {
  position: relative;
  background: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2.5rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s;
}

.news-card:hover {
  transform: translateY(-12px);
  border-color: hsl(var(--primary));
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
}

.news-card:hover::before {
  left: 100%;
}

.news-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.news-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px hsla(var(--primary), 0.5);
  transition: all 0.4s;
}

.news-card:hover .news-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 15px 40px -8px hsla(var(--primary), 0.7);
}

.news-icon i {
  color: white;
}

.news-category {
  padding: 0.5rem 1rem;
  background: hsla(var(--primary), 0.1);
  border: 1px solid hsl(var(--primary));
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
  line-height: 1.3;
  position: relative;
  z-index: 2;
  transition: color 0.3s;
}

.news-card:hover h3 {
  color: hsl(var(--primary));
}

.news-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  position: relative;
  z-index: 2;
}

.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 2px solid hsl(var(--border));
  position: relative;
  z-index: 2;
}

.news-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.author-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, hsla(var(--primary), 0.2), hsla(var(--primary), 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.news-card:hover .author-avatar {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
}

.author-avatar i {
  color: hsl(var(--primary));
  transition: color 0.3s;
}

.news-card:hover .author-avatar i {
  color: white;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.news-date i {
  color: hsl(var(--primary));
}

.news-card-glow {
  position: absolute;
  bottom: -40%;
  left: -40%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, hsla(var(--primary), 0.15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.news-card:hover .news-card-glow {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}

/* Blog Post Page Styles */
.blog-content-card {
  background: #ffffff !important;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
  border: 2px solid #e5e7eb;
}

.blog-content {
  color: #1a2332 !important;
  font-size: 17px !important;
  line-height: 1.8 !important;
}

.blog-content h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  margin: 32px 0 16px !important;
  color: #1a2332 !important;
  padding-left: 24px !important;
  position: relative;
}

.blog-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: #C17817;
  border-radius: 2px;
}

.blog-content p {
  margin-bottom: 24px !important;
  color: #1a2332 !important;
  line-height: 1.8 !important;
}

.blog-content ul {
  margin: 24px 0 !important;
  padding-left: 32px !important;
}

.blog-content ul li {
  margin-bottom: 12px !important;
  color: #1a2332 !important;
  line-height: 1.7 !important;
}

.blog-content ul li::marker {
  color: #C17817 !important;
}

.blog-share-section {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--background)));
  border-radius: 1.5rem;
  border: 2px solid hsl(var(--border));
}

.blog-share-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: hsl(var(--card));
  border: 2px solid hsl(var(--border));
  border-radius: 0.75rem;
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s;
}

.share-btn:hover {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px hsla(var(--primary), 0.4);
}

.share-btn i {
  transition: transform 0.3s;
}

.share-btn:hover i {
  transform: scale(1.2);
}

/* Modern Contact Form */
.modern-contact-form {
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--secondary)) 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.15);
  border: 2px solid transparent;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.modern-contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s;
}

.modern-contact-form:hover {
  border-color: hsl(var(--primary));
  box-shadow: 0 30px 80px -15px rgba(0,0,0,0.25);
}

.modern-contact-form:hover::before {
  left: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.form-icon-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 15px 40px -10px hsla(var(--primary), 0.5);
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.form-icon-badge i {
  color: white;
}

.form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.form-header p {
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.form-group label i {
  color: hsl(var(--primary));
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid hsl(var(--border));
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 4px hsla(var(--primary), 0.1);
  transform: translateY(-2px);
}

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

.form-submit-btn {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  color: white;
  border: none;
  border-radius: 0.75rem;
  padding: 1.25rem 2rem;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px -10px hsla(var(--primary), 0.5);
  position: relative;
  overflow: hidden;
}

.form-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.form-submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px -10px hsla(var(--primary), 0.7);
}

.form-submit-btn:active {
  transform: translateY(-1px);
}

.form-submit-btn span,
.form-submit-btn i {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  
  .modern-contact-form {
    padding: 2rem;
  }
}

/* Compact Service Cards - Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.compact-service-card {
  background: hsl(var(--card));
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.compact-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
  border-color: hsl(var(--primary));
}

.compact-service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.compact-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.compact-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(var(--primary), 0.9), hsla(var(--primary-glow), 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
}

.compact-service-number {
  font-size: 5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  line-height: 1;
}

.compact-service-content {
  padding: 2rem;
  position: relative;
}

.compact-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -30px auto 1.5rem;
  box-shadow: 0 10px 25px -5px hsla(var(--primary), 0.5);
  transition: all 0.3s;
}

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

.compact-service-icon i {
  color: white;
}

.compact-service-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.compact-service-intro {
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.compact-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compact-service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: hsl(var(--foreground));
  font-size: 0.9375rem;
  border-bottom: 1px solid hsl(var(--border));
  transition: all 0.3s;
}

.compact-service-list li:last-child {
  border-bottom: none;
}

.compact-service-list li:hover {
  padding-left: 0.5rem;
  color: hsl(var(--primary));
}

.compact-service-list li i {
  color: hsl(var(--primary));
  flex-shrink: 0;
}

/* Service Cards - Premium Unique Design */
.service-card {
  position: relative;
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--secondary)) 100%);
  border-radius: 2rem;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.15);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.8s;
}

.service-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 30px 80px -15px rgba(0,0,0,0.25);
  border-color: hsl(var(--primary));
}

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

.service-card-header {
  position: relative;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.service-card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatSlow 8s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -30px); }
}

.service-badge {
  font-size: 5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}

.service-card:hover .service-badge {
  color: rgba(255,255,255,0.35);
  transform: scale(1.1) rotate(-5deg);
}

.service-icon-wrapper {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.3);
  position: relative;
  z-index: 2;
  transition: all 0.5s;
  box-shadow: 0 15px 40px -10px rgba(0,0,0,0.3);
}

.service-card:hover .service-icon-wrapper {
  transform: rotate(360deg) scale(1.15);
  background: rgba(255,255,255,0.3);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.4);
}

.service-icon-wrapper i {
  color: white;
}

.service-card-body {
  padding: 3rem;
  position: relative;
  z-index: 2;
}

.service-card-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
  line-height: 1.2;
  transition: color 0.3s;
}

.service-card:hover .service-card-body h2 {
  color: hsl(var(--primary));
}

.service-description {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.5);
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  transform: scaleY(0);
  transition: transform 0.3s;
}

.service-features li:hover {
  transform: translateX(10px);
  background: rgba(255,255,255,0.8);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
}

.service-features li:hover::before {
  transform: scaleY(1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -5px hsla(var(--primary), 0.4);
  transition: all 0.3s;
}

.service-features li:hover .feature-icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 12px 30px -5px hsla(var(--primary), 0.6);
}

.feature-icon i {
  color: white;
}

.service-features li span {
  font-size: 1.0625rem;
  color: hsl(var(--foreground));
  font-weight: 500;
}

.service-card-glow {
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(var(--primary), 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}

.service-card:hover .service-card-glow {
  opacity: 1;
  animation: glowRotate 4s linear infinite;
}

@keyframes glowRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Mission Cards - Unique Design */
.mission-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.mission-card {
  perspective: 1000px;
  height: 320px;
}

.mission-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--secondary)) 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

.mission-card-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, hsla(var(--primary), 0.05) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s;
}

.mission-card:hover .mission-card-inner {
  transform: translateY(-15px) rotateX(5deg);
  border-color: hsl(var(--primary));
  box-shadow: 0 25px 50px -10px rgba(0,0,0,0.2), 0 0 0 1px hsla(var(--primary), 0.3);
}

.mission-card:hover .mission-card-inner::before {
  right: -100%;
}

.mission-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  transition: all 0.4s;
}

.mission-card:hover .mission-number {
  opacity: 0.25;
  transform: scale(1.2) rotate(5deg);
}

.mission-icon-float {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-glow)));
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 15px 35px -10px hsla(var(--primary), 0.5);
  animation: floatIcon 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.mission-card:hover .mission-icon-float {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 20px 45px -10px hsla(var(--primary), 0.7);
}

.mission-icon-float i {
  color: white;
}

.mission-card-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
  position: relative;
  z-index: 2;
  transition: color 0.3s;
}

.mission-card:hover .mission-card-inner h3 {
  color: hsl(var(--primary));
}

.mission-card-inner p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  font-size: 0.9375rem;
  position: relative;
  z-index: 2;
}

.mission-glow {
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, hsla(var(--primary), 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.mission-card:hover .mission-glow {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

/* Responsive */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: hsl(var(--accent));
    flex-direction: column;
    padding: 2rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.3s;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .mobile-menu-logo {
    display: block;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: white !important;
    padding: 1rem;
    border-radius: 0.5rem;
  }
  
  .nav-links a:hover {
    background: rgba(255,255,255,0.1);
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .values-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .values-content {
    padding-right: 0;
  }
  
  .clientsSwiper .swiper-slide {
    width: 350px;
    height: 500px;
  }
  
  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  footer .container {
    padding: 1rem 2rem !important;
  }
  
  .hero {
    min-height: 100vh;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .useful-links-grid {
    grid-template-columns: 1fr;
  }
  
  .info-links-grid {
    grid-template-columns: 1fr;
  }
  
  .news-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  
  .header-top {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  
  .header-top a {
    justify-content: center;
  }
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
