/* ================ */
/* ROOTS & VARIABLES */
/* ================ */
:root {
    --anthracite: #2F2F2F;
    --white: #FFFFFF;
    --turquoise: #00BFA6;
    --turquoise-light: rgba(0, 191, 166, 0.1);
    --turquoise-dark: #009688;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;
    --gray-dark: #6C757D;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-turquoise: 0 5px 15px rgba(0, 191, 166, 0.2);
    --transition: all 0.3s ease;
  }
  
  /* ========== */
  /* BASE STYLES */
  /* ========== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--anthracite);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* For fixed navbar */
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }
  
  @media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
  }
  
  p {
    margin-bottom: 1.25rem;
    color: inherit;
  }
  
  a {
    text-decoration: none;
    transition: var(--transition);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  ul {
    list-style: none;
  }
  
  /* ========== */
  /* UTILITIES */
  /* ========== */
  .text-turquoise { color: var(--turquoise); }
  .text-white { color: var(--white); }
  .text-gray { color: var(--gray-dark); }
  
  .bg-anthracite { background-color: var(--anthracite); }
  .bg-turquoise { background-color: var(--turquoise); }
  .bg-turquoise-light { background-color: var(--turquoise-light); }
  .bg-gray-light { background-color: var(--gray-light); }
  
  .btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 2px solid transparent;
    padding: 0.625rem 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 2rem;
    transition: var(--transition);
  }
  
  .btn-turquoise {
    background-color: var(--turquoise);
    color: var(--white);
  }
  
  .btn-turquoise:hover {
    background-color: var(--turquoise-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-turquoise);
  }
  
  .btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    background-color: transparent;
  }
  
  .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--anthracite);
  }
  
  .btn-outline-anthracite {
    border-color: var(--anthracite);
    color: var(--anthracite);
    background-color: transparent;
  }
  
  .btn-outline-anthracite:hover {
    background-color: var(--anthracite);
    color: var(--white);
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
  }
  
  .section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--turquoise);
  }
  
  /* ========== */
  /* COMPONENTS */
  /* ========== */
  /* Navbar */
  .navbar {
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar.scrolled {
    padding: 0.75rem 0;
    background-color: rgba(47, 47, 47, 0.98) !important;
    backdrop-filter: blur(5px);
  }
  
  .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
  }
  
  .navbar-brand span {
    color: var(--turquoise);
  }
  
  .nav-link {
    font-weight: 500;
    color: var(--white);
    padding: 0.5rem 1rem;
    position: relative;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--turquoise);
    bottom: 0;
    left: 1rem;
    transition: var(--transition);
  }
  
  .nav-link:hover,
  .nav-link:focus,
  .nav-link.active {
    color: var(--turquoise);
  }
  
  .nav-link:hover::after,
  .nav-link:focus::after,
  .nav-link.active::after {
    width: calc(100% - 2rem);
  }
  
  /* Hero Sections */
  .hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(47, 47, 47, 0.9) 0%, rgba(47, 47, 47, 0.7) 100%), url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .hero-section-about,
  .hero-section-services,
  .hero-section-process,
  .hero-section-why {
    padding: 7rem 0 5rem;
    background: linear-gradient(135deg, rgba(47, 47, 47, 0.9) 0%, rgba(47, 47, 47, 0.7) 100%), url('../images/about-hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    text-align: center;
  }
  
  .hero-section-services {
    background-image: url('../images/services-hero-bg.jpg');
  }
  
  .hero-section-process {
    background-image: url('../images/process-hero-bg.jpg');
  }
  
  .hero-section-why {
    background-image: url('../images/why-hero-bg.jpg');
  }
  
  .hero-section h1,
  .hero-section-about h1,
  .hero-section-services h1,
  .hero-section-process h1,
  .hero-section-why h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .hero-section .lead,
  .hero-section-about .lead,
  .hero-section-services .lead,
  .hero-section-process .lead,
  .hero-section-why .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  
  @media (max-width: 768px) {
    .hero-section h1,
    .hero-section-about h1,
    .hero-section-services h1,
    .hero-section-process h1,
    .hero-section-why h1 {
      font-size: 2.25rem;
    }
    
    .hero-section .lead,
    .hero-section-about .lead,
    .hero-section-services .lead,
    .hero-section-process .lead,
    .hero-section-why .lead {
      font-size: 1.1rem;
    }
  }
  
  /* Cards */
  .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-turquoise);
  }
  
  .service-card .card-body {
    padding: 2rem;
  }
  
  .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--turquoise);
    background-color: var(--turquoise-light);
  }
  
  /* Process Steps */
  .process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .process-step {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
  }
  
  .process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-turquoise);
  }
  
  .process-step::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    width: 2rem;
    height: 20px;
    background: url('../images/process-arrow.svg') no-repeat center center;
    background-size: contain;
    display: none;
  }
  
  .process-step:last-child::before {
    display: none;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    background: var(--turquoise);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
  }
  
  @media (max-width: 992px) {
    .process-steps {
      gap: 1.5rem;
    }
    
    .process-step {
      min-width: 180px;
    }
    
    .process-step::before {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    .process-steps {
      flex-direction: column;
      align-items: center;
    }
    
    .process-step {
      max-width: 100%;
      width: 100%;
    }
  }
  
  /* Team Cards */
  .team-card {
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-turquoise);
  }
  
  .team-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
  }
  
  .team-card .card-body {
    padding: 1.5rem;
    text-align: center;
  }
  
  /* Value Cards */
  .value-card {
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid var(--gray-medium);
    height: 100%;
  }
  
  .value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-turquoise);
    border-color: var(--turquoise);
  }
  
  .value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    background-color: var(--turquoise-light);
    color: var(--turquoise);
  }
  
  /* Service Sections */
  .service-section {
    padding: 5rem 0;
  }
  
  .service-section:nth-child(odd) {
    background-color: var(--white);
  }
  
  .service-section:nth-child(even) {
    background-color: var(--gray-light);
  }
  
  .service-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .service-feature-icon {
    width: 30px;
    height: 30px;
    background-color: var(--turquoise-light);
    color: var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .availability .badge {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    background-color: var(--turquoise);
    color: var(--white);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
  }
  
  /* Why Us Section */
  .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
    background-color: var(--turquoise-light);
    color: var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    font-size: 1.25rem;
  }
  
  /* Testimonials */
  .testimonial-card {
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    margin: 1rem;
    position: relative;
  }
  
  .testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--turquoise-light);
    font-family: Georgia, serif;
    line-height: 1;
  }
  
  .testimonial-content {
    position: relative;
    z-index: 1;
    padding-left: 3rem;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
  }
  
  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
  }
  
  /* Clients */
  .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
  }
  
  .client-logo img {
    max-height: 60px;
    width: auto;
    max-width: 100%;
  }
  
  /* CTA Sections */
  .cta-section {
    padding: 5rem 0;
    background-color: var(--turquoise);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-section h2 {
    margin-bottom: 1.5rem;
  }
  
  .cta-section .lead {
    margin-bottom: 2rem;
  }
  
  /* Contact Form */
  .contact-form .form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--gray-medium);
    margin-bottom: 1.25rem;
  }
  
  .contact-form .form-control:focus {
    border-color: var(--turquoise);
    box-shadow: 0 0 0 0.25rem rgba(0, 191, 166, 0.25);
  }
  
  .contact-form textarea.form-control {
    min-height: 150px;
  }
  
  .contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .contact-info .info-icon {
    font-size: 1.25rem;
    color: var(--turquoise);
    margin-right: 1rem;
    margin-top: 0.25rem;
  }
  
  /* Footer */
  .footer {
    background-color: var(--anthracite);
    color: var(--white);
    padding: 4rem 0 2rem;
  }
  
  .footer h4 {
    color: var(--turquoise);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    color: var(--white);
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    color: var(--turquoise);
    padding-left: 5px;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    background-color: var(--turquoise);
    color: var(--white);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
  }
  
  /* ========== */
  /* ANIMATIONS */
  /* ========== */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideInUp {
    from {
      transform: translateY(50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .fade-in {
    animation: fadeIn 1s ease-in-out;
  }
  
  .slide-in-up {
    animation: slideInUp 0.8s ease-out;
  }
  
  /* ============ */
  /* RESPONSIVENESS */
  /* ============ */
  @media (max-width: 1199.98px) {
    .process-step::before {
      right: -1.5rem;
      width: 1.5rem;
    }
  }
  
  @media (max-width: 991.98px) {
    .section-padding {
      padding: 4rem 0;
    }
    
    .process-step::before {
      display: none;
    }
  }
  
  @media (max-width: 767.98px) {
    body {
      padding-top: 70px;
    }
    
    .section-padding {
      padding: 3rem 0;
    }
    
    .hero-section,
    .hero-section-about,
    .hero-section-services,
    .hero-section-process,
    .hero-section-why {
      padding: 5rem 0 3rem;
      text-align: center;
    }
    
    .hero-section h1,
    .hero-section-about h1,
    .hero-section-services h1,
    .hero-section-process h1,
    .hero-section-why h1 {
      font-size: 2.25rem;
    }
    
    .process-steps {
      flex-direction: column;
    }
    
    .process-step {
      max-width: 100%;
    }
    
    .footer {
      text-align: center;
    }
    
    .social-icons {
      justify-content: center;
    }
  }
  
  @media (max-width: 575.98px) {
    .navbar-brand {
      font-size: 1.25rem;
    }
    
    .btn {
      padding: 0.5rem 1.25rem;
      font-size: 0.9rem;
    }
    
    .hero-section h1,
    .hero-section-about h1,
    .hero-section-services h1,
    .hero-section-process h1,
    .hero-section-why h1 {
      font-size: 2rem;
    }
  }
/* Services Page Specific Styles */
.hero-section-services {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(47, 47, 47, 0.9) 0%, rgba(47, 47, 47, 0.7) 100%), url('../images/services-hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
}

.hero-section-services h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-section {
    padding: 80px 0;
}

.service-section:nth-child(odd) {
    background-color: white;
}

.service-section:nth-child(even) {
    background-color: #f8f9fa;
}

.availability .badge {
    font-size: 0.9rem;
    padding: 8px 12px;
    font-weight: 500;
}

.service-feature {
    display: flex;
    margin-bottom: 15px;
}

.service-feature-icon {
    width: 30px;
    height: 30px;
    background-color: var(--turquoise-light);
    color: var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
/* About Page Specific Styles */
.hero-section-about {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(47, 47, 47, 0.9) 0%, rgba(47, 47, 47, 0.7) 100%), url('../images/about-hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
}

.hero-section-about h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 191, 166, 0.1);
}

.team-card img {
    height: 250px;
    object-fit: cover;
}

.value-card {
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 191, 166, 0.1);
    border-color: var(--turquoise);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.promise-box {
    border-left: 4px solid var(--turquoise);
}