:root {
  /* Digital Art Marketplace Color Palette - 5 primary colors + shades */
  --primary-purple: #924bb7;
  --primary-blue: #4793f4;
  --primary-pink: #ff3964;
  --primary-orange: #fe9459;
  --primary-teal: #2fac90;
  
  /* Light shades */
  --light-purple: #c6b8ce;
  --light-blue: #afc2dc;
  --light-pink: #f9c4d6;
  --light-orange: #fac39f;
  --light-teal: #73c6cc;
  
  /* Dark shades */
  --dark-purple: #5c297b;
  --dark-blue: #1d6ea8;
  --dark-pink: #bc1f74;
  --dark-orange: #ca4f1e;
  --dark-teal: #077261;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #747f91;
  --dark-gray: #292e34;
  --black: #000000;
}

/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Conservative typography */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-purple);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-purple);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-blue);
}

h3 {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--dark-teal);
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: var(--light-pink);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

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

/* Section spacing */
.section-padding {
  padding: 5rem 0;
}

/* Service cards */
.service-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background: var(--white);
  overflow: hidden;
}

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

.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-pink);
}

/* Team cards */
.team-card {
  border: none;
  border-radius: 15px;
  text-align: center;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 1.5rem auto;
  border: 4px solid var(--light-purple);
}

/* Review cards */
.review-card {
  border: none;
  border-radius: 15px;
  background: var(--light-gray);
  border-left: 4px solid var(--primary-teal);
  height: 100%;
}

/* FAQ cards */
.faq-card {
  border: none;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-orange);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--medium-gray);
}

/* Process/Timeline styles */
.process-item, .timeline-item {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.process-item::before, .timeline-item::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 50%;
  border: 4px solid var(--white);
}

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--light-gray);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
  border: none;
  border-radius: 25px;
  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) 0%, var(--dark-pink) 100%);
}

/* Gallery section */
.gallery-item {
  border-radius: 15px;
  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: 250px;
  object-fit: cover;
}

/* Blog cards */
.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Utility classes */
.text-purple { color: var(--primary-purple); }
.text-blue { color: var(--primary-blue); }
.text-pink { color: var(--primary-pink); }
.text-orange { color: var(--primary-orange); }
.text-teal { color: var(--primary-teal); }

.bg-light-purple { background-color: var(--light-purple); }
.bg-light-blue { background-color: var(--light-blue); }
.bg-light-pink { background-color: var(--light-pink); }
.bg-light-orange { background-color: var(--light-orange); }
.bg-light-teal { background-color: var(--light-teal); }

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 


/* 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;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.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;
    }
}

/* Fix for invalid CSS classes with # in names */

/* Text color classes */
.text-\#790a7a { color: #790a7a !important; }
.text-\#860084 { color: #860084 !important; }
.text-\#0018ff { color: #0018ff !important; }
.text-\#056f82 { color: #056f82 !important; }
.text-\#f1b315 { color: #f1b315 !important; }
.text-\#8e0086 { color: #8e0086 !important; }
.text-\#0018e6 { color: #0018e6 !important; }
.text-\#03766a { color: #03766a !important; }
.text-\#ffc900 { color: #ffc900 !important; }
.text-\#75006f { color: #75006f !important; }
.text-\#0716ff { color: #0716ff !important; }
.text-\#0c938b { color: #0c938b !important; }
.text-\#ff9700 { color: #ff9700 !important; }
.text-\#ffaeb6 { color: #ffaeb6 !important; }
.text-\#600067 { color: #600067 !important; }
.text-\#90047d { color: #90047d !important; }
.text-\#1316ff { color: #1316ff !important; }
.text-\#07837a { color: #07837a !important; }
.text-\#750470 { color: #750470 !important; }
.text-\#150cf8 { color: #150cf8 !important; }
.text-\#008b7b { color: #008b7b !important; }
.text-\#ebb012 { color: #ebb012 !important; }
.text-\#ffc8da { color: #ffc8da !important; }
.text-\#6a006a { color: #6a006a !important; }
.text-\#000fff { color: #000fff !important; }
.text-\#006764 { color: #006764 !important; }
.text-\#f17d04 { color: #f17d04 !important; }
.text-\#ffbdbe { color: #ffbdbe !important; }
.text-\#6e0474 { color: #6e0474 !important; }
.text-\#2208ff { color: #2208ff !important; }
.text-\#07868e { color: #07868e !important; }
.text-\#ed8417 { color: #ed8417 !important; }
.text-\#ffced5 { color: #ffced5 !important; }
.text-\#690071 { color: #690071 !important; }
.text-\#1000f0 { color: #1000f0 !important; }
.text-\#015c6a { color: #015c6a !important; }
.text-\#fdc917 { color: #fdc917 !important; }
.text-\#efb4c8 { color: #efb4c8 !important; }
.text-\#720072 { color: #720072 !important; }
.text-\#0327ea { color: #0327ea !important; }
.text-\#07687b { color: #07687b !important; }
.text-\#ffa316 { color: #ffa316 !important; }
.text-\#f9a3af { color: #f9a3af !important; }
.text-\#81007c { color: #81007c !important; }
.text-\#0807ff { color: #0807ff !important; }
.text-\#00787f { color: #00787f !important; }
.text-\#f6c700 { color: #f6c700 !important; }
.text-\#e7acb3 { color: #e7acb3 !important; }
.text-\#870071 { color: #870071 !important; }
.text-\#1727e6 { color: #1727e6 !important; }
.text-\#089983 { color: #089983 !important; }

