/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-purple: #8B5FBF;
  --primary-coral: #FF7F7F;
  --primary-mint: #7FDFB0;
  --primary-peach: #FFB07F;
  --primary-lavender: #C7B7E8;
  
  /* Light & Dark Shades */
  --light-purple: #E8DDF5;
  --dark-purple: #5A3B7A;
  --light-coral: #FFEBEB;
  --dark-coral: #CC4F4F;
  --light-mint: #E8F7F0;
  --dark-mint: #4FAF80;
  --light-peach: #FFE8D7;
  --dark-peach: #CC7F4F;
  --light-lavender: #F0EBFA;
  --dark-lavender: #9E89C7;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-mobile: 3rem 0;
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.section-padding {
  padding: var(--section-padding);
}

/* ===== HEADER & NAVIGATION ===== */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-purple);
}

.navbar-nav .nav-link {
  font-weight: var(--font-weight-semibold);
  color: #333;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-mint) 100%);
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--primary-coral);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: var(--primary-peach);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 150px;
}

.hero-title {
  font-size: 3rem;
  color: var(--dark-purple);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: #fff;
}

.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 10px;
  background: var(--light-lavender);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--light-mint);
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-coral);
  margin-top: 1rem;
}

.service-features {
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: #fff;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-item i {
  font-size: 4rem;
  color: var(--primary-mint);
  margin-bottom: 1.5rem;
}

/* ===== PRICE PLAN SECTION ===== */
.priceplan-section {
  background: var(--light-peach);
}

.priceplan-card {
  background: #fff;
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.priceplan-card:hover {
  transform: scale(1.05);
}

.priceplan-price {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-purple);
  margin: 1.5rem 0;
}

.priceplan-features {
  text-align: left;
  margin-top: 2rem;
}

.priceplan-features li {
  margin-bottom: 0.5rem;
  color: #666;
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: #fff;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--light-lavender);
}

.team-member-name {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-purple);
}

.team-member-role {
  color: var(--primary-coral);
  font-weight: var(--font-weight-semibold);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  background: var(--light-coral);
}

.review-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: 100%;
}

.review-author {
  font-weight: var(--font-weight-bold);
  color: var(--primary-purple);
  margin-top: 1rem;
}

.review-text {
  font-style: italic;
  color: #666;
}

/* ===== CASE STUDY SECTION ===== */
.casestudy-section {
  background: #fff;
}

.casestudy-item {
  background: var(--light-mint);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.casestudy-title {
  color: var(--dark-purple);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--light-lavender);
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: var(--font-weight-bold);
  font-size: 1.5rem;
}

.process-step:nth-child(1)::before { content: '1'; }
.process-step:nth-child(2)::before { content: '2'; }
.process-step:nth-child(3)::before { content: '3'; }
.process-step:nth-child(4)::before { content: '4'; }
.process-step:nth-child(5)::before { content: '5'; }

.process-title {
  margin-top: 4rem;
  color: var(--dark-purple);
  font-weight: var(--font-weight-bold);
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
  background: #fff;
}

.timeline-item {
  border-left: 3px solid var(--primary-coral);
  padding-left: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 13px;
  height: 13px;
  background: var(--primary-coral);
  border-radius: 50%;
}

.timeline-title {
  color: var(--dark-purple);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

/* ===== CAREER SECTION ===== */
.career-section {
  background: var(--light-peach);
}

.career-item {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.career-title {
  color: var(--primary-purple);
  font-weight: var(--font-weight-bold);
}

.career-role {
  color: var(--primary-coral);
  font-weight: var(--font-weight-semibold);
  margin-top: 0.5rem;
}

/* ===== CORE INFO SECTION ===== */
.coreinfo-section {
  background: #fff;
}

.coreinfo-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--light-lavender);
  border-radius: 10px;
  margin-bottom: 2rem;
}

.coreinfo-title {
  color: var(--dark-purple);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--light-mint);
}

.contact-form {
  background: #fff;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
  background: var(--primary-purple);
  color: #fff;
  border-radius: 15px;
  padding: 3rem;
}

.contact-info h5 {
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 1rem;
  width: 20px;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  background: #fff;
}

.blog-item {
  background: var(--light-coral);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.blog-title {
  color: var(--dark-purple);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: #666;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--light-lavender);
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
  color: var(--primary-purple);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

.faq-answer {
  color: #666;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: #fff;
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-purple);
  color: #fff;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-lavender);
  margin-bottom: 1.5rem;
}

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

.footer a:hover {
  color: var(--primary-coral);
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--primary-purple);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--dark-purple);
  transform: translateY(-2px);
}

.btn-secondary-custom {
  background: var(--primary-coral);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background: var(--dark-coral);
  transform: translateY(-2px);
}

/* ===== FORM STYLES ===== */
.form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 95, 191, 0.25);
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-section {
  background: var(--light-lavender);
  padding: 2rem 0;
}

.breadcrumb-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== UTILITIES ===== */
.text-primary-custom {
  color: var(--primary-purple);
}

.text-secondary-custom {
  color: var(--primary-coral);
}

.bg-primary-custom {
  background-color: var(--primary-purple);
}

.bg-secondary-custom {
  background-color: var(--primary-coral);
}

.section-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-purple);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  color: #666;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
