:root {
  /* Time Management Theme Colors - Pastel High-Contrast */
  --primary-color: #2E86AB;
  --primary-light: #A5C9EA;
  --primary-dark: #1B5A7A;
  
  --secondary-color: #A23B72;
  --secondary-light: #E8B4D1;
  --secondary-dark: #6B2849;
  
  --accent-color: #F18F01;
  --accent-light: #FDD49E;
  --accent-dark: #B8690A;
  
  --success-color: #5CB85C;
  --success-light: #C8E6C9;
  --success-dark: #357A35;
  
  --neutral-color: #6C757D;
  --neutral-light: #E9ECEF;
  --neutral-dark: #495057;
  
  /* Typography */
  --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--neutral-dark);
  background-color: #ffffff;
    overflow-x: hidden;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--neutral-dark);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-bg-light {
  background-color: var(--neutral-light);
}

.section-bg-primary {
  background-color: var(--primary-light);
}

.section-bg-accent {
  background-color: var(--accent-light);
}

/* Header */
#header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.navbar-nav .nav-link {
  color: var(--neutral-dark);
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  padding-top: 80px;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--secondary-light);
  opacity: 0.3;
  z-index: 1;
}

.hero-decorative:nth-child(1) {
  top: 20%;
  right: 10%;
}

.hero-decorative:nth-child(2) {
  bottom: 30%;
  left: 5%;
  width: 150px;
  height: 150px;
}

/* About Section */
#about {
  background-color: #ffffff;
}

.feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: 1.5rem;
}

/* Services Section */
#services {
  background-color: var(--neutral-light);
}

.service-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 1rem;
}

/* Features Section */
#features {
  background-color: #ffffff;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-number {
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Price Plan Section */
#priceplan {
  background-color: var(--primary-light);
}

.price-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border: 3px solid var(--accent-color);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-light);
}

/* Team Section */
#team {
  background-color: #ffffff;
}

.team-card {
  text-align: center;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-light);
}

/* Reviews Section */
#reviews {
  background-color: var(--secondary-light);
}

.review-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Case Studies Section */
#casestudy {
  background-color: #ffffff;
}

.case-card {
  background-color: var(--neutral-light);
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
}

/* Process Section */
#process {
  background-color: var(--accent-light);
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.process-number {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* FAQ Section */
#faq {
  background-color: #ffffff;
}

.faq-card {
  background-color: var(--neutral-light);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--neutral-dark);
}

/* Contact Section */
#contacts {
  background-color: var(--primary-light);
}

.contact-form {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--neutral-light);
  border-radius: 8px;
  padding: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(46, 134, 171, 0.25);
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

/* Gallery Section */
#gallery {
  background-color: #ffffff;
  padding: 80px 0;
}

.gallery-item {
  margin-bottom: 2rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Blog Section */
#blog {
  background-color: var(--neutral-light);
}

.blog-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
}

/* Footer */
#footer {
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-section h5 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

/* Utilities */
.text-primary {
  color: var(--primary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-primary-light {
  background-color: var(--primary-light) !important;
}

.bg-accent-light {
  background-color: var(--accent-light) !important;
}

/* Breadcrumb */
.breadcrumb-container {
  background-color: var(--neutral-light);
  padding: 2rem 0;
}

.breadcrumb-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
} 


/* 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;
    }
}
