
/* Base styles and variables */
:root {
    --consulting-50: #f0f5ff;
    --consulting-100: #e5edff;
    --consulting-200: #cddbfe;
    --consulting-300: #b4c6fc;
    --consulting-400: #8da5f7;
    --consulting-500: #6b82ec;
    --consulting-600: #7D1D4D;
    --consulting-700: #7D1D4D;
    --consulting-800: #7D1D4D;
    --consulting-900: #7D1D4D;
    
    --primary: var(--consulting-600);
    --secondary: var(--consulting-100);
    --dark: var(--consulting-800);
    --light: var(--consulting-50);
    
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --radius: 0.5rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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);
  }
  
  /* Reset and base styles */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    line-height: 1.5;
    background-color: var(--white);
    text-align: justify;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  button {
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
  }
  
  .container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  @media (min-width: 640px) {
    .container {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }
  
  /* Buttons */
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #7D1D4D;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
  }
  
  .button:hover {
    /* background-color: transparent;  */
    border: 1px solid var(--primary);
  }
  
  .button-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    /* color: var(--primary); */
  }
  
  .button-outline:hover {
    background-color: #7D1D4D;
  }
  
  /* .button-secondary {
    background-color: var(--gray-200);
    color: var(--gray-800);
  } */

  .button-secondary {
    background-color: #7D1D4D;
    color: #fff;
  }
  
  .button-secondary:hover {
    /* background-color: var(--gray-300); */
    background-color: #7D1D4D;
    color: #fff;
  }
  
  .button-full {
    width: 100%;
  }
  
  .button svg {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
  }
  
  /* Navbar */
  /* .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    height: 5rem;
  } */
  
  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
  }
  .nav-link:hover{

  }
  
  .logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    justify-self: start;
  }
  .logo img{
    max-width: 100%;
    height: auto;
    width: 150px;
    display: block;
    margin: 0 auto;
    padding: 10px;
    border-radius: 20px;
    transition: transform 0.3s ease;
  }
  
  .logo-primary {
    /* color: #7D1D4D; */
  }
  
  .logo-secondary {
    /* color: #7D1D4D; */
  }
  
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-button {
    display: block;
    color: var(--gray-700);
    padding: 10px;
    font-weight: bold;
  }
  
  .mobile-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 40;
    display: none;
    overflow-y: auto;
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  .mobile-menu-container {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .mobile-menu-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
  }
  
  .mobile-button-container {
    margin-top: 1rem;
    width: 100%;
  }
  
  @media (min-width: 768px) {
    .nav-desktop {
      /* display: flex; */
      gap: 2rem;
    }

    .navbar .container{
      display: none;
    }
    
    .nav-link {
      font-weight: 500;
      color: var(--gray-700);
      transition: color 0.2s ease;
      padding: 0 !important;
    }
    
    .nav-link:hover {
      color: var(--primary);
      padding: 10px !important;

    }
    
    .mobile-menu-button {
      display: none;
    }
  }
  
  /* Scrolled navbar */
  .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-sm);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    min-height: 90vh;
    padding-top: 5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-content {
    padding: 2rem 0;
    text-align: center;
    max-width: 65rem;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
  .hero-title-primary {
    /* color: var(--dark); */
  }
  
  .hero-title-secondary {
    /* color: var(--primary); */
  }
  
  .hero-description {
    font-size: 1.125rem;
    /* color: var(--gray-600); */
    max-width: 48rem;
    margin: 0 auto 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: -10;
    overflow: hidden;
  }
  
  .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--consulting-50), var(--consulting-100));
    border-bottom-left-radius: 100px;
    opacity: 0.8;
  }
  
  @media (min-width: 640px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-description {
      font-size: 1.25rem;
    }
    
    .hero-buttons {
      flex-direction: row;
    }
    
    .hero-background::after {
      width: 50%;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 2.5rem;
    }
  }
  
  /* Section styling */
  section {
    padding: 4rem 0;
    text-align: justify;
  }
  
  @media (min-width: 768px) {
    section {
      padding: 5rem 0;
    }
    
  }
  
  .section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
  }
  
  @media (min-width: 768px) {
    .section-title {
      font-size: 2.5rem;
    }
  }
  
  /* Services Section */
  .services {
    background-color: var(--white);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* .service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    border: 1px solid #7D1D4D;

    transition: box-shadow 0.3s ease;
  } */

  .service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    border-right: 3px solid #7D1D4D;
    /* transition: box-shadow 0.3s ease; */
    border-bottom: 3px solid #7D1D4D;
    animation: float 3s infinite ease-in-out;
    transition: background-color 0.3s, color 0.3s;


}
  
  .service-card:hover {
    box-shadow: var(--shadow-md);
  }
  
  .service-icon {
    margin-bottom: 1.25rem;
    /* color: var(--primary); */
  }
  
  .service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .service-description {
    color: var(--gray-600);
  }
  
  @media (min-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Approach Section */
  .approach {
    background-color: #fff0f6;
    position: relative;
  }
  
  .approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .approach-content {
    order: 2;
  }
  
  .approach-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
  }
  
  .approach-steps {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .approach-step {
    display: flex;
    gap: 1rem;
  }
  
  .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: #7D1D4D;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
  }
  
  .step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .step-description {
    color: #000;
  }
  
  .approach-image-container {
    position: relative;
    order: 1;
  }
  
  .approach-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }
  
  .approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .stats-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    max-width: 15rem;
  }
  
  .stat {
    margin-bottom: 1rem;
  }
  
  .stat:last-child {
    margin-bottom: 0;
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
  }
  
  .stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--consulting-700);
  }
  
  @media (min-width: 1024px) {
    .approach-grid {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  
    .approach-content {
      order: 1;
    }
  
    .approach-image-container {
      order: 2;
    }
    
    .stats-card {
      bottom: 1.5rem;
      left: 1.5rem;
    }
  }
  
  /* Team Section */
  .team {
    background-color: var(--white);
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .team-member {
    display: flex;
    flex-direction: column;
  }
  
  .member-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .member-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .team-member:hover .member-image {
    transform: scale(1.05);
  }
  
  .member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  }
  
  .member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
  }
  
  .member-role {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .member-bio {
    color: var(--gray-600);
  }
  
  @media (min-width: 768px) {
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .team-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* Testimonials Section */
  .testimonials {
    background-color: var(--consulting-800);
    color: var(--white);
  }
  
  .testimonial-description {
    color: var(--consulting-100);
  }
  
  .testimonial-container {
    max-width: 64rem;
    margin: 0 auto;
  }
  
  .testimonial-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
  }
  
  .testimonial-icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 9999px;
    color: var(--consulting-200);
  }
  
  .testimonial-slides {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .testimonial-slide {
    display: none;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .testimonial-text {
    font-size: unset;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .author-name {
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .author-position {
    color: var(--consulting-200);
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
  }
  
  .testimonial-arrow {
    padding: 0.5rem;
    background-color: var(--consulting-700);
    border-radius: 9999px;
    color: var(--white);
    transition: background-color 0.2s ease;
  }
  
  .testimonial-arrow:hover {
    background-color: var(--consulting-600);
  }
  
  .testimonial-dots {
    display: flex;
    gap: 0.5rem;
  }
  
  .testimonial-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: #958686;
    transition: background-color 0.2s ease;
  }
  
  .testimonial-dot.active {
    background-color: var(--white);
  }
  
  @media (min-width: 768px) {
    .testimonial-text {
      font-size: unset;
    }
  }
  
  /* Contact Section */
  .contact {
    background-color: var(--white);
    position: relative;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
  }
  
  .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .contact-icon {
    background-color: var(--consulting-100);
    padding: 0.75rem;
    border-radius: 9999px;
    color: var(--consulting-600);
  }
  
  .contact-method-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .contact-method-value {
    color: var(--gray-600);
  }
  
  .contact-form-container {
    background-color: var(--gray-50);
    border-radius: 0.75rem;
    padding: 2rem;
  }
  
  .form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
  }
  
  .form-input,
  .form-textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .form-input:focus,
  .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(79, 96, 222, 0.2);
  }
  
  .form-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    height: 100%;
  }
  
  .form-success-message.active {
    display: flex;
  }
  
  .success-icon {
    background-color: #dcfce7;
    padding: 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    color: #16a34a;
  }
  
  .success-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .success-description {
    color: var(--gray-600);
  }
  
  @media (min-width: 1024px) {
    .contact-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* Footer */
  .footer {
    background-color: var(--gray-900);
    color: var(--gray-300) !important;
    padding: 3rem 0;
  }

  .footer a{
    color: var(--gray-300) !important;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .footer-info {
    margin-bottom: 1rem;
  }
  
  .footer-logo {
    display: inline-flex;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  
  .footer-description {
    margin-bottom: 1.5rem;
  }
  
  .footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
  }
  
  .footer-menu {
    list-style: none;
    padding: 0;
  }
  
  .footer-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
  }
  
  .footer-link:hover {
    color: var(--white);
  }
  
  .footer-link::before {
    content: '';
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.5rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%236b7280" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 18 6-6-6-6"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
  }
  
  .legal-link {
    transition: color 0.2s ease;
  }
  
  .legal-link:hover {
    color: var(--white);
  }
  
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }
  
  @media (min-width: 1024px) {
    .footer-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    animation: fadeIn 0.5s ease-out forwards;
  }
  
  .fade-in-delay-1 {
    animation: fadeIn 0.5s ease-out 0.1s forwards;
    opacity: 0;
  }
  
  .fade-in-delay-2 {
    animation: fadeIn 0.5s ease-out 0.2s forwards;
    opacity: 0;
  }
  
  .fade-in-delay-3 {
    animation: fadeIn 0.5s ease-out 0.3s forwards;
    opacity: 0;
  }
  
  /* Utility Classes */
  .hidden {
    display: none;
  }
  