/* Design System */
:root {
  /* Colors - Light theme with soft grays and deep blue accents */
  --color-bg: #ffffff;
  --color-surface: #f8f9fa;
  --color-primary: #1e3a8a;
  --color-accent: #3b82f6;
  --color-text-main: #1f2937;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-success: #10b981;
  --color-error: #ef4444;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  --gradient-hero: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
  
  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-bg);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-main);
}

/* Header */
.site-header {
 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
}

.site-header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
}


.navbar-brand i {
  color: var(--color-accent);
}

.nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}
.header-scrolled .nav-link {
  color: var(--color-text-main) !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent) !important;
}

.btn-nav-contact {
  background: var(--gradient-primary);
  color: white !important;
  border-radius: 50px;
  padding: 0.5rem 1.5rem !important;
  margin-left: 1rem;
}

.btn-nav-contact:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.header-scrolled .navbar-brand ,.header-scrolled .btn-nav-contact {
  color: white !important;
}

/* Hero Section */
.hero-section {
  background: var(--gradient-hero);
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/section-1.jpg');
  background-size: cover;
  opacity: 0.2;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.hero-cta {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 1;
}

.hero-bullets li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.hero-bullets i {
  color: var(--color-success);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
  color: var(--color-text-main);
}

.hero-card h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.advantage-item {
  display: flex;
  align-items: start;
  margin-bottom: 1.5rem;
}

.advantage-item:last-child {
  margin-bottom: 0;
}

.advantage-item i {
  color: var(--color-accent);
  font-size: 2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.advantage-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}

.advantage-item p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--color-text-muted);
}

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

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.section-header .lead {
  color: var(--color-text-muted);
  font-size: 1.25rem;
}

/* Problems Section */
.problem-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.problem-card i {
  font-size: 3rem;
  color: var(--color-error);
  margin-bottom: 1.5rem;
}

.problem-card h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Audience Cards */
.audience-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.audience-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.audience-card i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.audience-card h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

/* Approach Section */
.approach-list {
  list-style: none;
  padding: 0;
}

.approach-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: start;
}

.approach-list i {
  color: var(--color-success);
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Service Cards */
.service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all 0.3s ease;
  border-left: 4px solid var(--color-accent);
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.service-card i {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-card ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.service-card ul li {
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.result-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  padding-left: 2rem;
}

.process-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: -45px;
  width: 2px;
  background: var(--color-border);
}

.process-step:last-child::before {
  display: none;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  margin-left: 2rem;
}

.step-content h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.step-duration {
  display: inline-block;
  background: var(--color-surface);
  color: var(--color-text-muted);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Results Section */
.result-item {
  display: flex;
  align-items: start;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.result-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.result-icon i {
  font-size: 1.75rem;
  color: white;
}

.result-text h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* Calculator Section */
.calculator-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.calculator-result {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.calculator-result h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.result-box {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.result-label {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.result-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* FAQ Section */
.accordion-item {
  border: 1px solid var(--color-border);
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: var(--color-primary);
  background-color: var(--color-surface);
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-accent);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.form-label {
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
  min-width: 100%;
}
.iti{
  width: calc(100%/2 - 8px);
}

.form-control,
.form-select {
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* Contact Info Card */
.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.contact-info-card h3 {
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: start;
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}

.contact-item p {
  margin: 0;
  color: var(--color-text-main);
}

/* Map Placeholder */
.map-section {
  height: 400px;
  background: var(--color-surface);
}

.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

/* Final CTA Section */
.final-cta-section {
  background: var(--gradient-hero);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.final-cta-section h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.final-cta-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Service Pages */
.page-header {
  background: rgba(30, 58, 138);
  padding: 120px 0 60px;
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;

}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 290px;
  background-image: url(../images/service-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.2;
}


.page-header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-main);
}

.service-feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all 0.3s ease;
}

.service-feature:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-feature i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.service-feature h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.problem-solution {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.problem-title,
.solution-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.problem-title i,
.solution-title i {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.problem-title h4,
.solution-title h4 {
  margin: 0;
  font-size: 1.1rem;
}

.problem-desc {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-border);
}

.implementation-steps {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.impl-step {
  display: flex;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--color-surface);
  border-radius: 15px;
  border-left: 4px solid var(--color-accent);
}

.impl-step:last-child {
  margin-bottom: 0;
}

.impl-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.impl-content {
  flex: 1;
  margin-left: 1.5rem;
}

.impl-content h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.result-box-service {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.result-box-service:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.result-box-service i {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.result-box-service h4 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-cta {
  background: var(--color-surface);
  padding: 80px 0;
}

.section-cta h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Legal Pages */
.legal-content h2 {
  color: var(--color-primary);
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--color-border);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Thanks Page */
.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--color-success);
  margin-bottom: 2rem;
}

.thanks-section h1 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.info-box {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.info-box i {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.info-box h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(to bottom, #1e3a8a 0%, #1e40af 100%);
  color: white;
  padding: 60px 0 20px;
}

.site-footer h3,
.site-footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.btn {
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
}

.btn-primary:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-light {
  background: white;
  color: var(--color-primary);
  border: none;
}

.btn-light:hover {
  background: var(--color-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Cookie Banner */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

#cookieBanner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.cookie-category {
  padding: 1rem;
  background: var(--color-surface);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.cookie-category label {
  display: flex;
  align-items: start;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.cookie-category strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
  }
  
  .site-header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
  }
  
  .btn-nav-contact {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 120px 0 60px;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .process-timeline {
    padding-left: 0;
  }
  
  .process-step::before {
    display: none;
  }
  
  .step-content {
    margin-left: 1rem;
  }
}
