/*
Theme Name: Vocatio Pro
Theme URI: https://www.vocatio-pro.sandboxcloud.de/
Author: Sorin Valer Stanila
Description: Premium vocational orientation theme for students.
Version: 0.1
License: GNU General Public License v2 or later
Text Domain: vocatio-pro
*/

/* --- PASTE ALL THE CSS FROM YOUR <style> TAG HERE --- */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      width: 100%;
      height: 100%;
    }

    body {
      font-family: 'Work Sans', sans-serif;
      color: #171c23;
      background-color: #f8f9ff;
      line-height: 1.6;
    }

    /* === TYPOGRAPHY === */
    h1, h2, h3, h4, h5, h6 {
      margin: 0;
      padding: 0;
    }

    p {
      margin: 0;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }
    .relative {
      position: relative;
    }

    button {
      border: none;
      cursor: pointer;
      font-family: 'Work Sans', sans-serif;
    }

    /* === MATERIAL ICONS === */
    .material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
      display: inline-flex;
      align-items: center;
    }

    /* === UTILITY CLASSES === */
    .max-w-container {
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .premium-shadow {
      box-shadow: 0 24px 40px rgba(26, 37, 87, 0.1);
    }

    .deep-shadow {
      box-shadow: 0 32px 64px -12px rgba(26, 37, 87, 0.2);
    }

    .rounded-card {
      border-radius: 24px;
    }

    /* === NAVIGATION === */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 50;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.5);
      box-shadow: 0 4px 20px -5px rgba(26, 37, 87, 0.1);
    }

    nav .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 5rem;
    }

    nav .logo {
      font-size: 1.5rem;
      font-weight: 900;
      color: #1a2557;
      letter-spacing: -0.02em;
    }

    nav ul {
      display: none;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    nav a {
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: rgba(26, 37, 87, 0.7);
      transition: all 0.2s ease;
    }

    nav a:hover {
      color: #1a2557;
    }

    nav a.active {
      color: #b9092b;
      border-bottom: 2px solid #b9092b;
      padding-bottom: 0.25rem;
    }

    nav .btn-start {
      background-color: #b9092b;
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      font-weight: 700;
      box-shadow: 0 8px 16px rgba(185, 9, 43, 0.2);
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    nav .btn-start:hover {
      box-shadow: 0 12px 24px rgba(185, 9, 43, 0.3);
      transform: translateY(-2px);
    }

    nav .btn-start:active {
      transform: scale(0.95);
    }

    @media (min-width: 768px) {
      nav ul {
        display: flex;
      }
    }

    /* === MAIN CONTENT === */
    main {
      padding-top: 5rem;
    }

    /* === HERO SECTION === */
    .hero {
      padding: 4rem 2rem;
      background: #f8f9ff;
      overflow: hidden;
      position: relative;
    }

    .hero-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-text span.badge {
      display: inline-block;
      background-color: #ffdad8;
      color: #410008;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .hero-text h1 {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.3;
      color: #020e42;
      margin-bottom: 1.5rem;
    }

    .hero-text p {
      font-size: 1.125rem;
      color: #45464f;
      line-height: 1.8;
      margin-bottom: 2.5rem;
      max-width: 500px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .btn-primary {
      background-color: #020e42;
      color: white;
      padding: 1rem 2rem;
      border-radius: 9999px;
      font-weight: 700;
      font-size: 1.125rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 8px 16px rgba(2, 14, 66, 0.15);
      transition: all 0.3s ease;
    }

    .btn-primary:hover {
      box-shadow: 0 12px 32px rgba(2, 14, 66, 0.25);
      transform: translateY(-2px);
    }

    .btn-secondary {
      border: 2px solid #020e42;
      color: #020e42;
      background: transparent;
      padding: 0.875rem 2rem;
      border-radius: 9999px;
      font-weight: 700;
      font-size: 1.125rem;
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      background-color: rgba(2, 14, 66, 0.05);
    }

    .hero-image {
      position: relative;
      border-radius: 40px;
      overflow: hidden;
      box-shadow: 0 32px 64px -12px rgba(26, 37, 87, 0.2);
      /* transform: rotate(2deg); */
      transition: transform 0.5s ease;
    }

    .hero-image:hover {
      transform: rotate(2deg);
    }

    .hero-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
    }

    .hero-stat-card {
      position: absolute;
      bottom: -2rem;
      left: -2rem;
      background: white;
      padding: 1.5rem;
      border-radius: 24px;
      box-shadow: 0 24px 40px rgba(26, 37, 87, 0.1);
      border: 1px solid #e4e8f2;
      width: auto;
      max-width: 240px;
      z-index: 10;
    }

    .stat-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 0.5rem;
    }

    .stat-icon {
      width: 40px;
      height: 40px;
      background-color: #b9092b;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    .stat-header-text {
      font-weight: 700;
      color: #020e42;
    }

    .stat-description {
      font-size: 0.875rem;
      color: #45464f;
    }

    @media (min-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr 1fr;
      }
      .hero-text h1 {
        font-size: 3rem;
      }
    }

    /* === SERVICES SECTION === */
    .services {
      padding: 6rem 2rem;
      background-color: #f8f9ff;
    }

    .services-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .services-header h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #020e42;
      margin-bottom: 1rem;
    }

    .services-header p {
      font-size: 1.125rem;
      color: #45464f;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .service-card {
      background: white;
      border-radius: 24px;
      padding: 2rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
      border-color: rgba(185, 9, 43, 0.2);
    }

    .service-card.large {
      grid-column: 1;
    }

    .service-card.dark {
      background: linear-gradient(135deg, #1a2557 0%, #00113d 100%);
      color: white;
      box-shadow: 0 32px 64px -12px rgba(26, 37, 87, 0.2);
    }

    .service-card.dark:hover {
      border-color: transparent;
    }

    .service-card-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .service-card-content.row {
      flex-direction: row;
      align-items: center;
    }

    .service-card-text {
      flex: 1;
    }

    .service-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 2rem;
    }

    .service-card:not(.dark) .service-icon {
      background-color: #dde1ff;
      color: #020e42;
    }

    .service-card.dark .service-icon {
      background-color: rgba(255, 255, 255, 0.1);
      color: white;
    }

    .service-card h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .service-card:not(.dark) h3 {
      color: #020e42;
    }

    .service-card p {
      font-size: 1rem;
      line-height: 1.8;
    }

    .service-card:not(.dark) p {
      color: #45464f;
    }

    .service-card.dark p {
      color: rgba(255, 255, 255, 0.8);
    }

    .service-link {
      color: #b9092b;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .service-card.dark .service-link {
      color: white;
    }

    .service-image {
      flex: 1;
      border-radius: 16px;
      overflow: hidden;
      min-height: 300px;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    @media (min-width: 768px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .service-card.large {
        grid-column: span 2;
      }
    }

    /* === PROCESS SECTION === */
    .process {
      padding: 6rem 2rem;
      background: #f8f9ff;
    }

    .process-header {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .process-header h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #020e42;
      max-width: 400px;
    }

    .process-header p {
      color: #45464f;
      max-width: 400px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .process-card {
      padding: 2rem;
      border-left: 4px solid #b9092b;
      background-color: white;
      border-radius: 0 24px 24px 0;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .process-card.alt-color {
      border-left-color: #020e42;
    }

    .process-number {
      font-size: 2.5rem;
      font-weight: 900;
      color: rgba(185, 9, 43, 0.2);
      margin-bottom: 1rem;
    }

    .process-card.alt-color .process-number {
      color: rgba(2, 14, 66, 0.2);
    }

    .process-card h4 {
      font-size: 1.25rem;
      font-weight: 700;
      color: #020e42;
      margin-bottom: 0.5rem;
    }

    .process-card p {
      font-size: 0.875rem;
      color: #45464f;
    }

    @media (min-width: 768px) {
      .process-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
      }
      .process-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    /* === TESTIMONIALS SECTION === */
    .testimonials {
      padding: 6rem 2rem;
      background-color: #f8f9ff;
    }

    .testimonials-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .testimonials-header h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #020e42;
      margin-bottom: 1.5rem;
    }

    .testimonials-header p {
      font-size: 1rem;
      color: #45464f;
      margin-bottom: 2rem;
    }

    .avatars-group {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .avatar-stack {
      display: flex;
      gap: -0.75rem;
    }

    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 4px solid white;
      object-fit: cover;
      margin-right: -12px;
    }

    .avatar:last-child {
      margin-right: 0;
    }

    .avatar-text {
      font-size: 0.875rem;
      font-weight: 700;
      color: #020e42;
    }

    .testimonials-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .testimonial-card {
      background: white;
      padding: 2rem;
      border-radius: 24px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .quote-icon {
      font-size: 3rem;
      color: #b9092b;
      opacity: 0.2;
      position: absolute;
      top: -1rem;
      left: -1rem;
    }

    .testimonial-text {
      font-size: 1rem;
      color: #45464f;
      line-height: 1.9;
      margin-bottom: 1.5rem;
      font-style: italic;
      font-weight: 500;
    }

    .testimonial-author-section {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .author-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: #e4e8f2;
      overflow: hidden;
    }

    .author-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .author-info {
      display: flex;
      flex-direction: column;
    }

    .author-name {
      font-weight: 700;
      color: #020e42;
      font-size: 0.875rem;
    }

    .author-title {
      font-size: 0.75rem;
      color: #b9092b;
      font-weight: 600;
    }

    @media (min-width: 1024px) {
      .testimonials-container {
        grid-template-columns: 400px 1fr;
      }
      .testimonials-cards {
        grid-template-columns: repeat(2, 1fr);
      }
      .testimonial-card:nth-child(2) {
        grid-column: 2 / 3;
        max-height: calc(90% + 0.5rem);
        margin-top: 2rem;
      }
    }

    /* === CTA SECTION === */
    .cta {
      padding: 6rem 2rem;
      position: relative;
    }

    .cta-box {
      background-color: #020e42;
      border-radius: 40px;
      padding: 3rem 2rem;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
      box-shadow: 0 32px 64px -12px rgba(26, 37, 87, 0.2);
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 384px;
      height: 384px;
      background-color: rgba(185, 9, 43, 0.1);
      border-radius: 50%;
      transform: translateY(-50%) translateX(50%);
      filter: blur(96px);
    }

    .cta-box::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 256px;
      height: 256px;
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      transform: translateY(50%) translateX(-50%);
      filter: blur(64px);
    }

    .cta-content {
      position: relative;
      z-index: 10;
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-box h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .cta-box p {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 3rem;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    .btn-cta-primary {
      background-color: #b9092b;
      color: white;
      padding: 1.25rem 2.5rem;
      border-radius: 9999px;
      font-weight: 900;
      font-size: 1.25rem;
      box-shadow: 0 16px 24px rgba(185, 9, 43, 0.3);
      transition: all 0.3s ease;
    }

    .btn-cta-primary:hover {
      transform: scale(1.05);
    }

    .btn-cta-primary:active {
      transform: scale(0.95);
    }

    .btn-cta-secondary {
      background-color: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      padding: 1.25rem 2.5rem;
      border-radius: 9999px;
      font-weight: 700;
      font-size: 1.25rem;
      transition: all 0.3s ease;
    }

    .btn-cta-secondary:hover {
      background-color: white;
      color: #020e42;
    }

    @media (min-width: 768px) {
      .cta-box {
        padding: 6rem 4rem;
      }
      .cta-box h2 {
        font-size: 3rem;
      }
    }

    /* === FOOTER === */
    footer {
      background-color: #1a2557;
      color: white;
      margin-top: 5rem;
      padding: 4rem 2rem 2rem;
      border-radius: 32px 32px 0 0;
      box-shadow: 0 -10px 40px rgba(26, 37, 87, 0.2);
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      margin-bottom: 2rem;
    }

    .footer-brand h3 {
      font-size: 1.25rem;
      font-weight: 900;
      color: white;
      margin-bottom: 0.5rem;
    }

    .footer-brand p {
      color: rgba(226, 232, 240, 0.8);
      margin-bottom: 1.5rem;
      max-width: 300px;
      font-size: 0.875rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background-color: #b9092b;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }

    .footer-section h5 {
      font-size: 0.75rem;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
    }

    .footer-section a,
    .footer-section p {
      font-size: 0.875rem;
      color: rgba(226, 232, 240, 0.8);
      margin-bottom: 0.5rem;
      transition: color 0.3s ease;
    }

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

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

    @media (min-width: 768px) {
      .footer-content {
        grid-template-columns: 1fr 2fr;
        align-items: flex-start;
      }
      .footer-links {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 6rem;
      }
    }

    /* === RESPONSIVE === */
    @media (max-width: 767px) {
      /* .services-grid {
        grid-template-columns: 1fr;
      } */
      .service-card.large {
        grid-column: 1;
      }
      .process-grid {
        grid-template-columns: 1fr;
      }
    }

    .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}