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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --accent-gold: #d4af37;
  --accent-blue: #3b82f6;
  --gradient-primary: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  --gradient-secondary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.3);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Call to Action Section */
.cta-section {
  padding: 8rem 5% 6rem;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

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

.cta-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--bg-primary);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-glow);
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
}

.feature i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 80px rgba(212, 175, 55, 0.6);
}

.cta-btn-secondary {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 2px solid var(--accent-blue);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
  background: var(--accent-blue);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-urgency {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fbbf24;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 50px;
  width: fit-content;
}

.cta-urgency i {
  animation: pulse-warning 1.5s ease-in-out infinite;
}

.cta-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.scales-animation {
  font-size: 8rem;
  color: var(--accent-gold);
  opacity: 0.3;
  animation: gentle-sway 4s ease-in-out infinite;
}

.legal-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-gold);
  animation: orbit 8s linear infinite;
  animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
  top: 20%;
  right: 10%;
}

.floating-icon:nth-child(2) {
  bottom: 30%;
  left: 5%;
}

.floating-icon:nth-child(3) {
  top: 50%;
  right: 20%;
}

/* Animations */
@keyframes pulse-glow {
  0% {
    box-shadow: var(--shadow-glow);
  }
  100% {
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
  }
}

@keyframes pulse-warning {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes gentle-sway {
  0%, 100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
}

@keyframes orbit {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(90deg);
  }
  50% {
    transform: translateY(0px) rotate(180deg);
  }
  75% {
    transform: translateY(10px) rotate(270deg);
  }
  100% {
    transform: translateY(0px) rotate(360deg);
  }
}

/* Services Section */
.services-section {
  padding: 8rem 5% 6rem;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.services-slider-container {
  position: relative;
  overflow: hidden;
}

.services-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--bg-primary);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-glow);
}

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

