/* Powered by YiBu Dijital */
.powered-by {
  text-align: center;
}
.powered-by-logo {
  height: 40px;
  width: auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Modern Color Palette - Inspired by design */
  --background: hsl(220, 20%, 98%);
  --foreground: hsl(220, 15%, 15%);
  --primary: hsl(220, 25%, 25%);
  --primary-foreground: hsl(0, 0%, 98%);
  --secondary: hsl(200, 60%, 55%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --accent: hsl(280, 60%, 65%);
  --accent-foreground: hsl(0, 0%, 98%);
  --muted: hsl(220, 15%, 96%);
  --muted-foreground: hsl(220, 10%, 45%);
  --success: hsl(142, 76%, 36%);
  --destructive: hsl(0, 84%, 60%);

  /* Modern Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(220, 25%, 25%) 0%, hsl(200, 60%, 45%) 100%);
  --gradient-hero: linear-gradient(135deg, hsl(220, 25%, 25%, 0.95) 0%, hsl(200, 60%, 45%, 0.85) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(280, 60%, 65%) 0%, hsl(200, 60%, 55%) 100%);
  --gradient-card: linear-gradient(135deg, hsl(220, 20%, 98%) 0%, hsl(220, 15%, 96%) 100%);

  /* Modern Shadows */
  --shadow-sm: 0 2px 4px -1px hsl(220, 25%, 25%, 0.05);
  --shadow-md: 0 4px 12px -2px hsl(220, 25%, 25%, 0.08);
  --shadow-lg: 0 8px 25px -5px hsl(220, 25%, 25%, 0.12);
  --shadow-xl: 0 20px 40px -12px hsl(220, 25%, 25%, 0.15);

  /* Animation Variables */
  --animation-fast: 0.2s ease-out;
  --animation-normal: 0.3s ease-out;
  --animation-slow: 0.5s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Modern Header with Glass Effect */
.header {
  background: hsla(220, 20%, 98%, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(220, 15%, 85%, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--animation-normal);
}

.header.scrolled {
  background: hsla(220, 20%, 98%, 0.95);
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  height: 3rem;
  transition: transform var(--animation-normal);
}

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

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  position: relative;
  transition: all var(--animation-normal);
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width var(--animation-normal);
}

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

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

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform var(--animation-normal);
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--foreground);
  margin: 3px 0;
  transition: var(--animation-normal);
  border-radius: 2px;
}

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

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

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

/* Hero Section with Modern Design */
.hero {
  position: relative;
  background: var(--gradient-hero);
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, hsl(200, 60%, 80%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: hsl(200, 60%, 80%);
  display: block;
  font-weight: 600;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Modern Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--animation-normal);
  background: none;
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
}

.btn::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.5s;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border-color: currentColor;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

.btn i {
  margin-right: 0.5rem;
  transition: transform var(--animation-normal);
}

.btn:hover i {
  transform: translateX(2px);
}

/* Modern Sections */
.section {
  padding: 1rem 0;
  position: relative;
}

.section-muted {
  background: var(--gradient-card);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Page Hero */
.page-hero {
  background: var(--gradient-hero);
  color: white;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
}

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

.page-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-description {
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Modern Cards */
.card {
  background: var(--background);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--animation-normal);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--animation-normal);
}

.card:hover::before {
  transform: scaleX(1);
}

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

.card-header {
  padding: 2rem;
  border-bottom: 1px solid hsla(220, 15%, 85%, 0.3);
}

.card-content {
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.card-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Services Grid with Stagger Animation */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  text-align: center;
  padding: 2.5rem;
  background: var(--background);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--animation-normal);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--animation-normal);
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  width: 5rem;
  height: 5rem;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2.5rem;
  position: relative;
  z-index: 10;
  transition: all var(--animation-normal);
}

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

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
  position: relative;
  z-index: 10;
}

.service-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  position: relative;
  z-index: 10;
}

