/* Bootstrap 5 CSS Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  /* Primary Color Palette - High contrast pastels */
  --primary-green: #3fcb6e;
  --primary-blue: #6495ff;
  --primary-yellow: #ffcb3a;
  --primary-orange: #ed6270;
  --primary-purple: #ae77ff;
  
  /* Light & Dark Shades */
  --light-green: #d4ffdf;
  --dark-green: #116131;
  --light-blue: #e1e8f2;
  --dark-blue: #0d1fb3;
  --light-yellow: #fff2b0;
  --dark-yellow: #a42e00;
  --light-orange: #ffd5d6;
  --dark-orange: #ad0520;
  --light-purple: #f0e7ff;
  --dark-purple: #6c2a97;
  
  /* Base Colors */
  --white: #ffffff;
  --black: #1c202a;
  --gray-light: #f8fafc;
  --gray-medium: #737c8f;
  --gray-dark: #2b3239;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 { font-size: 2.62rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.87rem; }
h4 { font-size: 1.64rem; }
h5 { font-size: 1.38rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  backdrop-filter: blur(17px);
  box-shadow: 0 3px 22px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.59rem;
  font-weight: 700;
  color: var(--white);
}

.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-yellow);
  transform: translateY(-2px);
}

/* Bootstrap 5 Navbar Toggler Fix */
.navbar-toggler {
  border: 2px solid var(--white);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  filter: invert(1);
}

/* Hero Section with Image Specifications */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-green), var(--light-blue));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
  width: 1920px;
  height: 1080px;
  max-width: 100%;
  max-height: 100vh;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 100px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 1.65rem;
}

.hero-subtitle {
  font-size: 1.31rem;
  color: var(--gray-dark);
  margin-bottom: 2rem;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.53rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.section-subtitle {
  font-size: 1.34rem;
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: 3rem;
}

/* Services Grid */
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-14px);
  border-color: var(--primary-green);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Service Images with Resolution Specifications */
.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1.75rem;
  min-width: 300px;
  min-height: 200px;
  max-width: 400px;
}

.service-name {
  font-size: 1.63rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Features Grid */
.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1.63rem;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

/* Team Photos with Resolution Specifications */
.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-green);
  min-width: 150px;
  min-height: 150px;
  max-width: 250px;
  max-height: 250px;
}

.team-name {
  font-size: 1.27rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.61rem;
}

.team-role {
  color: var(--gray-medium);
  font-style: italic;
}

/* Reviews/Testimonials */
.review-card {
  background: var(--white);
  border-radius: 110px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 9px 20px rgba(0,0,0,0.08);
  border-left: 4px solid var(--primary-blue);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.62rem;
  color: var(--gray-dark);
}

.review-author {
  font-weight: 600;
  color: var(--dark-blue);
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--gray-light);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: var(--light-green);
  margin: 0;
  font-weight: 600;
  color: var(--dark-green);
  cursor: pointer;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--gray-dark);
  border-top: 1px solid var(--gray-light);
}

/* Gallery */
/* Gallery Images with Resolution Specifications */
.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.72rem;
  transition: transform 0.3s ease;
  min-width: 300px;
  min-height: 200px;
  max-width: 500px;
  max-height: 350px;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--light-purple), var(--light-orange));
  padding: 5rem 0;
}

.contact-form {
  background: var(--white);
  border-radius: 19px;
  padding: 3rem;
  box-shadow: 0 110px 40px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.60rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(60, 202, 111, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  border: none;
  border-radius: 25px;
  padding: 1rem 3rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(75, 198, 138, 0.40);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-green), var(--dark-blue));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-green);
  margin-bottom: 1.60rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--light-yellow);
}

/* Price Plans */
.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin: 1rem 0;
}

/* Process Steps */
.process-step {
  position: relative;
  padding: 2rem;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.53rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding: 2rem;
  margin-bottom: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-left: 4px solid var(--primary-purple);
}

/* Career/Jobs */
.career-position {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-light);
}

/* Core Info */
.coreinfo-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.coreinfo-icon {
  font-size: 2.51rem;
  color: var(--primary-yellow);
  margin-bottom: 1rem;
}

/* Blog */
.blog-post {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
}

/* Blog Images with Resolution Specifications */
.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  min-width: 300px;
  min-height: 150px;
  max-width: 400px;
  max-height: 250px;
}

.blog-content {
  padding: 1.5rem;
}

/* Case Studies */
.casestudy-item {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-top: 4px solid var(--primary-yellow);
}

/* Breadcrumbs */
/* Breadcrumb Images with Resolution Specifications */
.breadcrumb-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 2rem;
  min-width: 600px;
  min-height: 150px;
  max-width: 1200px;
  max-height: 300px;
}

/* Loading Animation for Better UX */
.loading {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loaded {
  opacity: 1;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Skip to Content Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-green);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 9999;
}

.skip-link:focus {
  top: 6px;
}

/* Improved Form Validation Styles */
.form-control.is-invalid {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(236, 103, 118, 0.25);
}

.form-control.is-valid {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(95, 231, 161, 0.25);
}

.invalid-feedback {
  color: var(--primary-orange);
  font-size: 1.00rem;
  margin-top: 0.46rem;
}

.valid-feedback {
  color: var(--primary-green);
  font-size: 0.95rem;
  margin-top: 0.41rem;
}

/* Improved Button States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary:active {
  transform: translateY(1px);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
  
  .skip-link {
    transition: none;
  }
}

/* Additional Page Sections */
.additional-section {
  padding: 4rem 0;
  background: var(--gray-light);
  margin-bottom: 2rem;
}

.additional-section:nth-child(even) {
  background: var(--white);
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rounded-custom {
  border-radius: 15px;
} 


/* 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;
    }
}
