/* ===========================
   Global Page Styling
   =========================== */

   body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.7;
  }
  
  /* ===========================
     HERO SECTION - MODERN
     =========================== */
  
  .roots-hero {
    margin-top: 0;
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgb(69, 85, 175) 0%, rgb(50, 65, 145) 100%);
    overflow: hidden;
  }
  
  .roots-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
  }
  
  .roots-hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
  }
  
  .hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin: 20px 0;
    letter-spacing: -2px;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-top: 15px;
  }
  
  .hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 2;
    cursor: pointer;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(-10px);
    }
    60% {
      transform: translateX(-50%) translateY(-5px);
    }
  }
  
  /* ===========================
     SECTION HEADERS
     =========================== */
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-label {
    display: inline-block;
    color: rgb(34, 139, 34);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
  
  .section-label.light {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    margin: 10px 0 0;
    letter-spacing: -1px;
  }
  
  /* ===========================
     SECTION BASE STYLES
     =========================== */
  
  .roots-section {
    padding: 100px 10%;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Fade-in animation */
  .fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ===========================
     VALUES SECTION - MODERN CARDS
     =========================== */
  
  .values-section {
    background: #f9f9f9;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  
  .value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgb(34, 139, 34), rgb(69, 85, 175));
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  
  .value-card:hover::before {
    transform: scaleX(1);
  }
  
  .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-color: rgb(34, 139, 34);
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgb(34, 139, 34), rgb(50, 160, 50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
  }
  
  .value-card:hover .value-icon {
    transform: rotate(5deg) scale(1.1);
  }
  
  .value-icon i {
    font-size: 2rem;
    color: white;
  }
  
  .value-card h3 {
    color: #222;
    margin: 0 0 15px;
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .value-card p {
    color: #666;
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
  }
  
  /* ===========================
     MEET THE OWNERS - MODERN LAYOUT
     =========================== */
  
  .owners-section {
    background: white;
  }
  
  .owners-container {
    display: grid;
    gap: 60px;
    margin-top: 50px;
  }
  
  .owner-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: center;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
  }
  
  .owner-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  }
  
  .owner-card:nth-child(even) {
    grid-template-columns: 1fr 380px;
  }
  
  .owner-card:nth-child(even):hover {
    transform: translateX(-10px);
  }
  
  .owner-card:nth-child(even) .owner-image-wrapper {
    order: 2;
  }
  
  .owner-card:nth-child(even) .owner-text {
    order: 1;
  }
  
  .owner-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    height: 480px;
  }
  
  .owner-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
    transform-origin: center top;
  }
  
  .owner-card:hover .owner-photo {
    transform: scale(1.05);
  }
  
  .owner-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(69, 85, 175, 0.95);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
  }
  
  .owner-role {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .owner-text h3 {
    margin: 0 0 20px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
  }
  
  .owner-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
  }
  
  /* ===========================
     TIMELINE - MODERN DESIGN
     =========================== */
  
  .timeline-section {
    padding: 0;
    margin: 80px 0;
  }
  
  .timeline-background {
    position: relative;
    padding: 100px 10%;
    overflow: hidden;
    background: #1a1a1a;
  }
  
  .timeline-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .timeline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(69, 85, 175, 0.92), rgba(34, 139, 34, 0.88));
    z-index: 1;
    opacity: 0.75;
  }
  
  .timeline-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .timeline-background .timeline-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin: 10px 0 0;
  }
  
  .timeline {
    margin-top: 60px;
    position: relative;
    padding-left: 0;
    border-left: none;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
      rgba(255, 255, 255, 0.3), 
      rgba(255, 255, 255, 0.8), 
      rgba(255, 255, 255, 0.3));
  }
  
  .timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
  }
  
  .timeline-marker {
    position: absolute;
    left: 20px;
    top: 5px;
    width: 22px;
    height: 22px;
    background: white;
    border: 4px solid rgb(34, 139, 34);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
  }
  
  .timeline-item:hover .timeline-marker {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  
  .timeline-content-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }
  
  .timeline-item:hover .timeline-content-box {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
  }
  
  .timeline-year {
    display: inline-block;
    color: rgb(34, 139, 34);
    background: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }
  
  .timeline-content-box p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  /* ===========================
     CALL TO ACTION - MODERN
     =========================== */
  
  .roots-cta {
    background: linear-gradient(135deg, rgb(69, 85, 175) 0%, rgb(50, 65, 145) 100%);
    color: white;
    padding: 100px 10%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .roots-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    margin: 0 0 15px;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
  }
  
  .cta-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.9;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: white;
    color: rgb(69, 85, 175);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    background: rgb(34, 139, 34);
    color: white;
  }
  
  .cta-button i {
    transition: transform 0.3s ease;
  }
  
  .cta-button:hover i {
    transform: translateX(5px);
  }
  
  /* ===========================
     RESPONSIVE DESIGN
     =========================== */
  
  @media (max-width: 1200px) {
    .owner-card {
      grid-template-columns: 320px 1fr;
      gap: 40px;
      padding: 35px;
    }
  
    .owner-card:nth-child(even) {
      grid-template-columns: 1fr 320px;
    }

    .owner-photo {
      height: 100%;
      object-fit: cover;
      object-position: center 20%;
    }
  }

  /* Switch values grid to 2 columns at 1250px to avoid awkward single card layout */
  @media (max-width: 1250px) {
    .values-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  }
  
  @media (max-width: 1024px) {
    .roots-hero {
      height: 60vh;
      min-height: 450px;
    }
  
    .hero-title {
      font-size: 3.5rem;
    }
  
    .section-header h2 {
      font-size: 2.5rem;
    }
  
    .roots-section {
      padding: 80px 8%;
    }

    .owner-photo {
      height: 150%;
      object-fit: cover;
    }
  
    .owner-card,
    .owner-card:nth-child(even) {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .owner-image-wrapper,
    .owner-card:nth-child(even) .owner-image-wrapper {
      order: 1;
    }
  
    .owner-text,
    .owner-card:nth-child(even) .owner-text {
      order: 2;
    }
  
    .owner-card:hover,
    .owner-card:nth-child(even):hover {
      transform: translateY(-10px);
    }
  }

  @media (max-width: 768px) {
    .roots-hero {
      height: auto;
      min-height: 500px;
      padding: 100px 20px;
    }
  
    .hero-title {
      font-size: 2.8rem;
    }
  
    .hero-subtitle {
      font-size: 1.1rem;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .roots-section {
      padding: 60px 6%;
    }
  
    .owner-card {
      padding: 30px 20px;
    }
  
    .timeline::before {
      left: 15px;
    }

    .timeline-background {
      overflow: visible;
    }
  
    .timeline-item {
      padding-left: 50px;
    }
  
    .timeline-marker {
      left: 12px;
    }
  
    .cta-content h2 {
      font-size: 2.2rem;
    }
  
    .timeline-title {
      font-size: 2.2rem;
    }

    .timeline-item:hover .timeline-content-box {
      transform: none;
    }
  }

  /* Switch values grid to 1 column at 600px */
  @media (max-width: 600px) {
    .values-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2.2rem;
    }
  
    .hero-badge {
      font-size: 0.8rem;
      padding: 6px 16px;
    }
  
    .section-header h2 {
      font-size: 1.8rem;
    }
  
    .value-card {
      padding: 30px 20px;
    }
  
    .value-icon {
      width: 60px;
      height: 60px;
    }
  
    .value-icon i {
      font-size: 1.6rem;
    }
  
    .owner-text h3 {
      font-size: 1.8rem;
    }
  
    .timeline-content-box {
      padding: 20px;
    }
  
    .cta-content h2 {
      font-size: 1.9rem;
    }
  
    .cta-button {
      padding: 14px 32px;
      font-size: 1rem;
    }
    .owner-image-wrapper {
      height: 360px;
    }
    .owner-photo {
      object-position: center 15%;
    }
  }