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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

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

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

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

@keyframes scrollDown {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(5px); }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #374151;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.desktop-menu {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-link {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  background: rgba(124, 58, 237, 0.2);
  color: #c4b5fd;
}

.nav-link.active {
  background: rgba(124, 58, 237, 0.3);
  color: #c4b5fd;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 8px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.nav-social {
  display: flex;
  gap: 8px;
  margin-left: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(124, 58, 237, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(124, 58, 237, 0.5);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1;
}

.mobile-dropdown {
  display: none;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #374151;
}

.mobile-dropdown.open {
  display: flex;
}

.mobile-nav-link {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #e5e7eb;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 14px 16px;
  border-radius: 12px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(124, 58, 237, 0.3);
  border-color: rgba(124, 58, 237, 0.5);
  color: #c4b5fd;
}

.mobile-icon {
  font-size: 20px;
}

.mobile-contact {
  margin-top: 8px;
  padding: 16px;
  font-size: 16px;
}

.mobile-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #374151;
}

.mobile-social-icon {
  width: 44px;
  height: 44px;
  background: #f5f3ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Pages */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.92) 0%, rgba(109, 40, 217, 0.88) 50%, rgba(91, 33, 182, 0.9) 100%);
  z-index: 1;
}

.hero-decorative {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,0.06) 0%, transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.04) 0%, transparent 30%);
  z-index: 2;
}

.floating-shape {
  position: absolute;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 2;
}

.shape-1 {
  top: 15%;
  right: 10%;
  width: 300px;
  height: 300px;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  bottom: 25%;
  left: 5%;
  width: 200px;
  height: 200px;
  border-color: rgba(255,255,255,0.08);
  animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 40px;
  text-align: center;
}

.hero-text-card {
  position: relative;
  padding: 60px 40px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 30px;
  max-width: 900px;
}

.hero-text-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1560472354-b33ff0c44a43?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-text-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.85) 0%, rgba(91, 33, 182, 0.9) 100%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge span {
  font-size: 13px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  border: none;
  color: #7c3aed;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-white:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

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

/* Services Overlay */
.services-overlay {
  position: relative;
  z-index: 10;
  padding: 0 20px 40px;
}

.services-overlay-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.2);
}

.services-overlay-title {
  text-align: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

.services-overlay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-overlay-card {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.service-overlay-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.service-overlay-card h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Playfair Display', serif;
}

.service-overlay-card p {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

.scroll-indicator {
  text-align: center;
  margin-top: 24px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.scroll-arrow {
  font-size: 20px;
  margin-top: 8px;
  animation: scrollDown 1.5s ease-in-out infinite;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
  border-radius: 50px;
  color: #7c3aed;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.section-subtitle {
  color: #6b7280;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services Section */
.services-section {
  padding: 100px 20px;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: #c4b5fd;
}

.service-card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.service-card p {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  color: #4b5563;
  font-size: 14px;
  padding: 6px 0;
}

.service-card-btn {
  background: none;
  border: none;
  color: #7c3aed;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.service-card:hover .service-card-btn {
  gap: 10px;
}

/* Leadership Section */
.leadership-section {
  padding: 100px 20px;
  background: #f8fafc;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.leader-card {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.2s ease;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.leader-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.leader-card h3 {
  font-size: 15px;
  color: #1f2937;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.leader-card p {
  font-size: 12px;
  color: #7c3aed;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
  position: relative;
  overflow: hidden;
}

.cta-decorative {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 35%);
}

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

.cta-content h2 {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

/* Service Pages */
.service-hero {
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
  text-align: center;
}

.service-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.back-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 32px;
  transition: all 0.2s ease;
}

.back-btn:hover {
  background: rgba(255,255,255,0.25);
}

.service-hero-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.service-hero h1 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.service-hero-subtitle {
  font-size: 18px;
  color: #c4b5fd;
  margin-bottom: 16px;
  font-weight: 500;
}

.service-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.service-features-section {
  padding: 80px 20px;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s ease;
}

.feature-card:hover {
  border-color: #c4b5fd;
  transform: translateY(-4px);
}

.feature-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.feature-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  padding: 28px 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.process-step h4 {
  font-size: 17px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.process-step p {
  font-size: 14px;
  color: #6b7280;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: #fff;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-logo {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-desc {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.7;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  background: rgba(124, 58, 237, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer-social-icon:hover {
  background: rgba(124, 58, 237, 0.4);
}

.footer-col a {
  display: block;
  color: #9ca3af;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #c4b5fd;
}

.footer-col p {
  color: #9ca3af;
  font-size: 15px;
  margin-bottom: 10px;
}

.leader-name {
  color: #e5e7eb;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #6b7280;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .services-overlay-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-social {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .services-overlay-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-overlay-card p {
    display: none;
  }
  
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-text-card {
    padding: 40px 24px;
  }
  
  .floating-shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-overlay-grid {
    grid-template-columns: 1fr;
  }
  
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-white, .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-white,
  .cta-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }
}
