:root {
  --primary-purple: #8453cf;
  --primary-pink: #ee4dae;
  --primary-blue: #2b6ce1;
  --primary-orange: #e0ab09;
  --primary-green: #16a88d;
  --light-purple: #e3def9;
  --light-pink: #ebcfdb;
  --light-blue: #dee7f6;
  --light-orange: #fff5b5;
  --light-green: #bdeed7;
  --dark-purple: #522a94;
  --dark-pink: #c52968;
  --dark-blue: #1e53bf;
  --dark-orange: #a03309;
  --dark-green: #006c52;
  --text-dark: #161b23;
  --text-light: #667084;
  --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: 17.00px;
}

/* Header */
.navbar-brand {
  font-size: 1.39rem !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 {
  padding-top: 50px;
  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('../REG_images/hero-background.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.63rem;
  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.21rem;
}

.hero-subtitle {
  font-size: 1.23rem;
  color: var(--text-light);
  margin-bottom: 2.21rem;
}

/* Services Section */
.services-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 11px 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 21px 40px rgba(0,0,0,0.15);
}

.services-card .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 13px;
}

.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.15rem;
}

/* Team Section */
.team-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 13px 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 11px 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(124, 75, 190, 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 11px 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(88, 67, 170, 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: 2.07rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.21rem;
  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.23rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3.23rem;
  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.63rem;
  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 - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
