:root {
  --ce-primary: #0F172A;
  --ce-secondary: #1E40AF;
  --ce-accent: #F59E0B;
  --ce-accent-light: #FCD34D;
  --ce-text: #1F2937;
  --ce-text-light: #6B7280;
  --ce-bg: #FFFFFF;
  --ce-bg-alt: #F9FAFB;
  --ce-border: #E5E7EB;
  --ce-success: #10B981;
  --ce-error: #EF4444;
  --ce-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --ce-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --ce-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --ce-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --ce-radius: 8px;
  --ce-radius-lg: 16px;
  --ce-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Crimson Pro', 'Georgia', serif;
  color: var(--ce-text);
  background-color: var(--ce-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ce-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  max-width: 70ch;
}

a {
  color: var(--ce-secondary);
  text-decoration: none;
  transition: var(--ce-transition);
}

a:hover {
  color: var(--ce-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header & Navigation */
.ce-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--ce-shadow-sm);
  transition: var(--ce-transition);
}

.ce-header.ce-scrolled {
  box-shadow: var(--ce-shadow);
}

.ce-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ce-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ce-primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.ce-logo span {
  color: var(--ce-accent);
}

.ce-nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.ce-nav-link {
  
  color: var(--ce-text);
  position: relative;
  padding: 0.5rem 0;
}

.ce-nav-link a{
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ce-text);
}

.ce-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ce-accent);
  transition: width 0.3s ease;
}

.ce-nav-link:hover::after {
  width: 100%;
}

.ce-nav-cta {
  background: var(--ce-secondary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--ce-radius);
  font-weight: 600;
  transition: var(--ce-transition);
}
.ce-nav-cta a {
  color: white;

}

.ce-nav-cta::after{
  content: none;
}
.ce-nav-cta:hover {
  background: var(--ce-accent);
  transform: translateY(-2px);
  box-shadow: var(--ce-shadow);
  color: #fff;
}

/* Mobile Menu Toggle */
.ce-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.ce-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--ce-primary);
  transition: var(--ce-transition);
}

/* Hero Section */
.ce-hero {
  padding: 8rem 2rem 4rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.ce-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E40AF 100%);
  opacity: 0.8;
}

.ce-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ce-hero-content {
  max-width: 800px;
}

.ce-hero-title {
  color: white;
  margin-bottom: 1.5rem;
  animation: ce-fadeInUp 0.8s ease;
}

.ce-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  animation: ce-fadeInUp 0.8s ease 0.2s backwards;
}

.ce-hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: ce-fadeInUp 0.8s ease 0.4s backwards;
}

.ce-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--ce-radius);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--ce-transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.ce-btn-primary {
  background: var(--ce-accent);
  color: var(--ce-primary);
}

.ce-btn-primary:hover {
  background: var(--ce-accent-light);
  transform: translateY(-3px);
  box-shadow: var(--ce-shadow-xl);
}

.ce-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.ce-btn-secondary:hover {
  background: white;
  color: var(--ce-primary);
  transform: translateY(-3px);
}

/* Section Styles */
.ce-section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.ce-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.ce-section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ce-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.ce-section-title {
  margin-bottom: 1rem;
}

.ce-section-description {
  font-size: 1.25rem;
  color: var(--ce-text-light);
  margin: 0 auto;
}

/* Service Cards */
.ce-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ce-service-card {
  background: white;
  border-radius: var(--ce-radius-lg);
  overflow: hidden;
  box-shadow: var(--ce-shadow);
  transition: var(--ce-transition);
  position: relative;
}

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

.ce-service-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.ce-service-card-content {
  padding: 2rem;
}

.ce-service-card-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.ce-service-card-description {
  color: var(--ce-text-light);
  margin-bottom: 1.5rem;
}

.ce-service-card-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.ce-service-card-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.ce-service-card-feature i {
  color: var(--ce-success);
}

.ce-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ce-secondary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.ce-service-card-link:hover {
  gap: 1rem;
}

/* Article Cards */
.ce-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ce-article-card {
  background: white;
  border-radius: var(--ce-radius-lg);
  overflow: hidden;
  box-shadow: var(--ce-shadow);
  transition: var(--ce-transition);
  display: flex;
  flex-direction: column;
}

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

