/* Ethical Coworking Space Franchising Template - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast Colors */
  --primary-green: #6fcf82;
  --primary-blue: #5a9fd4;
  --primary-coral: #ff8a80;
  --primary-purple: #b39ddb;
  --primary-yellow: #fff176;
  
  /* Light/Dark Shades */
  --light-green: #a5d6b1;
  --dark-green: #4caf50;
  --light-blue: #90caf9;
  --dark-blue: #1976d2;
  --light-coral: #ffab91;
  --dark-coral: #f44336;
  --light-purple: #e1bee7;
  --dark-purple: #7b1fa2;
  --light-yellow: #fff9c4;
  --dark-yellow: #f57f17;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Typography */
  --font-family-base: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --line-height-base: 1.5;
}

/* 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;
  }
}

/* Global Styles */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--dark-gray);
  background-color: var(--white);
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

/* Header Section */
#header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}

#header .navbar-nav .nav-link {
  color: var(--medium-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

#header .navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-green), var(--light-blue));
  padding-top: 80px;
  display: flex;
  align-items: center;
}

#hero .hero-content {
  position: relative;
  z-index: 2;
    padding-top: 250px;
}

#hero .hero-image {
  text-align: center;
}

/* Decorative Shapes */
.hero-blob {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.hero-blob-1 {
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-blob-2 {
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* About Section */
#about {
  padding: 80px 0;
  background-color: var(--white);
}

.feature-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 10px;
  background-color: var(--light-gray);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Features Section */
#features {
  padding: 80px 0;
  background-color: var(--white);
}

/* Price Plan Section */
#priceplan {
  padding: 80px 0;
  background-color: var(--light-blue);
}

.price-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Team Section */
#team {
  padding: 80px 0;
  background-color: var(--white);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-green);
}

/* Reviews Section */
#reviews {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.review-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-author {
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Case Studies Section */
#casestudy {
  padding: 80px 0;
  background-color: var(--white);
}

.case-card {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-3px);
}

/* Process Section */
#process {
  padding: 80px 0;
  background-color: var(--light-purple);
}

.process-step {
  text-align: center;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
#timeline {
  padding: 80px 0;
  background-color: var(--white);
}

.timeline-item {
  margin-bottom: 2rem;
  padding-left: 3rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-green);
}

/* Career Section */
#career {
  padding: 80px 0;
  background-color: var(--light-yellow);
}

.job-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Core Info Section */
#coreinfo {
  padding: 80px 0;
  background-color: var(--white);
}

.info-card {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

/* Contact Section */
#contacts {
  padding: 80px 0;
  background-color: var(--light-coral);
}

.contact-form {
  background-color: var(--white);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(111, 207, 130, 0.25);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
}

/* Blog Section */
#blog {
  padding: 80px 0;
  background-color: var(--white);
}

.blog-card {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

/* FAQ Section */
#faq {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.faq-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Gallery Section */
#gallery {
  padding: 80px 0;
  background-color: var(--white);
}

.gallery-item {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer Section */
#footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 20px;
}

#footer h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

#footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--primary-green);
}

#footer .footer-bottom {
  border-top: 1px solid var(--medium-gray);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

/* Utility Classes */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

.text-primary-green {
  color: var(--primary-green);
}

.text-primary-blue {
  color: var(--primary-blue);
}

.bg-primary-green {
  background-color: var(--primary-green);
}

.bg-primary-blue {
  background-color: var(--primary-blue);
}

/* Breadcrumb Styles */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
} 


/* Team Social Links - Colorful Style */
.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;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    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;
    }
}
