@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.1/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Primary Color Palette - High Contrast Pastels */
  --primary-blue: #5fb8fa;
  --primary-blue-light: #84bbda;
  --primary-blue-dark: #274d7c;
  
  --primary-green: #63e198;
  --primary-green-light: #7cd193;
  --primary-green-dark: #387231;
  
  --primary-orange: #ff9054;
  --primary-orange-light: #ff9873;
  --primary-orange-dark: #d73e00;
  
  --primary-purple: #874096;
  --primary-purple-light: #a68fc6;
  --primary-purple-dark: #3d1d8d;
  
  --primary-teal: #1db499;
  --primary-teal-light: #80beb7;
  --primary-teal-dark: #00513f;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --medium-gray: #657181;
  --dark-gray: #454c57;
  --black: #1d2226;
  
  /* Conservative Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1.5rem;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--dark-gray);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography - Conservative Sizes */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.32rem; }
h2 { font-size: 1.90rem; }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.26rem; }
h5 { font-size: 1.14rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Header & Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
  box-shadow: 0 6px 112px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.57rem !important; /* Conservative size */
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-orange-light) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  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.2;
  z-index: 1;
}

.hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.58rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-22px); }
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 2.53rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  text-align: center;
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

.section-desc {
  text-align: center;
  color: var(--medium-gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 9px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
}

.service-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 19px 40px rgba(0,0,0,0.1);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.62rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--light-gray), var(--primary-blue-light));
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 17px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-13px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-blue);
}

/* Reviews/Testimonials Section */
.reviews-section {
  background: var(--white);
}

.review-card {
  background: linear-gradient(135deg, var(--white), var(--light-gray));
  border-radius: 20px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-blue);
  font-family: serif;
}

.review-stars {
  color: var(--primary-orange);
  font-size: 1.26rem;
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--light-gray), var(--primary-teal-light));
}

/* Static FAQ Cards */
.faq-card-static {
  background: var(--white);
  border: none;
  border-radius: 15px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.faq-card-static:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.faq-question {
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-blue-light);
  padding-bottom: 0.75rem;
}

.faq-question h5 {
  font-weight: 600;
  color: var(--primary-blue);
  margin: 0;
  font-size: 1.1rem;
}

.faq-answer {
  flex: 1;
  color: var(--medium-gray);
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  color: var(--white);
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(68, 141, 241, 0.30);
  border-color: var(--primary-blue);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-gray), var(--black));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.29rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-blue-light);
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.74rem;
}

.footer-link:hover {
  color: var(--primary-blue-light);
}

.footer-bottom {
  border-top: 1px solid var(--medium-gray);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Gallery Section */
.gallery-section {
  background: var(--light-gray);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--light-gray);
  padding: 1rem 0;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-image {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--white), var(--light-gray));
}

.price-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.price-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.47rem; }
.mt-2 { margin-top: 0.60rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.61rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.38rem; }
.mb-2 { margin-bottom: 0.69rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.73rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding: 0.25rem 0; }
.py-2 { padding: 0.5rem 0; }
.py-3 { padding: 1rem 0; }
.py-4 { padding: 1.5rem 0; }
.py-5 { padding: 3rem 0; }

/* Loading and Animation States */
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Accessibility Improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Additional Styling for New Sections */

/* Timeline Styling */
.timeline {
  position: relative;
}

/* Process Section Icons */
.process-section .feature-icon {
  font-size: 4rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* Career Section Badges */
.badge {
  font-size: 0.90rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* Enhanced Button Styles */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Navbar Toggle Button */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  background-color: rgba(255, 255, 255, 0.1);
}

.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%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Lightbox2 Custom Styles */
.lb-data .lb-number {
  color: var(--white);
  font-weight: 600;
}

.lb-data .lb-caption {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

/* Enhanced Gallery Hover Effects */
.gallery-item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(73, 162, 232, 0.80);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item a:hover::before {
  opacity: 1;
}

.gallery-item a::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-item a:hover::after {
  opacity: 1;
}

/* Progress Bar Styling */
.nanobar-progress {
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
  height: 4px !important;
  box-shadow: 0 0 10px rgba(90, 169, 220, 0.50);
}

/* Form Validation Error Styles */
.just-validate-error-label {
  color: var(--primary-orange) !important;
  font-size: 0.92rem;
  margin-top: 0.42rem;
}

.just-validate-error-field {
  border-color: var(--primary-orange) !important;
  box-shadow: 0 0 0 0.2rem rgba(248, 146, 44, 0.25) !important;
}

.just-validate-success-field {
  border-color: var(--primary-green) !important;
  box-shadow: 0 0 0 0.2rem rgba(66, 194, 103, 0.25) !important;
}

/* Loading States */
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

/* Enhanced Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Print Media Query Enhancements */
@media print {
  .hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
    min-height: auto !important;
    padding: 2rem 0 !important;
  }
  
  .section {
    page-break-inside: avoid;
    padding: 1rem 0 !important;
  }
  
  .navbar, .footer, .gallery-section {
    display: none !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-blue: #136acb;
    --primary-green: #00a70c;
    --primary-orange: #e68001;
    --primary-purple: #8a00dd;
    --primary-teal: #006762;
  }
} 


/* 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;
    }
}