.ce-article-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ce-article-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ce-article-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--ce-text-light);
}

.ce-article-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ce-article-card-excerpt {
  color: var(--ce-text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.ce-article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ce-secondary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Interactive Service Selector */
.ce-service-selector {
  background: var(--ce-bg-alt);
  padding: 3rem;
  border-radius: var(--ce-radius-lg);
  margin: 4rem 0;
}

.ce-selector-title {
  text-align: center;
  margin-bottom: 2rem;
}

.ce-selector-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.ce-selector-option {
  background: white;
  padding: 1.5rem;
  border-radius: var(--ce-radius);
  text-align: center;
  cursor: pointer;
  transition: var(--ce-transition);
  border: 2px solid transparent;
}

.ce-selector-option:hover {
  border-color: var(--ce-accent);
  transform: scale(1.05);
}

.ce-selector-option.ce-active {
  background: var(--ce-secondary);
  color: white;
  border-color: var(--ce-secondary);
}

.ce-selector-option.ce-active p{
  color: #fff!important;
}

.ce-selector-option i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.ce-selector-result {
  background: white;
  padding: 2rem;
  border-radius: var(--ce-radius);
  display: none;
  animation: ce-fadeIn 0.5s ease;
}

.ce-selector-result.ce-visible {
  display: block;
}

/* Testimonials */
.ce-testimonials {
  background: var(--ce-primary);
  color: white;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.ce-testimonials::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 2rem;
  font-size: 20rem;
  opacity: 0.05;
  font-family: Georgia, serif;
  line-height: 1;
}

.ce-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ce-testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.ce-testimonial-item {
  text-align: center;
  padding: 2rem;
  display: none;
}

.ce-testimonial-item.ce-active {
  display: block;
  animation: ce-fadeIn 0.8s ease;
}

.ce-testimonial-text {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-left: auto;
  margin-right: auto;
}

.ce-testimonial-author {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--ce-accent);
}

.ce-testimonial-role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.ce-testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.ce-testimonials-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--ce-transition);
}

.ce-testimonials-dot.ce-active {
  background: var(--ce-accent);
  transform: scale(1.3);
}

/* Offer Section */
.ce-offer {
  background: linear-gradient(135deg, var(--ce-accent) 0%, var(--ce-accent-light) 100%);
  padding: 4rem 2rem;
  border-radius: var(--ce-radius-lg);
  margin: 4rem auto;
  max-width: 1200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ce-offer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.ce-offer-content {
  position: relative;
  z-index: 1;
}

.ce-offer-title {
  color: var(--ce-primary);
  margin-bottom: 1rem;
}

.ce-offer-description {
  font-size: 1.25rem;
  color: var(--ce-primary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ce-offer-price {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--ce-primary);
  margin-bottom: 2rem;
}

.ce-offer-features {
  list-style: none;
  margin-bottom: 2rem;
  display: inline-block;
  text-align: left;
}

.ce-offer-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  color: var(--ce-primary);
}

.ce-offer-feature i {
  color: var(--ce-success);
  font-size: 1.25rem;
}

/* Ethics Section */
.ce-ethics {
  background: var(--ce-bg-alt);
  padding: 5rem 2rem;
}

.ce-ethics-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ce-ethics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ce-ethics-item {
  background: white;
  padding: 2rem;
  border-radius: var(--ce-radius);
  border-left: 4px solid var(--ce-accent);
}

.ce-ethics-icon {
  font-size: 2.5rem;
  color: var(--ce-accent);
  margin-bottom: 1rem;
}

.ce-ethics-item-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact Form */
.ce-contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--ce-radius-lg);
  box-shadow: var(--ce-shadow-lg);
  max-width: 700px;
  margin: 2rem auto;
}

.ce-form-group {
  margin-bottom: 1.5rem;
}

.ce-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--ce-text);
}

.ce-form-input,
.ce-form-textarea,
.ce-form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--ce-border);
  border-radius: var(--ce-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--ce-transition);
}

