:root {
  --primary-color: #2E8B57;
  --primary-light: #90EE90;
  --primary-dark: #006400;
  --secondary-color: #87CEEB;
  --secondary-light: #E0F6FF;
  --secondary-dark: #4682B4;
  --accent-color: #DDA0DD;
  --accent-light: #F0E6FF;
  --accent-dark: #9370DB;
  --neutral-color: #F5F5DC;
  --neutral-light: #FAFAF0;
  --neutral-dark: #8FBC8F;
  --success-color: #98FB98;
  --success-light: #F0FFF0;
  --success-dark: #32CD32;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: var(--neutral-light);
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.1;
  top: 20%;
  right: 10%;
  z-index: 1;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--success-color);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -50px;
  left: -50px;
  opacity: 0.6;
}

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

/* Services Cards */
.service-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

/* Team Cards */
.team-card {
  background: white;
  border: none;
  border-radius: 15px;
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary-color);
  margin: 0 auto 1rem;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border: 1px solid var(--neutral-color);
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Review Cards */
.review-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
}

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

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

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

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
  background: var(--primary-color);
  color: white;
  padding: 3rem;
  border-radius: 15px;
}

/* Footer */
.footer {
  background: var(--neutral-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--success-light);
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary-custom {
  background: var(--primary-color);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Navbar */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
  margin: 0 10px;
}

/* Responsive adjustments */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .btn-primary-custom:hover,
  .gallery-item img:hover {
    transform: none;
  }
  
  .service-card,
  .btn-primary-custom,
  .gallery-item img {
    transition: none;
  }
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

.text-primary-custom {
  color: var(--primary-color) !important;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
  background-color: var(--secondary-light) !important;
} 

.hero-section h1 {
    padding-top: 250px;
}


/* 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;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.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;
    }
}
