:root {
  --primary-color: #e7f4ff;
  --secondary-color: #eeede8;
  --accent-color: #e5d8f4;
  --highlight-color: #f1c7d9;
  --neutral-color: #f8f9fa;
  --primary-dark: #14377f;
  --secondary-dark: #894b19;
  --accent-dark: #5f1a8d;
  --highlight-dark: #d01679;
  --neutral-dark: #2b3242;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
}

/* Typography - Conservative sizing */
.navbar-brand {
  font-size: 1.20rem;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
}

h2 {
  font-size: 1.56rem;
  font-weight: 500;
}

h3 {
  font-size: 1.34rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  display: flex;
  align-items: center;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-shapes::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--secondary-color);
  border-radius: 50% 30% 60% 40%;
  opacity: 0.7;
}

.hero-shapes::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: var(--highlight-color);
  border-radius: 30% 50% 40% 60%;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

/* Services Section */
.services-section {
  background: var(--neutral-color);
  padding: 5rem 0;
}

.service-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 13px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1.31rem;
}

/* Team Section */
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 7px solid var(--primary-color);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Testimonials */
.review-card {
  background: white;
  border: none;
  border-radius: 13px;
  padding: 2rem;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* FAQ Section */
.faq-card {
  background: white;
  border: 1px solid #fbfbfb;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.70rem;
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  padding: 5rem 0;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .is-invalid {
  border-color: #f5303e;
}

.contact-form .is-invalid:focus {
  border-color: #f52637;
  box-shadow: 0 0 0 0.2rem rgba(241, 73, 101, 0.25);
}

.btn-primary {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  padding: 0.75rem 2rem;
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Navbar Scroll Effect */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Footer */
.footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: #b8bed0;
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.37rem;
  margin: 0 auto 1rem;
}

/* Price Plans */
.price-card {
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.price-card.featured {
  border-color: var(--primary-dark);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Timeline */
.timeline-item {
  background: white;
  border-left: 4px solid var(--primary-dark);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Career */
.career-card {
  background: white;
  border: 1px solid #fdfdfd;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* Core Info */
.info-item {
  background: var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  height: 100%;
}

/* Blog */
.blog-card {
  background: white;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Breadcrumbs */
.breadcrumb-nav {
  padding: 1rem 0;
  background: var(--neutral-color);
}

.breadcrumb-nav img {
  height: 20px;
}

/* Animations - Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Section spacing */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #7a8599;
  margin-bottom: 3rem;
}

/* Additional page styles */
.page-section {
  padding: 4rem 0;
  border-bottom: 1px solid #bec5d6;
}

.page-section:last-child {
  border-bottom: none;
}

.element-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  height: 100%;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
