/* Bootstrap 5 Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
/* @import url('https://unpkg.com/sal.js/dist/sal.css'); DISABLED */

/* Color Palette - 5 Primary Pastel Colors */
:root {
  --primary-coral: #FF8A95;
  --primary-lavender: #A8B5E6;
  --primary-mint: #A8E6CF;
  --primary-peach: #FFD3A5;
  --primary-sky: #A8D8EA;
  
  /* Light/Dark Shades */
  --coral-light: #FFB3BC;
  --coral-dark: #FF5F6D;
  --lavender-light: #C4CFED;
  --lavender-dark: #8A9CE0;
  --mint-light: #C4F0D6;
  --mint-dark: #8ADFC4;
  --peach-light: #FFE1B3;
  --peach-dark: #FFC688;
  --sky-light: #C4E5F0;
  --sky-dark: #8ACCE4;
  
  /* Typography */
  --font-primary: 'Roboto', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Global Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Conservative Typography */
h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-coral);
}

h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-lavender);
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-mint);
}

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

.lead {
  font-size: 1.125rem;
}

/* Conservative Navbar Brand */
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-coral);
}

/* Header Styles */
#header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 400;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-coral);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--coral-light), var(--sky-light));
  position: relative;
  overflow: hidden;
}

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

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

.hero-image {
  position: relative;
  z-index: 2;
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: #555;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* About Section */
#about {
  background-color: #f8f9fa;
}

.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

/* Services Section */
#services {
  background: linear-gradient(45deg, var(--mint-light), var(--peach-light));
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: none;
}

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin-top: 1rem;
}

/* Features Section */
#features {
  background-color: #f8f9fa;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-item i {
  font-size: 3.5rem;
  color: var(--primary-lavender);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
#priceplan {
  background: linear-gradient(135deg, var(--lavender-light), var(--sky-light));
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.price-card:nth-child(2) {
  transform: scale(1.05);
  border: 3px solid var(--primary-coral);
}

.price-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  color: #555;
}

.price-features li i {
  color: var(--primary-mint);
  margin-right: 0.5rem;
}

/* Team Section */
#team {
  background-color: #f8f9fa;
}

.team-member {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--primary-peach);
}

/* Reviews Section */
#reviews {
  background: linear-gradient(45deg, var(--peach-light), var(--mint-light));
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  text-align: center;
}

.review-stars {
  color: #ffc107;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Case Study Section */
#casestudy {
  background-color: #f8f9fa;
}

.casestudy-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

/* Process Section */
#process {
  background: linear-gradient(135deg, var(--sky-light), var(--lavender-light));
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

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

/* Timeline Section */
#timeline {
  background-color: #f8f9fa;
}

.timeline-item {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  position: relative;
  border-left: 5px solid var(--primary-mint);
}

/* Career Section */
#career {
  background: linear-gradient(45deg, var(--mint-light), var(--sky-light));
}

.career-position {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.career-position:hover {
  transform: translateY(-5px);
}

/* Core Info Section */
#coreinfo {
  background-color: #f8f9fa;
}

.coreinfo-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-sky);
  margin-bottom: 1rem;
}

/* Contact Section */
#contacts {
  background: linear-gradient(135deg, var(--peach-light), var(--coral-light));
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 0.2rem rgba(255, 138, 149, 0.25);
}

.contact-info {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-info i {
  color: var(--primary-coral);
  font-size: 1.5rem;
  margin-right: 1rem;
}

/* Blog Section */
#blog {
  background-color: #f8f9fa;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* FAQ Section */
#faq {
  background: linear-gradient(45deg, var(--lavender-light), var(--mint-light));
}

.faq-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.faq-answer {
  color: #555;
  margin-bottom: 0;
}

/* Gallery Section */
#gallery {
  background-color: #f8f9fa;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background-color: #2c3e50;
  color: white;
  padding: 3rem 0 1rem 0;
}

.footer-section h5 {
  color: var(--primary-coral);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(45deg, var(--primary-coral), var(--coral-dark));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(45deg, var(--coral-dark), var(--primary-coral));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 138, 149, 0.3);
}

.btn-outline-primary {
  color: var(--primary-coral);
  border: 2px solid var(--primary-coral);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-coral);
  color: white;
  transform: translateY(-2px);
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-coral);
}

.text-secondary-custom {
  color: var(--primary-lavender);
}

.bg-light-custom {
  background-color: #f8f9fa;
}

/* SAL.js Styles - DISABLED */
/*
[data-sal] {
  opacity: 0;
  transition-property: opacity, transform;
}

.sal-animate {
  opacity: 1;
}
*/

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



/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

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

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
