:root {
  /* Color Palette - 5 primary colors with light/dark shades */
  --primary-color: #ff6b9d;
  --primary-light: #ffb3d1;
  --primary-dark: #e5407a;
  
  --secondary-color: #4ecdc4;
  --secondary-light: #87efea;
  --secondary-dark: #26a69a;
  
  --accent-color: #ffd93d;
  --accent-light: #ffeb8a;
  --accent-dark: #ffcc02;
  
  --neutral-color: #6c757d;
  --neutral-light: #adb5bd;
  --neutral-dark: #495057;
  
  --success-color: #95e1d3;
  --success-light: #c7f0e8;
  --success-dark: #64d5ca;
  
  /* Conservative font sizes */
  --navbar-brand-size: 1.25rem;
  --h1-size: 2rem;
  --h2-size: 1.5rem;
  --h3-size: 1.25rem;
  --p-size: 1rem;
  --small-size: 0.875rem;
}

/* Conservative typography */
.navbar-brand {
  font-size: var(--navbar-brand-size);
  font-weight: 600;
}

h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  color: var(--primary-dark);
}

h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  color: var(--secondary-dark);
}

h3 {
  font-size: var(--h3-size);
  font-weight: 500;
  color: var(--neutral-dark);
}

p {
  font-size: var(--p-size);
  line-height: 1.6;
  color: var(--neutral-color);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  display: flex;
  align-items: center;
}

.hero-shape {
  position: absolute;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
}

/* Services Section */
#services {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Team Section */
#team {
  padding: 5rem 0;
}

.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary-color);
  margin-bottom: 1rem;
}

/* Reviews Section */
#reviews {
  padding: 5rem 0;
  background-color: var(--success-light);
}

.review-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* FAQ Section */
#faq {
  padding: 5rem 0;
}

.faq-card {
  background: white;
  border: 1px solid var(--neutral-light);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* Gallery Section */
#gallery {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.gallery-item {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact Form */
#contacts {
  padding: 5rem 0;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--neutral-light);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Footer */
#footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 3rem 0 1rem;
}

#footer a {
  color: var(--accent-color);
  text-decoration: none;
}

#footer a:hover {
  color: var(--accent-light);
}

/* Blog Section */
#blog {
  padding: 5rem 0;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* Responsive adjustments */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

@media (max-width: 768px) {
  #hero {
    min-height: 80vh;
  }
  
  .hero-shape {
    display: none;
  }
  
  .service-card,
  .contact-form {
    padding: 1.5rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
} 

body {
    overflow-x: hidden;
}

.hero-title {
    padding-top: 225px;
}


/* 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);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 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;
    }
}
