:root {
  /* Primary Color Palette - High Contrast Pastels */
  --primary-coral: #ee7267;
  --primary-coral-light: #fda19e;
  --primary-coral-dark: #db3b3a;
  
  --primary-mint: #51c3bc;
  --primary-mint-light: #a4dfe0;
  --primary-mint-dark: #2faab2;
  
  --primary-lavender: #b3f0dc;
  --primary-lavender-light: #d6ddda;
  --primary-lavender-dark: #9febba;
  
  --primary-peach: #f2b32b;
  --primary-peach-light: #fdff6b;
  --primary-peach-dark: #e3a600;
  
  --primary-sky: #5b61e2;
  --primary-sky-light: #9a98f5;
  --primary-sky-dark: #4c51ce;
  
  /* Neutral Colors */
  --text-dark: #394152;
  --text-light: #6c768d;
  --bg-light: #F7FAFC;
  --bg-white: #FFFFFF;
  --border-light: #fbfcff;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.18rem !important;
  font-weight: 600;
}

h1 {
  font-size: 1.79rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.64rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.29rem;
  font-weight: 600;
  margin-bottom: 0.69rem;
}

p {
  font-size: 1.09rem;
  margin-bottom: 1rem;
}

/* Gradients */
.gradient-coral-mint {
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-mint));
}

.gradient-lavender-peach {
  background: linear-gradient(135deg, var(--primary-lavender), var(--primary-peach));
}

.gradient-sky-coral {
  background: linear-gradient(135deg, var(--primary-sky), var(--primary-coral));
}

/* Header Styles */
.navbar {
  padding: 0.75rem 0;
  background: var(--bg-white) !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 3px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
  color: var(--primary-coral) !important;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-coral) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-sky), var(--primary-mint));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(15deg);
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--bg-white);
  font-size: 2.62rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.24rem;
  margin-bottom: 1.65rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  margin-bottom: 2rem;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-white);
}

.section-title {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 0.69rem;
}

.section-subtitle {
  text-align: center;
  color: var(--primary-coral);
  font-size: 0.93rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 110px 30px rgba(0,0,0,0.15);
}

.card-header {
  background: transparent;
  border: none;
  padding: 1.5rem;
}

.card-body {
  padding: 1.5rem;
}

/* Service Cards */
.service-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.service-icon {
  font-size: 2.62rem;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.service-title {
  color: var(--text-dark);
  margin-bottom: 0.90rem;
}

.service-desc {
  color: var(--text-light);
  margin-bottom: 1.74rem;
}

.service-price {
  font-size: 1.90rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--text-light);
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-mint);
  margin-right: 0.5rem;
}

/* Team Cards */
.team-card {
  text-align: center;
  overflow: hidden;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-coral-light);
  margin: 0 auto 1rem;
}

.team-name {
  color: var(--text-dark);
  margin-bottom: 0.67rem;
}

.team-role {
  color: var(--primary-coral);
  font-size: 1.04rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Review Cards */
.review-card {
  padding: 2rem;
  background: var(--bg-white);
  border-left: 4px solid var(--primary-coral);
}

.review-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.review-author {
  color: var(--text-dark);
  font-weight: 600;
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-mint);
  border-radius: 13px;
  overflow: hidden;
}

.faq-card.active {
  border-left: 4px solid var(--primary-coral);
}

.faq-question {
  cursor: pointer;
  padding: 1.25rem;
  background: var(--bg-white);
  color: var(--text-dark);
  font-weight: 600;
  transition: background-color 0.3s ease;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.62rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-card.active .faq-question::after {
  content: '';
  transform: translateY(-50%) rotate(180deg);
}

.faq-question:hover {
  background: var(--primary-mint-light);
}

.faq-card.active .faq-question {
  background: var(--primary-coral-light);
}

.faq-answer {
  padding: 1.25rem;
  background: var(--bg-light);
  color: var(--text-light);
  border-top: 1px solid var(--border-light);
}

/* Forms */
.form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1.06rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 0.2rem rgba(245, 123, 126, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-sky));
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, var(--primary-coral-dark), var(--primary-sky-dark));
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--bg-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--bg-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-coral);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  margin-top: 2rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-title {
  margin: 1rem 0 0.5rem;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-coral);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-link:hover {
  color: var(--primary-coral-dark);
}

/* Breadcrumbs */
.breadcrumb-img {
  width: 100%;
  max-width: 1200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Space Page */
#space {
  min-height: 60vh;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image Placeholders */
img {
  max-width: 100%;
  height: auto;
}

.hero-image {
  max-width: 500px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.about-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: none;
}

.notification-success {
  background: linear-gradient(135deg, var(--primary-mint), var(--primary-lavender));
}

.notification-error {
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-coral-dark));
}

.notification-info {
  background: linear-gradient(135deg, var(--primary-sky), var(--primary-sky-dark));
}

/* Loading Animation */
.loading {
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Animate on Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-coral), var(--primary-sky)) !important;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.back-to-top i {
  color: white;
  font-size: 1.27rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .notification {
    right: 10px;
    left: 10px;
    top: 80px;
  }
} 


/* 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);
}

.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;
    }
}
