/* ===== Reset & Base ===== */
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --red: #8B1A1A;
    --red-light: #A52A2A;
    --dark: #1A1A1A;
    --dark-light: #2D2D2D;
    --gray: #6B6B6B;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul {
    list-style: none;
  }

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

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ===== Header / Navbar ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: background 0.3s;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav__logo img {
    height: 44px;
    width: auto;
  }

  .nav__logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav__links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.2s;
    position: relative;
  }

  .nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
  }

  .nav__links a:hover,
  .nav__links a.active {
    color: var(--dark);
  }

  .nav__links a:hover::after,
  .nav__links a.active::after {
    width: 100%;
  }

  .nav__cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
  }

  .nav__cta::after {
    display: none !important;
  }

  .nav__cta:hover {
    background: var(--red-light);
  }

  .nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: transform 0.3s, opacity 0.3s;
  }

  /* ===== Hero Section ===== */
  .hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
  }

  .hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .hero__content {
    flex: 1;
  }

  .hero__badge {
    display: inline-block;
    background: rgba(139, 26, 26, 0.1);
    color: var(--red);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .hero__title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
  }

  .hero__title span {
    color: var(--red);
  }

  .hero__text {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 520px;
    margin-bottom: 32px;
  }

  .hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero__visual {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .hero__visual-graphic {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--red) 0%, var(--dark) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero__visual-graphic::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.03) 20px,
      rgba(255, 255, 255, 0.03) 40px
    );
  }

  .hero__visual-icon {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
    text-align: center;
    line-height: 1.3;
  }

  /* ===== Buttons ===== */
  .btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
  }

  .btn--primary {
    background: var(--red);
    color: var(--white);
  }

  .btn--primary:hover {
    background: var(--red-light);
    transform: translateY(-1px);
  }

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

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

  /* ===== Stats Bar ===== */
  .stats {
    padding: 48px 0;
    background: var(--dark);
  }

  .stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat {
    text-align: center;
    min-width: 160px;
  }

  .stat__number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
  }

  .stat__number span {
    color: var(--red);
  }

  .stat__label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
  }

  /* ===== Section Styles ===== */
  .section {
    padding: 80px 0;
  }

  .section--gray {
    background: var(--gray-light);
  }

  .section__header {
    text-align: center;
    margin-bottom: 56px;
  }

  .section__tag {
    display: block;              /* CHANGE this */
    background: rgba(139, 26, 26, 0.1);
    color: var(--red);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 auto 12px;        /* CHANGE this */
    text-align: center;         /* ADD this */
    width: fit-content;         /* ADD this */
  }

  .section__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .section__subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
  }

  /* ===== Services Grid ===== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
  }

  .service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.04);
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(139, 26, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .service-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
  }

  .service-card__text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
  }

  /* ===== Why Choose Us ===== */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
  }

  .why-item {
    text-align: center;
    padding: 28px 20px;
  }

  .why-item__icon {
    width: 64px;
    height: 64px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    color: var(--white);
  }

  .why-item__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
  }

  .why-item__text {
    font-size: 0.95rem;
    color: var(--gray);
  }

  /* ===== Process / Steps ===== */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    counter-reset: step;
  }

  .process-step {
    text-align: center;
    padding: 24px 16px;
    position: relative;
  }

  .process-step__number {
    width: 48px;
    height: 48px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 16px;
  }

  .process-step__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
  }

  .process-step__text {
    font-size: 0.9rem;
    color: var(--gray);
  }

  /* ===== Testimonials ===== */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }

  .testimonial {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--red);
  }

  .testimonial__stars {
    color: #F5A623;
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .testimonial__text {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.7;
  }

  .testimonial__author {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
  }

  .testimonial__role {
    font-size: 0.85rem;
    color: var(--gray);
  }

  /* ===== CTA Section ===== */
  .cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    text-align: center;
  }

  .cta-section__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
  }

  .cta-section__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 32px;
  }

  /* ===== Footer ===== */
  .footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 24px;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .footer__brand p {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
  }

  .footer__heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
  }

  .footer__links li {
    margin-bottom: 10px;
  }

  .footer__links a {
    font-size: 0.9rem;
    transition: color 0.2s;
  }

  .footer__links a:hover {
    color: var(--white);
  }

  .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
  }

  /* ===== Page Headers ===== */
  .page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    text-align: center;
  }

  .page-header__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
  }

  .page-header__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
  }

  /* ===== About Page ===== */
  .about-intro .container {
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .about-intro__content {
    flex: 1;
  }

  .about-intro__visual {
    flex: 1;
  }

  .about-intro__visual-box {
    background: linear-gradient(135deg, var(--red) 0%, var(--dark) 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    color: var(--white);
  }

  .about-intro__visual-box .big-number {
    font-size: 4rem;
    font-weight: 800;
  }

  .about-intro__visual-box p {
    font-size: 1.1rem;
    opacity: 0.9;
  }

  .about-intro h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
  }

  .about-intro p {
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.7;
  }

  /* Values */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
  }

  .value-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .value-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .value-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
  }

  .value-card__text {
    font-size: 0.9rem;
    color: var(--gray);
  }

  /* ===== Services Page ===== */
  .service-detail {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 40px 0;
  }

  .service-detail:nth-child(even) {
    flex-direction: row-reverse;
  }

  .service-detail__content {
    flex: 1;
  }

  .service-detail__visual {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .service-detail__icon-box {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--red) 0%, var(--dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
  }

  .service-detail h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .service-detail p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .service-detail ul {
    list-style: none;
  }

  .service-detail ul li {
    padding: 6px 0;
    color: var(--gray);
    position: relative;
    padding-left: 24px;
  }

  .service-detail ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
  }

  /* ===== Contact Page ===== */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .contact-info__item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
  }

  .contact-info__icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 26, 26, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .contact-info__label {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
  }

  .contact-info__value {
    color: var(--gray);
    font-size: 0.95rem;
  }

  .contact-form {
    background: var(--white);
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--dark);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: border-color 0.2s;
    background: var(--white);
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--red);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .btn--full {
    width: 100%;
    text-align: center;
  }

  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .hero .container {
      flex-direction: column;
      text-align: center;
    }

    .hero__text {
      margin-left: auto;
      margin-right: auto;
    }

    .hero__actions {
      justify-content: center;
    }

    .hero__title {
      font-size: 2.4rem;
    }

    .footer__grid {
      grid-template-columns: 1fr 1fr;
    }

    .about-intro .container {
      flex-direction: column;
    }

    .service-detail,
    .service-detail:nth-child(even) {
      flex-direction: column;
    }

    .contact-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .nav__links {
      display: none;
      position: absolute;
      top: 72px;
      left: 0;
      width: 100%;
      background: var(--white);
      flex-direction: column;
      padding: 24px;
      gap: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .nav__links.active {
      display: flex;
    }

    .nav__hamburger {
      display: flex;
    }

    .hero {
      padding: 120px 0 60px;
    }

    .hero__title {
      font-size: 2rem;
    }

    .section__title {
      font-size: 1.8rem;
    }

    .page-header__title {
      font-size: 2rem;
    }

    .footer__grid {
      grid-template-columns: 1fr;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .stats .container {
      flex-direction: column;
      align-items: center;
    }
  }
  /* ===== ANIMATIONS ===== */

  /* Fade In Up Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Fade In Left Animation */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Fade In Right Animation */
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Scale In Animation */
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Pulse Animation */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }

  /* Slide In Animation */
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Shimmer Animation */
  @keyframes shimmer {
    0% {
      left: -100%;
    }
    100% {
      left: 200%;
    }
  }

  /* Rotate Animation */
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  /* Bounce Animation */
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  /* ===== ANIMATION CLASSES ===== */

  .animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
  }

  .animate-fade-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
  }

  .animate-fade-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
  }

  .animate-scale {
    opacity: 0;
    animation: scaleIn 0.6s ease forwards;
  }

  .animate-slide {
    opacity: 0;
    animation: slideIn 0.6s ease forwards;
  }

  /* Animation Delays */
  .delay-1 {
    animation-delay: 0.2s;
  }

  .delay-2 {
    animation-delay: 0.4s;
  }

  .delay-3 {
    animation-delay: 0.6s;
  }

  .delay-4 {
    animation-delay: 0.8s;
  }

  .delay-5 {
    animation-delay: 1s;
  }

  /* ===== PAGE LOAD ANIMATIONS ===== */

  /* Hero Section */
  .hero__content {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
  }

  .hero__visual {
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.3s;
  }

  .hero__badge {
    opacity: 0;
    animation: slideIn 0.6s ease forwards;
  }

  .hero__title {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
  }

  .hero__text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
  }

  .hero__actions {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
  }

  /* Page Header */
  .page-header__title {
    opacity: 0;
    animation: slideIn 0.8s ease forwards;
  }

  .page-header__text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
  }

  /* ===== HOVER ANIMATIONS ===== */

  /* Service Card */
  .service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 26, 26, 0.15);
  }

  .service-card:hover .service-card__icon {
    animation: bounce 0.8s ease;
    background: var(--red);
    color: var(--white);
  }

  /* Value Card */
  .value-card {
    transition: all 0.4s ease;
  }

  .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  }

  .value-card:hover .value-card__icon {
    animation: pulse 0.8s ease;
    transform: scale(1.2);
  }

  /* Stat Cards */
  .stat {
    transition: all 0.3s ease;
  }

  .stat:hover .stat__number {
    animation: pulse 0.6s ease;
    color: var(--red);
  }

  .stat:hover .stat__number span {
    color: var(--white);
  }

  /* Process Steps */
  .process-step {
    transition: all 0.4s ease;
  }

  .process-step:hover {
    transform: translateY(-8px);
  }

  .process-step:hover .process-step__number {
    animation: rotate 0.8s ease;
    background: var(--red);
  }

  /* Testimonials */
  .testimonial {
    transition: all 0.4s ease;
  }

  .testimonial:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(139, 26, 26, 0.12);
  }

  .testimonial:hover .testimonial__stars {
    animation: pulse 0.8s ease;
  }

  /* Buttons */
  .btn {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
  }

  .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 26, 26, 0.3);
  }

  .btn:hover::after {
    left: 100%;
  }

  .btn--outline:hover {
    background: var(--dark);
    border-color: var(--dark);
  }

  /* Navigation */
  .nav__logo {
    transition: transform 0.3s ease;
  }

  .nav__logo:hover {
    transform: scale(1.05);
  }

  .nav__logo:hover img {
    animation: bounce 0.8s ease;
  }

  .nav__links a {
    transition: color 0.3s ease;
  }

  .nav__links a::after {
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .nav__cta {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  /* Hamburger Animation */
  .nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .nav__hamburger span {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  /* ===== SCROLL TRIGGERED ANIMATIONS ===== */

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

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

  /* ===== FORM ANIMATIONS ===== */

  .form-group input,
  .form-group select,
  .form-group textarea {
    transition: all 0.3s ease;
    border-width: 2px;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    transform: scale(1.01);
    border-color: var(--red);
    box-shadow: 0 4px 12px rgba(139, 26, 26, 0.1);
  }

  .form-group label {
    transition: all 0.3s ease;
  }

  .form-group input:focus + label,
  .form-group select:focus + label,
  .form-group textarea:focus + label {
    color: var(--red);
    transform: translateX(5px);
  }

  /* ===== CTA SECTION ANIMATIONS ===== */

  .cta-section {
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
  }

  .cta-section__title {
    opacity: 0;
    animation: slideIn 0.8s ease forwards;
  }

  .cta-section__text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
  }

  .cta-section .btn {
    opacity: 0;
    animation: scaleIn 0.8s ease forwards;
    animation-delay: 0.6s;
  }

  /* ===== FOOTER ANIMATIONS ===== */

  .footer__links a {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .footer__links a:hover {
    transform: translateX(5px);
    color: var(--white);
  }

  .footer__brand img {
    transition: transform 0.5s ease;
  }

  .footer__brand:hover img {
    animation: rotate 0.8s ease;
  }

  /* ===== SERVICE DETAIL ANIMATIONS ===== */

  .service-detail {
    transition: all 0.4s ease;
  }

  .service-detail:hover {
    transform: translateX(10px);
  }

  .service-detail__icon-box {
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
  }

  .service-detail__icon-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transform: rotate(45deg);
    animation: shimmer 6s infinite;
  }

  .service-detail:hover .service-detail__icon-box {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 40px rgba(139, 26, 26, 0.3);
  }

  .service-detail ul li {
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .service-detail ul li:hover {
    transform: translateX(5px);
    color: var(--red);
  }

  /* ===== CONTACT PAGE ANIMATIONS ===== */

  .contact-info__item {
    transition: all 0.4s ease;
  }

  .contact-info__item:hover {
    transform: translateX(8px);
  }

  .contact-info__item:hover .contact-info__icon {
    animation: pulse 0.6s ease;
    background: var(--red);
    color: var(--white);
  }

  .contact-info__icon {
    transition: all 0.4s ease;
  }

  .contact-form {
    position: relative;
    overflow: hidden;
  }

  .contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--dark));
    transition: left 0.6s ease;
  }

  .contact-form:hover::before {
    left: 0;
  }

  /* ===== LOADING ANIMATION ===== */

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
  }

  /* ===== PAGE TRANSITIONS ===== */

  body {
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  /* ===== CARD GRID ANIMATIONS ===== */

  .services-grid > *,
  .values-grid > *,
  .why-grid > *,
  .process-steps > *,
  .testimonials-grid > * {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
  }

  .services-grid > *:nth-child(1) { animation-delay: 0.1s; }
  .services-grid > *:nth-child(2) { animation-delay: 0.2s; }
  .services-grid > *:nth-child(3) { animation-delay: 0.3s; }
  .services-grid > *:nth-child(4) { animation-delay: 0.4s; }
  .services-grid > *:nth-child(5) { animation-delay: 0.5s; }
  .services-grid > *:nth-child(6) { animation-delay: 0.6s; }

  .values-grid > *:nth-child(1) { animation-delay: 0.1s; }
  .values-grid > *:nth-child(2) { animation-delay: 0.2s; }
  .values-grid > *:nth-child(3) { animation-delay: 0.3s; }
  .values-grid > *:nth-child(4) { animation-delay: 0.4s; }

  /* ===== STATS COUNTER ANIMATION ===== */

  @keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); color: var(--red); }
    100% { transform: scale(1); }
  }

  .stat__number.animate-count {
    animation: countPulse 0.5s ease;
  }

  /* ===== HERO VISUAL ANIMATION ===== */

  .hero__visual-graphic {
    position: relative;
    overflow: hidden;
  }

  .hero__visual-graphic::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
  }

  .hero__visual-icon {
    animation: bounce 3s ease infinite;
  }

  /* ===== SECTION HEADER ANIMATIONS ===== */

  .section__tag {
    position: relative;
    overflow: hidden;
  }

  .section__tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 26, 26, 0.2), transparent);
    animation: shimmer 3s infinite;
  }

  .section__title {
    position: relative;
    display: inline-block;
  }

  .section__title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 10px auto 0;   /* THIS centers the red line */
    border-radius: 2px;
  }

  /* ===== ABOUT PAGE SPECIFIC ===== */

  .about-intro__visual-box {
    position: relative;
    overflow: hidden;
  }

  .about-intro__visual-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
  }

  .big-number {
    animation: pulse 2s ease infinite;
    display: inline-block;
  }
  .hero__visual-video {
  width: 100%;
  max-width: 600px; /* adjust to fit your layout */
  border-radius: 12px;
  object-fit: cover; /* ensures the video fills the container nicely */
}
/* Make menu text red */

.nav__links a {

  color: #8B1A1A;

}


/* Keep active page red */

.nav__links a.active {

  color: #8B1A1A;

}


/* Hover effect */

.nav__links a:hover {

  color: #B22222;

}
.logo-red {
  color: #8B1A1A;
}
.logo-red {
  color: #8B1A1A !important;
}
.nav__links a {
  color: #8B1A1A;       /* default color */
  text-decoration: none;
  transition: color 0.3s;
}

.nav__links a.active {
  color: black;     /* selected/current page */
}