/* Background color classes */
.bg-light-\#766d6e { background-color: #f5f5f5 !important; opacity: 0.9; }
.bg-light-\#800091 { background-color: #f8f4f9 !important; }
.bg-light-\#888484 { background-color: #f6f6f6 !important; }
.bg-light-\#1f00e6 { background-color: #f4f0ff !important; }
.bg-light-\#007779 { background-color: #f0f9f9 !important; }
.bg-light-\#807978 { background-color: #f5f5f4 !important; }
.bg-light-\#f9c60e { background-color: #fffdf0 !important; }
.bg-light-\#6e6e6e { background-color: #f5f5f5 !important; }
.bg-light-\#8a0098 { background-color: #f9f0f9 !important; }
.bg-light-\#919191 { background-color: #f6f6f6 !important; }
.bg-light-\#082fff { background-color: #f0f4ff !important; }

/* Alternative solution using attribute selectors - more reliable */

/* Text color classes using attribute selectors */
[class*="text-#790a7a"] { color: #790a7a !important; }
[class*="text-#860084"] { color: #860084 !important; }
[class*="text-#0018ff"] { color: #0018ff !important; }
[class*="text-#056f82"] { color: #056f82 !important; }
[class*="text-#f1b315"] { color: #f1b315 !important; }
[class*="text-#8e0086"] { color: #8e0086 !important; }
[class*="text-#0018e6"] { color: #0018e6 !important; }
[class*="text-#03766a"] { color: #03766a !important; }
[class*="text-#ffc900"] { color: #ffc900 !important; }
[class*="text-#75006f"] { color: #75006f !important; }
[class*="text-#0716ff"] { color: #0716ff !important; }
[class*="text-#0c938b"] { color: #0c938b !important; }
[class*="text-#ff9700"] { color: #ff9700 !important; }
[class*="text-#ffaeb6"] { color: #ffaeb6 !important; }
[class*="text-#600067"] { color: #600067 !important; }
[class*="text-#90047d"] { color: #90047d !important; }
[class*="text-#1316ff"] { color: #1316ff !important; }
[class*="text-#07837a"] { color: #07837a !important; }
[class*="text-#750470"] { color: #750470 !important; }
[class*="text-#150cf8"] { color: #150cf8 !important; }
[class*="text-#008b7b"] { color: #008b7b !important; }
[class*="text-#ebb012"] { color: #ebb012 !important; }
[class*="text-#ffc8da"] { color: #ffc8da !important; }
[class*="text-#6a006a"] { color: #6a006a !important; }
[class*="text-#000fff"] { color: #000fff !important; }
[class*="text-#006764"] { color: #006764 !important; }
[class*="text-#f17d04"] { color: #f17d04 !important; }
[class*="text-#ffbdbe"] { color: #ffbdbe !important; }
[class*="text-#6e0474"] { color: #6e0474 !important; }
[class*="text-#2208ff"] { color: #2208ff !important; }
[class*="text-#07868e"] { color: #07868e !important; }
[class*="text-#ed8417"] { color: #ed8417 !important; }
[class*="text-#ffced5"] { color: #ffced5 !important; }
[class*="text-#690071"] { color: #690071 !important; }
[class*="text-#1000f0"] { color: #1000f0 !important; }
[class*="text-#015c6a"] { color: #015c6a !important; }
[class*="text-#fdc917"] { color: #fdc917 !important; }
[class*="text-#efb4c8"] { color: #efb4c8 !important; }
[class*="text-#720072"] { color: #720072 !important; }
[class*="text-#0327ea"] { color: #0327ea !important; }
[class*="text-#07687b"] { color: #07687b !important; }
[class*="text-#ffa316"] { color: #ffa316 !important; }
[class*="text-#f9a3af"] { color: #f9a3af !important; }
[class*="text-#81007c"] { color: #81007c !important; }
[class*="text-#0807ff"] { color: #0807ff !important; }
[class*="text-#00787f"] { color: #00787f !important; }
[class*="text-#f6c700"] { color: #f6c700 !important; }
[class*="text-#e7acb3"] { color: #e7acb3 !important; }
[class*="text-#870071"] { color: #870071 !important; }
[class*="text-#1727e6"] { color: #1727e6 !important; }
[class*="text-#089983"] { color: #089983 !important; }

/* Background color classes using attribute selectors */
[class*="bg-light-#766d6e"] { background-color: #f5f5f5 !important; }
[class*="bg-light-#800091"] { background-color: #f8f4f9 !important; }
[class*="bg-light-#888484"] { background-color: #f6f6f6 !important; }
[class*="bg-light-#1f00e6"] { background-color: #f4f0ff !important; }
[class*="bg-light-#007779"] { background-color: #f0f9f9 !important; }
[class*="bg-light-#807978"] { background-color: #f5f5f4 !important; }
[class*="bg-light-#f9c60e"] { background-color: #fffdf0 !important; }
[class*="bg-light-#6e6e6e"] { background-color: #f5f5f5 !important; }
[class*="bg-light-#8a0098"] { background-color: #f9f0f9 !important; }
[class*="bg-light-#919191"] { background-color: #f6f6f6 !important; }
[class*="bg-light-#082fff"] { background-color: #f0f4ff !important; }
