:root {
  /* Primary Color Palette for Acrylic Painting Theme */
  --primary-crimson: #e01b4b;
  --primary-ultramarine: #2e68e9;
  --primary-cadmium: #ff5f4a;
  --primary-forest: #30972e;
  --primary-violet: #8523ef;
  
  /* Light Shades */
  --light-crimson: #ff585f;
  --light-ultramarine: #7a9de8;
  --light-cadmium: #ffa96f;
  --light-forest: #95ff98;
  --light-violet: #c897d1;
  
  /* Dark Shades */
  --dark-crimson: #7c000e;
  --dark-ultramarine: #1c1981;
  --dark-cadmium: #ff5300;
  --dark-forest: #0c5902;
  --dark-violet: #660594;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #728590;
  --dark-gray: #343e43;
  --black: #000000;
  
  /* Gradients */
  --gradient-warm: linear-gradient(135deg, var(--primary-crimson), var(--primary-cadmium));
  --gradient-cool: linear-gradient(135deg, var(--primary-ultramarine), var(--primary-violet));
  --gradient-nature: linear-gradient(135deg, var(--primary-forest), var(--primary-ultramarine));
  
  /* Conservative Font Sizes */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --h1-size: 1.8rem;
  --h2-size: 1.5rem;
  --h3-size: 1.25rem;
  --navbar-brand-size: 1.25rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: 1.21rem; }
h5 { font-size: 1.12rem; }
h6 { font-size: 0.92rem; }

.navbar-brand {
  font-size: var(--navbar-brand-size) !important;
  font-weight: 600;
}

/* Header Styles */
.navbar {
  background: var(--gradient-warm) !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 27px rgba(0,0,0,0.1);
  padding: 0.75rem 0;
}

.navbar-brand, .navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--light-crimson) !important;
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: var(--gradient-nature);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../ZOW_images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.decorative-shape {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Spacing */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.21rem;
}

.section-title h2 {
  color: var(--primary-crimson);
  margin-bottom: 1.15rem;
  position: relative;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-warm);
  margin: 1rem auto;
  border-radius: 2px;
}

/* About Section */
.about-feature {
  text-align: center;
  padding: 1.5rem;
  border-radius: 114px;
  transition: transform 0.3s ease;
  background: var(--light-gray);
  margin-bottom: 1.67rem;
}

.about-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

.about-feature i {
  font-size: 2.60rem;
  color: var(--primary-cadmium);
  margin-bottom: 1.15rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.15rem;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 13px 29px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-crimson);
  box-shadow: 0 17px 40px rgba(234, 28, 65, 0.20);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.67rem;
}

.service-price {
  font-size: 1.54rem;
  font-weight: bold;
  color: var(--primary-crimson);
  margin: 1rem 0;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.15rem;
}

.feature-item {
  background: var(--gradient-cool);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: scale(1.05);
}

.feature-item i {
  font-size: 2.12rem;
  margin-bottom: 1.15rem;
}

/* Price Plan Section */
.price-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.15rem;
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  border: 3px solid var(--light-gray);
  transition: all 0.3s ease;
}

.price-card:nth-child(2) {
  border-color: var(--primary-crimson);
  transform: scale(1.05);
}

.price-card:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.price-value {
  font-size: 2.60rem;
  font-weight: bold;
  color: var(--primary-crimson);
  margin: 1rem 0;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.15rem;
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 15px;
  padding: 2rem 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.15rem;
  border: 4px solid var(--primary-cadmium);
}

/* Reviews Section */
.reviews-slider {
  margin-top: 2.15rem;
  position: relative;
  overflow: hidden;
}

.reviews-slider .swiper-container {
  padding-bottom: 60px;
}

.reviews-slider .swiper-wrapper {
  align-items: center;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  margin: 0 1rem;
  transition: all 0.3s ease;
  height: auto;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.review-card h5 {
  margin-bottom: 1rem;
  color: var(--primary-crimson);
  font-weight: 600;
}

.review-card p {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card::before {
  content: '"';
  font-size: 4.14rem;
  color: var(--primary-violet);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

/* Case Study Section */
.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.15rem;
}

.casestudy-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--primary-forest);
  transition: all 0.3s ease;
}

.casestudy-item:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.15rem;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 1.5rem;
}

.process-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  width: 50px;
  height: 50px;
  background: var(--gradient-warm);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
  font-size: 1.23rem;
}

.process-grid {
  counter-reset: step-counter;
}

/* Timeline Section */
.timeline {
  position: relative;
  margin-top: 2.15rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-cool);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3.21rem;
  padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
  text-align: right;
  padding-right: calc(50% + 2rem);
}

.timeline-item:nth-child(even) {
  text-align: left;
  padding-left: calc(50% + 2rem);
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-crimson);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px var(--primary-crimson);
}

/* Career Section */
.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.15rem;
}

.career-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-top: 4px solid var(--primary-violet);
  transition: transform 0.3s ease;
}

.career-item:hover {
  transform: translateY(-5px);
}

/* Core Info Section */
.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.15rem;
}

.coreinfo-item {
  background: var(--gradient-nature);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: scale(1.02);
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  padding: 3rem 2rem;
  border-radius: 20px;
  margin-top: 2.15rem;
}

.form-control {
  border: 2px solid transparent;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--white);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-crimson);
  box-shadow: 0 0 0 0.2rem rgba(224, 2, 21, 0.25);
}

.btn-primary {
  background: var(--gradient-warm);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(205, 18, 56, 0.30);
}

/* Blog Section */
#blog_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.15rem;
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  margin-bottom: 1.15rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-question {
  background: var(--gradient-cool);
  color: var(--white);
  padding: 1rem 1.5rem;
  cursor: pointer;
  margin: 0;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--gradient-warm);
}

.faq-answer {
  padding: 1.5rem;
  background: var(--light-gray);
  margin: 0;
  display: none;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2.15rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4.12rem;
}

.footer h5 {
  color: var(--primary-cadmium);
  margin-bottom: 1.15rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-crimson);
}

.footer-bottom {
  border-top: 1px solid var(--medium-gray);
  padding-top: 2.20rem;
  margin-top: 2.15rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb-container {
  background: var(--light-gray);
  padding: 1rem 0;
}

.breadcrumb-container img {
  height: 20px;
  width: auto;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: var(--gradient-cool);
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