/* Enhanced Services Detail Grid */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-detail-card {
  background: var(--background);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  transition: all var(--animation-normal);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.service-detail-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-detail-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-detail-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-detail-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-detail-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-detail-card:nth-child(6) {
  animation-delay: 0.6s;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--animation-normal);
}

.service-detail-card:hover::before {
  transform: scaleX(1);
}

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

.service-detail-header {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border-bottom: 1px solid hsla(220, 15%, 85%, 0.3);
}

.service-detail-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
  transition: all var(--animation-normal);
}

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

.service-detail-title-group {
  flex: 1;
}

.service-detail-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  line-height: 1.3;
}

.service-detail-description {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-detail-content {
  padding: 2rem;
}

.service-features {
  margin-bottom: 2rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all var(--animation-normal);
}

.service-feature:hover {
  background: hsla(220, 15%, 95%, 0.5);
  transform: translateX(4px);
}

.feature-check-icon {
  color: var(--success);
  font-size: 1.2rem;
  background: hsla(142, 76%, 36%, 0.1);
  padding: 0.4rem;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Corporate Services Grid */
.corporate-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Modern Features List (index.html 167-210) */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--gradient-card);
  box-shadow: var(--shadow-sm);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  transition: box-shadow var(--animation-normal), transform var(--animation-normal);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) scale(1.03);
}

.feature-icon {
  font-size: 2.2rem !important;
  color: var(--success);
  background: hsla(142, 76%, 36%, 0.12);
  border-radius: 8px;
  padding: 0.5rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.01em;
}

.corporate-service-card {
  background: var(--background);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  transition: all var(--animation-normal);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.corporate-service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.corporate-service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.corporate-service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.corporate-service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.corporate-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--animation-normal);
}

.corporate-service-card:hover::before {
  transform: scaleX(1);
}

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

.corporate-service-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: all var(--animation-normal);
}

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

.corporate-service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.corporate-service-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.corporate-service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all var(--animation-normal);
}

.corporate-service-features li:hover {
  background: hsla(220, 15%, 95%, 0.5);
  transform: translateX(4px);
}

.corporate-service-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  margin-right: 0.75rem;
  background: hsla(142, 76%, 36%, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-item {
  text-align: center;
  padding: 2rem;
  background: var(--background);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  transition: all var(--animation-normal);
  animation: fadeInUp 0.8s ease-out both;
}

.advantage-item:nth-child(1) {
  animation-delay: 0.1s;
}
.advantage-item:nth-child(2) {
  animation-delay: 0.2s;
}
.advantage-item:nth-child(3) {
  animation-delay: 0.3s;
}
.advantage-item:nth-child(4) {
  animation-delay: 0.4s;
}
.advantage-item:nth-child(5) {
  animation-delay: 0.5s;
}
.advantage-item:nth-child(6) {
  animation-delay: 0.6s;
}

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

.advantage-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: all var(--animation-normal);
}

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

.advantage-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.advantage-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Success Stories Grid */
.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.success-story-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--background);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  transition: all var(--animation-normal);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.success-story-card:nth-child(1) {
  animation-delay: 0.1s;
}
.success-story-card:nth-child(2) {
  animation-delay: 0.2s;
}
.success-story-card:nth-child(3) {
  animation-delay: 0.3s;
}
.success-story-card:nth-child(4) {
  animation-delay: 0.4s;
}

.success-story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--animation-normal);
}

.success-story-card:hover::before {
  opacity: 0.05;
}

.success-story-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.success-story-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.success-story-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  position: relative;
  z-index: 10;
}

.success-story-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  position: relative;
  z-index: 10;
}

/* Corporate Contact Grid */
.corporate-contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

.corporate-contact-content {
  animation: fadeInUp 0.8s ease-out;
}

.contact-methods {
  margin: 2rem 0;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--background);
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  transition: all var(--animation-normal);
}

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

