:root {
  --primary-purple: #5739bf;
  --primary-pink: #ff5196;
  --primary-blue: #3763ff;
  --primary-orange: #dd8310;
  --primary-green: #13a764;
  --light-purple: #dbd2ff;
  --light-pink: #ffffff;
  --light-blue: #e0e7ed;
  --light-orange: #e9e1a8;
  --light-green: #d0eee0;
  --dark-purple: #582784;
  --dark-pink: #b91440;
  --dark-blue: #2856ac;
  --dark-orange: #be6000;
  --dark-green: #008d6b;
  --text-dark: #131920;
  --text-light: #636871;
  --white: #FFFFFF;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
}

/* Header */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../MAP_images/hero-background.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.23rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2.17rem;
}

/* Services Section */
.services-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: none;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 40px rgba(0,0,0,0.15);
}

.services-card .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.price-tag {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  margin-top: 1.18rem;
}

/* Team Section */
.team-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

/* Testimonials Slider */
.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.swiper-pagination-bullet {
  background: var(--primary-purple);
}

.swiper-pagination-bullet-active {
  background: var(--primary-pink);
}

/* FAQ Section */
.accordion-button {
  background: var(--light-purple);
  border: none;
  font-weight: 600;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(73, 53, 175, 0.25);
  border-color: var(--primary-purple);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-purple);
  color: var(--white);
}

/* Blog Section */
.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 11px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-purple);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.25rem rgba(122, 77, 197, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-purple), var(--dark-pink));
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-purple), var(--dark-pink));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--white);
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.23rem;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3.07rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Gallery */
.gallery-img {
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.gallery-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Price Plans */
.priceplan-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  height: 100%;
}

.priceplan-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-purple);
}

.priceplan-card.featured {
  border-color: var(--primary-purple);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin: 1rem 0;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-purple);
}

.features-list li:last-child {
  border-bottom: none;
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
