:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-ocean: #4b9ee8;
  --primary-seafoam: #5fb195;
  --primary-coral: #fb6c6d;
  --primary-sand: #dbcd9e;
  --primary-deep: #26313d;
  
  /* Light Shades */
  --light-ocean: #b0ccdf;
  --light-seafoam: #a9e1cc;
  --light-coral: #fe9ba7;
  --light-sand: #fefaf3;
  --light-deep: #788a96;
  
  /* Dark Shades */
  --dark-ocean: #2e506e;
  --dark-seafoam: #44785b;
  --dark-coral: #d45468;
  --dark-sand: #cfbc8b;
  --dark-deep: #0e151e;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --hero-height: 100vh;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Base Typography - Conservative Sizing */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-deep);
}

.navbar-brand {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--primary-ocean);
}

h1 {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 1.66rem;
}

h2 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 0.98rem;
}

p {
  font-size: var(--font-size-base);
  color: var(--dark-deep);
  margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--light-ocean) 0%, var(--light-seafoam) 100%);
  border-bottom: 1px solid var(--light-sand);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--primary-deep);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-ocean);
}

/* Hero Section */
.hero-section {
  min-height: var(--hero-height);
  background: linear-gradient(135deg, var(--light-seafoam) 0%, var(--light-ocean) 100%);
  position: relative;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  background: var(--primary-coral);
  opacity: 0.1;
  border-radius: 50%;
}

.hero-decoration-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-decoration-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 228px;
}

.hero-title {
  color: var(--primary-deep);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: var(--dark-deep);
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--primary-ocean);
  border-color: var(--primary-ocean);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-ocean);
  border-color: var(--dark-ocean);
}

/* Services Section */
.services-section {
  padding: var(--section-padding);
  background-color: #fff;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 110px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-seafoam);
  margin-bottom: 1rem;
}

.service-title {
  color: var(--primary-deep);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--dark-deep);
  font-size: var(--font-size-sm);
  margin-bottom: 1.71rem;
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-ocean);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-sand);
  font-size: var(--font-size-sm);
  color: var(--dark-deep);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--light-sand) 0%, var(--light-seafoam) 100%);
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 110px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-deep);
  margin-bottom: 1rem;
}

.testimonial-author {
  color: var(--primary-deep);
  font-weight: 600;
}

/* Gallery Section */
.gallery-section {
  padding: var(--section-padding);
  background-color: #fff;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--light-ocean) 0%, var(--light-sand) 100%);
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.68rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
  color: var(--primary-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--dark-deep);
  font-size: var(--font-size-sm);
}

/* Team Section */
.team-section {
  padding: var(--section-padding);
  background-color: #fff;
}

.team-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary-seafoam);
}

.team-name {
  color: var(--primary-deep);
  font-weight: 600;
  margin-bottom: 0.57rem;
}

.team-role {
  color: var(--dark-deep);
  font-size: var(--font-size-sm);
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--light-coral) 0%, var(--light-sand) 100%);
}

.contact-form {
  background: white;
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-sand);
  border-radius: 5px;
  padding: 0.75rem;
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-ocean);
  box-shadow: 0 0 0 0.2rem rgba(69, 164, 231, 0.25);
}

/* Footer */
.footer {
  background-color: var(--dark-sand);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-seafoam);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-seafoam);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-deep);
}

.section-subtitle {
  text-align: center;
  color: var(--dark-deep);
  margin-bottom: 3rem;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--light-sand) 0%, var(--light-ocean) 100%);
}

.breadcrumb-image {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
} 


/* 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;
    }
}