.contact-method-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.contact-method-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.contact-method-description {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.corporate-benefits {
  background: var(--background);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.benefits-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
  text-align: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all var(--animation-normal);
}

.benefit-item:hover {
  background: hsla(220, 15%, 95%, 0.5);
  transform: translateX(4px);
}

.benefit-icon {
  color: var(--success);
  font-size: 1.2rem;
  background: hsla(142, 76%, 36%, 0.1);
  padding: 0.4rem;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Contact Methods Grid */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-method-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--background);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  transition: all var(--animation-normal);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.contact-method-card:nth-child(1) {
  animation-delay: 0.1s;
}
.contact-method-card:nth-child(2) {
  animation-delay: 0.2s;
}
.contact-method-card:nth-child(3) {
  animation-delay: 0.3s;
}

.contact-method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--animation-normal);
}

.contact-method-card:hover::before {
  transform: scaleX(1);
}

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

.contact-method-card .contact-method-icon {
  width: 5rem;
  height: 5rem;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
  transition: all var(--animation-normal);
}

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

.contact-method-card .contact-method-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.contact-method-card .contact-method-description {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-method-info {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

.map-section {
  animation: fadeInUp 0.8s ease-out;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.card-title-icon {
  margin-right: 0.75rem;
  color: var(--accent);
}

/* Office Hours */
.office-hours {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.office-hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: hsla(220, 15%, 95%, 0.5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;

.office-hour-item:hover {
  background: hsla(220, 15%, 90%, 0.7);
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0;
  background: none;
}
  transform: translateX(4px);
}

.office-day {
  font-weight: 600;
  color: var(--foreground);
}

.office-time {
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Office Location */
.office-location {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.office-address {
  padding: 1.5rem;
  background: hsla(220, 15%, 95%, 0.5);
  border-radius: 12px;
}

.office-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.office-detail {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

.office-note {
  text-align: center;
}

.note-text {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
}

/* Emergency Card */
.emergency-card {
  border: 2px solid var(--destructive);
  background: linear-gradient(135deg, var(--background) 0%, hsla(0, 84%, 60%, 0.05) 100%);
}

.emergency-title {
  color: var(--destructive);
  display: flex;
  align-items: center;
}

.emergency-title::before {
  content: "🚨";
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.emergency-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-emergency {
  background: var(--destructive);
  color: white;
  border: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  animation: pulse 2s ease-in-out infinite;
}

.btn-emergency:hover {
  background: hsl(0, 84%, 50%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--background);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  transition: all var(--animation-normal);
  position: relative;
  animation: fadeInUp 0.8s ease-out both;
}

.process-item:nth-child(1) {
  animation-delay: 0.1s;
}
.process-item:nth-child(2) {
  animation-delay: 0.2s;
}
.process-item:nth-child(3) {
  animation-delay: 0.3s;
}
.process-item:nth-child(4) {
  animation-delay: 0.4s;
}
.process-item:nth-child(5) {
  animation-delay: 0.5s;
}

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

.process-number {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  transition: all var(--animation-normal);
}

.process-item:hover .process-number {
  transform: scale(1.1);
}

.process-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.process-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Guarantees Grid */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.guarantee-card {
  background: var(--background);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  transition: all var(--animation-normal);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.guarantee-card:nth-child(1) {
  animation-delay: 0.1s;
}
.guarantee-card:nth-child(2) {
  animation-delay: 0.2s;
}
.guarantee-card:nth-child(3) {
  animation-delay: 0.3s;
}

.guarantee-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--animation-normal);
}

.guarantee-card:hover::before {
  opacity: 0.05;
}

.guarantee-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.guarantee-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  position: relative;
  z-index: 10;
  transition: all var(--animation-normal);
}

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

.guarantee-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
  position: relative;
  z-index: 10;
}

.guarantee-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  position: relative;
  z-index: 10;
}

/* Enhanced Values Grid with Large Icons and Modern Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--background);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  transition: all var(--animation-normal);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.value-card:nth-child(1) {
  animation-delay: 0.1s;
}
.value-card:nth-child(2) {
  animation-delay: 0.2s;
}
.value-card:nth-child(3) {
  animation-delay: 0.3s;
}
.value-card:nth-child(4) {
  animation-delay: 0.4s;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--animation-normal);
}

.value-card:hover::before {
  opacity: 0.05;
}

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

.value-icon {
  width: 5rem;
  height: 5rem;
  background: var(--gradient-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
  position: relative;
  z-index: 10;
  transition: all var(--animation-normal);
}

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

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
  position: relative;
  z-index: 10;
}

.value-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  position: relative;
  z-index: 10;
  font-size: 1rem;
}

/* Enhanced Timeline with Modern Design */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-accent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  animation: fadeInUp 0.8s ease-out both;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: var(--gradient-accent);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-md);
  min-width: 100px;
  text-align: center;
}

.timeline-content {
  background: var(--background);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  margin: 0 2rem;
  flex: 1;
  transition: all var(--animation-normal);
}

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

.timeline-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.timeline-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Enhanced Team Section with Modern Cards */
.team-section {
  background: var(--gradient-card);
  padding: 6rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-item {
  background: var(--background);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid hsla(220, 15%, 85%, 0.3);
  transition: all var(--animation-normal);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.team-item:nth-child(1) {
  animation-delay: 0.1s;
}
.team-item:nth-child(2) {
  animation-delay: 0.2s;
}
.team-item:nth-child(3) {
  animation-delay: 0.3s;
}

.team-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--animation-normal);
}

.team-item:hover::before {
  opacity: 0.05;
}

.team-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.team-icon {
  width: 5rem;
  height: 5rem;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
  position: relative;
  z-index: 10;
  transition: all var(--animation-normal);
}

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

.team-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
  position: relative;
  z-index: 10;
}

.team-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  position: relative;
  z-index: 10;
}