.card-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.card-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.card-features i {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

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

.card-price {
  font-weight: 600;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.chat-btn {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  width: 100%;
  justify-content: center;
}

.chat-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.nav-btn {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: var(--bg-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent-gold);
  transform: scale(1.2);
}

/* Desktop - Show 4 cards initially */
@media (min-width: 1024px) {
  .service-card {
    width: calc(25% - 1.5rem);
  }
}

/* Tablet - Show 3 cards initially */
@media (min-width: 768px) and (max-width: 1023px) {
  .service-card {
    width: calc(33.333% - 1.33rem);
  }
}

/* Mobile - Show 2 cards initially */
@media (max-width: 767px) {
  .service-card {
    width: calc(50% - 2rem);
    padding: 1.8rem;
    margin-right: 2rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .services-section {
    padding: 5rem 3% 4rem;
  }

  .card-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .card-features {
    margin-bottom: 1.5rem;
  }

  .card-features li {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
  }

  .card-footer {
    margin-top: auto;
    padding-top: 1rem;
  }

  .chat-btn {
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .card-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }

  .card-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .service-card {
    width: calc(85% - 1rem);
    padding: 1.5rem;
    margin-right: 1rem;
    min-height: 380px;
  }

  .services-header {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

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

  .section-subtitle {
    font-size: 0.8rem;
    padding: 0 1rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }

  .card-description {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .card-features li {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .chat-btn {
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
  }

  /* Make slider container have proper padding */
  .services-slider-container {
    padding: 0 1rem;
    overflow: visible;
  }
}



/* About Me Section */
.about-section {
  padding: 8rem 5% 6rem;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-header {
  text-align: center;
  margin-bottom: 5rem;
  margin-top: 5%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.story-section, .achievements-section, .values-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.story-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.story-title::before {
  content: '';
  width: 4px;
  height: 25px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.story-content {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.story-content:last-child {
  margin-bottom: 0;
}

.achievement-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(5px);
}

.achievement-item i {
  font-size: 1.5rem;
  color: var(--accent-gold);
  width: 30px;
  text-align: center;
}

.achievement-text {
  display: flex;
  flex-direction: column;
}

.achievement-text strong {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.achievement-text span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.value-item {
  text-align: center;
  padding: 1.5rem;
  /* background: #d4af37; */
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-5px);
}

.value-item i {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.value-item h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Profile Card */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 2rem;
}

.profile-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.profile-image {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(212, 175, 55, 0.3);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-image:hover .profile-overlay {
  opacity: 1;
}

.profile-image:hover img {
  transform: scale(1.1);
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.profile-info {
  text-align: center;
}

.profile-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.profile-title {
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.profile-credentials {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--accent-gold);
  width: 16px;
  text-align: center;
}

.profile-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 15px;
}

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

.stat-item .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-blue);
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.profile-cta {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  width: 100%;
  justify-content: center;
}

.profile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

/* Social Bar */
.social-bar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
}

.social-title {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-icon i {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

.social-icon span {
  font-weight: 500;
  font-size: 0.9rem;
}

.social-icon.linkedin {
  color: #0077b5;
  background: rgba(0, 119, 181, 0.1);
}

.social-icon.linkedin:hover {
  background: rgba(0, 119, 181, 0.2);
  border-color: #0077b5;
  transform: translateX(5px);
}

.social-icon.twitter {
  color: #1da1f2;
  background: rgba(29, 161, 242, 0.1);
}

.social-icon.twitter:hover {
  background: rgba(29, 161, 242, 0.2);
  border-color: #1da1f2;
  transform: translateX(5px);
}

.social-icon.facebook {
  color: #4267b2;
  background: rgba(66, 103, 178, 0.1);
}

.social-icon.facebook:hover {
  background: rgba(66, 103, 178, 0.2);
  border-color: #4267b2;
  transform: translateX(5px);
}

.social-icon.instagram {
  color: #e4405f;
  background: rgba(228, 64, 95, 0.1);
}

.social-icon.instagram:hover {
  background: rgba(228, 64, 95, 0.2);
  border-color: #e4405f;
  transform: translateX(5px);
}

.social-icon.youtube {
  color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
}

.social-icon.youtube:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: #ff0000;
  transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    position: static;
    order: -1;
  }

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

@media (max-width: 768px) {
  .about-section {
    padding: 5rem 5% 4rem;
  }

  .story-section, .achievements-section, .values-section {
    padding: 2rem;
  }

  .profile-image {
    width: 150px;
    height: 150px;
  }

  .social-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .social-icon {
    font-size: 0.8rem;
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .about-header {
    margin-bottom: 3rem;
  }

  .about-text {
    gap: 2rem;
  }

  .story-section, .achievements-section, .values-section {
    padding: 1.5rem;
  }

  .profile-card {
    padding: 1.5rem;
  }

  .profile-image {
    width: 120px;
    height: 120px;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-link {
    width: 35px;
    height: 35px;
  }
}

/* Scroll indicator */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

nav {
  display: flex;
  gap: 3rem;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

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

nav a:hover::after {
  width: 100%;
}

.cta-header {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.cta-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 2rem;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  width: fit-content;
  animation: slideInLeft 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: slideInLeft 0.8s ease-out 0.6s both;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #d4af37;
  display: block;
}

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

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: slideInLeft 0.8s ease-out 0.8s both;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
  position: relative;
  animation: slideInRight 0.8s ease-out 0.4s both;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.floating-card {
  position: absolute;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 60px;

  animation-delay: 1.5s;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.card-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  nav {
    display: none;
  }

  header {
    padding: 1rem 5%;
  }

  .cta-header {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .cta-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .cta-visual {
    order: -1;
    height: 300px;
  }

  .scales-animation {
    font-size: 6rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .cta-urgency {
    margin: 0 auto;
  }

  .cta-section {
    padding: 5rem 5% 4rem;
  }

  .cta-btn-primary, .cta-btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 5% 2rem;
  }

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

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

  .btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-image img {
    height: 400px;
  }

  .cta-header {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    border-radius: 25px;
  }

  .logo {
    font-size: 1.5rem;
  }

  header {
    padding: 0.8rem 3%;
  }
}

@media (max-width: 480px) {
  .cta-header {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 20px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .cta-visual {
    display: none;
  }

  .cta-btn-primary, .cta-btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-urgency {
    font-size: 0.85rem;
    padding: 0.8rem 1.2rem;
    text-align: center;
  }
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}


/* testimonial */

  /* testimonialsbp Section */
.testimonialsbp-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #0f1419 0%,
    #1a2332 50%,
    #0f1419 100%
  );
  position: relative;
  overflow: hidden;
}

.testimonialsbp-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.container {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  /* padding: 0 20px; */
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  color: #d4af37;
  font-size: 0.8rem;
  /* font-weight: 600; */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.2rem;
  color: #a0a8b3;
  max-width: 600px;
  margin: 0 auto;
}

/* testimonialbc sliderbp */
.testimonialbc-sliderbp {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.testimonialbc-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonialbc-slide {
  flex: 0 0 33.333%;
  padding: 0 15px;
}

.testimonialbc-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonialbc-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.testimonialbc-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 4rem;
  color: #d4af37;
  font-family: serif;
  opacity: 0.3;
}

.testimonialbc-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonialbc-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #d4af37;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.author-info p {
  color: #a0a8b3;
  font-size: 0.95rem;
}

.star-rating {
  margin-top: 15px;
  color: #d4af37;
  font-size: 1.1rem;
}

/* sliderbp Controls */
.sliderbp-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.sliderbp-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #d4af37;
  background: transparent;
  border-radius: 50%;
  color: #d4af37;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sliderbp-btn:hover {
  background: #d4af37;
  color: #0f1419;
  transform: scale(1.1);
}

.sliderbp-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #d4af37;
  transform: scale(1.2);
}

/* Footer Section */
.footer {
  background: #121212;
  padding: 80px 0px 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
 
}
.footer-section{
    background: #121212;
    margin: 5%;

}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #121212;

}

.footer-content {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr ;
  gap: 40px;
  margin-bottom: 50px;
  background: #121212;

}

.footer-section h3 {
  color: #d4af37;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #d4af37;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 20px;
}

.footer-description {
  color: #a0a8b3;
  line-height: 1.7;
  margin-bottom: 30px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: #d4af37;
}

.contact-item i {
  width: 20px;
  color: #d4af37;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0a8b3;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #d4af37;
  padding-left: 10px;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 8px;
}

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

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #d4af37;
  color: #0f1419;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 3%;
}

.footer-bottom p {
  color: #a0a8b3;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  color: #a0a8b3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #d4af37;
}

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

  .testimonialbc-slide {
    flex: 0 0 50%;
  }

  .testimonialbc-card {
    padding: 30px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .testimonialsbp-section {
    padding: 60px 0;
  }

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

  .testimonialbc-slide {
    flex: 0 0 100%;
  }

  .sliderbp-controls {
    margin-top: 30px;
  }

  .footer {
    padding: 50px 0 20px;
  }
}
.contactlux-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 30px;
  background: #121212;
  color: white;

}

.contactlux-left {
  flex: 1 1 500px;
  padding: 30px;
  max-width: 600px;
}

.contactlux-left h2 {
  font-size: 2.8rem;
  color:rgb(251, 248, 248);
  margin-bottom: 20px;
}

.contactlux-left p {
  font-size: 1.1rem;
  color: rgb(249, 249, 249);
  line-height: 1.6;
  margin-bottom: 35px;
}

.contactlux-info p {
  margin: 15px 0;
  font-size: 1rem;
}

.contactlux-info i {
  color:  rgb(247, 244, 244);
  margin-right: 10px;
  width: 25px;
}

.contactlux-social {
  margin-top: 30px;
}

.contactlux-social a {
  display: inline-block;
  margin-right: 15px;
  color: rgb(254, 252, 252);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.contactlux-social a:hover {
  color: #fff;
  transform: scale(1.2);
}

.contactlux-image {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 30px;
    overflow: hidden;
}

.contactlux-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .contactlux-section {
    flex-direction: column;
    text-align: center;
  }

  .contactlux-left, .contactlux-image {
    max-width: 100%;
    padding: 20px;
  }

  .contactlux-left h2 {
    font-size: 2rem;
  }

  .contactlux-social a {
    font-size: 1.3rem;
    margin: 0 8px;
  }
}

/* Dark Theme Embed Section */
.embed-section {
  background: var(--bg-tertiary);
  margin: 0;
  padding: 8rem 5% 6rem;
}

.embed-section iframe {
  width: 100%;
  border: none;
  display: block;
  min-height: 600px;
  background: var(--bg-tertiary);
}
