/* Main CSS for Bulk Refill Station Template */

/* Color Variables - Pastel High-Contrast Palette */
:root {
  --primary-green: #6ca675;
  --primary-blue: #5e8dca;
  --primary-purple: #c5a1eb;
  --primary-orange: #f1ad72;
  --primary-pink: #f0a49b;
  
  --light-green: #e0f1e2;
  --light-blue: #a6d2ff;
  --light-purple: #e6c5e6;
  --light-orange: #ffdcbc;
  --light-pink: #e09db6;
  
  --dark-green: #4a7a57;
  --dark-blue: #465e75;
  --dark-purple: #8b24a0;
  --dark-orange: #f16d00;
  --dark-pink: #bd1848;
  
  --text-dark: #212b38;
  --text-light: #758693;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

/* Typography - Conservative Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Navbar Brand - Conservative Size */
.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green);
}

/* Headings - Conservative Sizes */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

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

/* Paragraphs - Conservative Size */
p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

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

.hero-image {
  text-align: center;
}

/* Decorative Shapes */
.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--primary-purple);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--primary-orange);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  z-index: 1;
}

/* Section Spacing */
.section-padding {
  padding: 80px 0;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: none;
  height: 100%;
}

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

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

/* Feature Cards */
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  border: none;
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
  border: none;
  height: 100%;
}

.price-card.featured {
  border: 3px solid var(--primary-green);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Team Cards */
.team-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  border: none;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Review Cards */
.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  border: none;
  height: 100%;
}

.review-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--text-dark);
}

/* FAQ Cards */
.faq-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: none;
}

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

.faq-answer {
  color: var(--text-light);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 8px;
  border: 2px solid #ffffff;
  padding: 12px 15px;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(99, 167, 119, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

/* Gallery */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

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

.gallery-item:hover img {
}

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

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

.footer a {
  color: var(--light-green);
  text-decoration: none;
}

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

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--bg-light);
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
}

/* Process Steps */
.process-step {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  border: none;
  height: 100%;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

/* Timeline Items */
.timeline-item {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  border: none;
  margin-bottom: 2rem;
}

/* Career Cards */
.career-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  border: none;
  height: 100%;
}

/* Case Study Cards */
.case-study-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  border: none;
  height: 100%;
}

/* Core Info Cards */
.core-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  border: none;
  height: 100%;
}

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(0,0,0,0.06);
  border: none;
  height: 100%;
}

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

/* Utilities */
.text-primary-green { color: var(--primary-green); }
.text-primary-blue { color: var(--primary-blue); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-pink { color: var(--primary-pink); }

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

/* Accessibility - Modified to enforce no animations */
* {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

/* Team Social Links - Colorful Style - Transitions removed */
.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;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

/* Before effect removed */
.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px; /* Set directly to final size */
    height: 100px; /* Set directly to final size */
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Hover effect removed */
.social-link:hover::before {
}

/* Hover effect removed */
.social-link:hover {
    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);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45, #ffdc80);
}

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