/* Enhanced Mission Vision Grid */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card-title-large {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Enhanced About Content with Image Placeholder */
.about-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: transform var(--animation-normal);
}

.about-image:hover {
  transform: scale(1.05);
}

/* Stats Section with Counter Animation */
.stats-section {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.stat-item {
  animation: fadeInUp 0.8s ease-out both;
}

.stat-item:nth-child(1) {
  animation-delay: 0.1s;
}
.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}
.stat-item:nth-child(3) {
  animation-delay: 0.3s;
}
.stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, hsl(200, 60%, 80%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.footer-logo {
  height: 4rem;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
  transition: transform var(--animation-normal);
}

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

.footer-description {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--primary-foreground);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: all var(--animation-normal);
  padding: 0.25rem 0;
}

.footer-link:hover {
  opacity: 1;
  transform: translateX(4px);
  color: hsl(200, 60%, 80%);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  opacity: 0.7;
  position: relative;
  z-index: 10;
}

/* Contact Items */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all var(--animation-normal);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.contact-item-icon {
  color: hsl(200, 60%, 80%);
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 8px;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-accent);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 25s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 10;
  animation: fadeInUp 1s ease-out;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: hsla(220, 20%, 98%, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--animation-normal);
    z-index: 50;
    border-radius: 0 0 20px 20px;
  }

  .nav.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid hsla(220, 15%, 85%, 0.3);
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
    font-size: 1.1rem;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .section {
    padding: 4rem 0;
  }

  .page-hero {
    padding: 4rem 0;
  }

  .cta-section {
    padding: 4rem 0;
  }

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

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

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .timeline::before {
    left: 2rem;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 4rem;
  }

  .timeline-year {
    position: absolute;
    left: -3rem;
    top: 0;
    min-width: 80px;
  }

  .timeline-content {
    margin: 0;
    margin-top: 1rem;
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .corporate-services-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-section {
    order: 2;
  }

  .contact-info-section {
    order: 1;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 0.75rem;
  }

  .section {
    padding: 3rem 0;
  }

  .page-hero {
    padding: 3rem 0;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .corporate-service-card {
    padding: 2rem 1.5rem;
  }

  .contact-method-card {
    padding: 2rem 1.5rem;
  }

  .advantages-grid,
  .success-stories-grid {
    grid-template-columns: 1fr;
  }
}

/* Loading Animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s ease-in-out infinite;
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--muted);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