.ce-form-input:focus,
.ce-form-textarea:focus,
.ce-form-select:focus {
  outline: none;
  border-color: var(--ce-secondary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.ce-form-textarea {
  resize: vertical;
  min-height: 150px;
}

.ce-form-error {
  color: var(--ce-error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.ce-form-group.ce-error .ce-form-error {
  display: block;
}

.ce-form-group.ce-error .ce-form-input,
.ce-form-group.ce-error .ce-form-textarea,
.ce-form-group.ce-error .ce-form-select {
  border-color: var(--ce-error);
}

.ce-captcha-container {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--ce-bg-alt);
  border-radius: var(--ce-radius);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ce-captcha-question {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.ce-captcha-input {
  width: 100px;
  padding: 0.5rem;
  border: 2px solid var(--ce-border);
  border-radius: var(--ce-radius);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}

/* Footer */
.ce-footer {
  background: var(--ce-primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 2rem 2rem;
}

.ce-footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ce-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.ce-footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.ce-footer-links {
  list-style: none;
}

.ce-footer-link {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  padding: 0.5rem 0;
  transition: var(--ce-transition);
}

.ce-footer-link a{
  color: rgba(255, 255, 255, 0.8);
  display: block;
  padding: 0.5rem 0;
  transition: var(--ce-transition);
}

.ce-footer-link:hover {
  color: var(--ce-accent);
  padding-left: 0.5rem;
}

.ce-footer-link a:hover {
  color: var(--ce-accent);
  padding-left: 0.5rem;
}
.ce-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.ce-footer-contact-item i {
  color: var(--ce-accent);
  width: 20px;
}

.ce-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.ce-footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ce-transition);
  color: #fff!important;
}

.ce-footer-social-link:hover {
  background: var(--ce-accent);
  transform: translateY(-3px);
}

.ce-footer-section p{
  margin-top: 20px;
}

article.ce-section h2, article.ce-section h3{
  margin-top: 30px;
}

.ce-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes ce-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ce-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ce-slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ce-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ce-animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ce-animate-on-scroll.ce-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ce-nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    transition: var(--ce-transition);
    box-shadow: var(--ce-shadow-lg);
  }

  .ce-nav-menu.ce-active {
    left: 0;
  }

  .ce-menu-toggle {
    display: flex;
  }

  .ce-hero {
    padding: 6rem 1.5rem 3rem;
  }

  .ce-section {
    padding: 3rem 1.5rem;
  }

  .ce-services-grid,
  .ce-articles-grid {
    grid-template-columns: 1fr;
  }

  .ce-hero-cta-group {
    flex-direction: column;
  }

  .ce-btn {
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .ce-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Utility Classes */
.ce-text-center {
  text-align: center;
}

.ce-text-primary {
  color: var(--ce-primary);
}

.ce-text-accent {
  color: var(--ce-accent);
}

.ce-bg-primary {
  background-color: var(--ce-primary);
}

.ce-bg-accent {
  background-color: var(--ce-accent);
}

.ce-mt-1 { margin-top: 0.5rem; }
.ce-mt-2 { margin-top: 1rem; }
.ce-mt-3 { margin-top: 1.5rem; }
.ce-mt-4 { margin-top: 2rem; }

.ce-mb-1 { margin-bottom: 0.5rem; }
.ce-mb-2 { margin-bottom: 1rem; }
.ce-mb-3 { margin-bottom: 1.5rem; }
.ce-mb-4 { margin-bottom: 2rem; }

.ce-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ce-hidden {
  display: none !important;
}

.ce-visible {
  display: block !important;
}


.custom-logo-link img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .custom-logo-link img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}

.ce-footer-contact-item strong{
  color: #0F172A;
}

.ce-footer-contact-item > *{
  color: #0F172A;
}

footer .ce-footer-contact-item > *{
  color: #fff;
}

footer .ce-footer-contact-item i{
  color: var(--ce-accent);
}

#ce-cookie-banner{
  display: none!important;
}


footer .ce-nav-menu{
  display: flex;
  margin-bottom: 1.5rem;

}

#menu-footer a{
    color: inherit;
    text-decoration: underline;
    font-size: 1.125rem;
}

.ce-footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media(max-width:771px){
  .ce-footer-bottom{
    flex-direction: column;
  }

  footer .ce-nav-menu {
    display: flex;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
}