:root {
  --primary-color: #ffd4d7;
  --secondary-color: #c8dece;
  --accent-color: #c3e2ff;
  --warning-color: #fff0ba;
  --info-color: #c8d2de;
  --dark-shade: #495358;
  --light-shade: #f8f9fa;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-shade);
}

/* Conservative typography */
.navbar-brand {
  font-size: 1.31rem;
  font-weight: 600;
}

h1 {
  font-size: 2.52rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.57rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Decorative shapes */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  z-index: -1;
}

.hero-blob-1 {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  top: 20%;
  left: 10%;
}

.hero-blob-2 {
  width: 150px;
  height: 150px;
  background: var(--warning-color);
  bottom: 30%;
  right: 15%;
}

/* Services section */
.services-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 15px rgba(0, 0, 0, 0.15);
}

.services-card .card-body {
  padding: 2rem;
}

.services-price {
  font-size: 1.63rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Team section */
.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 9px solid var(--accent-color);
}

/* Contact form */
.contact-form {
  background: var(--light-shade);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 9px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 10px;
  border: 6px solid var(--info-color);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(205, 227, 255, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 8px rgba(0, 0, 0, 0.2);
}

/* FAQ section */
.faq-card {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-card .card-header {
  background: var(--secondary-color);
  border-radius: 10px 10px 0 0;
  font-weight: 600;
}

.faq-card .card-body {
  padding: 1.5rem;
}

/* Gallery section */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--dark-shade);
  color: var(--light-shade);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-shade);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-color);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0.5rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 

.hero-section h1 {
    padding-top: 150px;
}


/* 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;
}

.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;
    }
}
