/*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@300;400;500;600&display=swap');

@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    /* Fonts */
    --font-rubik: 'Rubik', sans-serif;
    --font-walsheim: 'Outfit', sans-serif; /* Walsheim alternative */
    --font-playfair: 'Playfair Display', serif;
    --font-sans: var(--font-rubik); /* Default font */

    /* Horizon Brand Colors */
    --color-horizon-dark: #003333;   /* Deep Green for Text/Buttons */
    --color-horizon-accent: #E65100; /* Orange Accent */
    --color-white: #ffffff;
    --color-gray-100: #f3f4f6;
    --color-gray-600: #4b5563;
    
    /* Layout */
    --spacing: 0.25rem;
    --container-xl: 80rem;
  }
}

@layer base {
  *, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid #e5e7eb;
  }
  
  html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--font-sans);
  }
  
  body {
    /* Light Mode Default */
    background-color: var(--color-white);
    color: var(--color-horizon-dark);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5, h6 {
    color: var(--color-horizon-dark);
  }

  /* Reset default link styles */
  a {
    color: inherit;
    text-decoration: inherit;
  }

  /* Reset default button styles */
  button {
    background-color: transparent;
    cursor: pointer;
    font-family: inherit;
  }

  /* Custom Font Classes */
  .font-playfair {
    font-family: var(--font-playfair);
  }
  .font-walsheim {
    font-family: var(--font-walsheim);
  }
}

@layer components {
  /* Lenis Scroll Styles */
  html.lenis, html.lenis body {
    height: auto;
  }
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  .lenis.lenis-scrolling iframe {
    pointer-events: none;
  }

  /* Reveal on Scroll Animation */
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
  }
  .reveal-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered Grid Animation */
  .stagger-grid .stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .stagger-grid .stagger-item.pop-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hover Scale Effect */
  .hover-scale {
    transition: transform 0.5s ease;
  }
  .hover-scale:hover {
    transform: scale(1.02);
  }

  /* Gradient Mask for Marquee */
  .mask-gradient {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  /* Custom Grid for Awards */
  @media (min-width: 768px) {
    .md\:grid-cols-awards {
        grid-template-columns: 1fr 3fr 2fr;
    }
  }
}

@layer utilities {
  /* Layout & Positioning */
  .fixed { position: fixed; }
  .absolute { position: absolute; }
  .relative { position: relative; }
  .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
  .top-0 { top: 0; }
  .top-6 { top: 1.5rem; }
  .left-1\/2 { left: 50%; }
  .right-0 { right: 0; }
  .right-6 { right: 1.5rem; }
  .bottom-8 { bottom: 2rem; } 
  .right-8 { right: 2rem; } 
  .z-0 { z-index: 0; }
  .z-10 { z-index: 10; }
  .z-20 { z-index: 20; }
  .z-50 { z-index: 50; }
  .z-\[60\] { z-index: 60; }

  /* Flexbox */
  .flex { display: flex; }
  .flex-col { flex-direction: column; }
  .items-center { align-items: center; }
  .items-start { align-items: flex-start; }
  .justify-between { justify-content: space-between; }
  .justify-center { justify-content: center; }
  .justify-start { justify-content: flex-start; }
  .flex-grow { flex-grow: 1; }
  .flex-wrap { flex-wrap: wrap; }
  .flex-shrink-0 { flex-shrink: 0; }
  .gap-0 { gap: 0; } 
  .gap-2 { gap: 0.5rem; }
  .gap-3 { gap: 0.75rem; }
  .gap-4 { gap: 1rem; }
  .gap-6 { gap: 1.5rem; }
  .gap-8 { gap: 2rem; }
  .gap-12 { gap: 3rem; }
  .gap-16 { gap: 4rem; } 
  .gap-24 { gap: 6rem; } 
  .gap-x-3 { column-gap: 0.75rem; }
  .gap-x-4 { column-gap: 1rem; }

  /* Grid */
  .grid { display: grid; }
  .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } 
  .grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } 

  /* Sizing */
  .w-full { width: 100%; }
  .w-auto { width: auto; }
  .w-1\/2 { width: 50%; }
  .w-1\/3 { width: 33.333333%; } 
  .w-3\/4 { width: 75%; }
  .h-full { height: 100%; }
  .h-auto { height: auto; }
  .max-h-0 { max-height: 0; } 
  .min-h-screen { min-height: 100vh; }
  .w-\[95\%\] { width: 95%; }
  .max-w-7xl { max-width: 80rem; }
  .max-w-6xl { max-width: 72rem; }
  .max-w-5xl { max-width: 64rem; }
  .max-w-4xl { max-width: 56rem; }
  .max-w-3xl { max-width: 48rem; }
  .max-w-2xl { max-width: 42rem; }
  .max-w-xl { max-width: 36rem; }
  .max-w-lg { max-width: 32rem; }
  .max-w-md { max-width: 28rem; }
  
  .w-8 { width: 2rem; }
  .h-8 { height: 2rem; }
  .h-10 { height: 2.5rem; }
  .w-12 { width: 3rem; }
  .h-12 { height: 3rem; } 
  
  .w-20 { width: 5rem; }
  .h-20 { height: 5rem; }
  .w-24 { width: 6rem; }
  .h-24 { height: 6rem; }
  
  .h-40 { height: 10rem; }
  .h-48 { height: 12rem; }
  .h-64 { height: 16rem; }
  .h-80 { height: 20rem; }
  .w-6 { width: 1.5rem; }
  .h-6 { height: 1.5rem; }
  .w-5 { width: 1.25rem; }
  .h-5 { height: 1.25rem; }
  /* Added missing dimensions for Why Choose Us section */
  .w-7 { width: 1.75rem; }
  .h-7 { height: 1.75rem; }
  .w-14 { width: 3.5rem; }
  .h-14 { height: 3.5rem; }
  
  .w-80 { width: 20rem; }
  .h-[50vh] { height: 50vh; }
  .min-h-[50vh] { min-height: 50vh; }
  .h-\[500px\] { height: 500px; }
  .h-\[600px\] { height: 600px; } 
  .w-\[1px\] { width: 1px; }
  .h-\[1px\] { height: 1px; }

  /* Spacing */
  .m-0 { margin: 0; }
  .mx-auto { margin-left: auto; margin-right: auto; }
  .mb-0 { margin-bottom: 0; }
  .mb-2 { margin-bottom: 0.5rem; }
  .mb-4 { margin-bottom: 1rem; } 
  .mb-6 { margin-bottom: 1.5rem; }
  .mb-8 { margin-bottom: 2rem; } 
  .mb-12 { margin-bottom: 3rem; } 
  .mb-16 { margin-bottom: 4rem; }
  .mb-20 { margin-bottom: 5rem; } 
  .my-12 { margin-top: 3rem; margin-bottom: 3rem; } 
  .mt-0 { margin-top: 0; }
  .mt-2 { margin-top: 0.5rem; }
  .mt-4 { margin-top: 1rem; }
  .mt-6 { margin-top: 1.5rem; } 
  .mt-8 { margin-top: 2rem; }
  .mt-12 { margin-top: 3rem; } 
  .mt-16 { margin-top: 4rem; }
  .mt-20 { margin-top: 5rem; } 
  .mt-24 { margin-top: 6rem; } 
  .mt-32 { margin-top: 8rem; }
  .mt-auto { margin-top: auto; }
  .mr-4 { margin-right: 1rem; }
  .ml-1 { margin-left: 0.25rem; }
  .p-2 { padding: 0.5rem; }
  .p-3 { padding: 0.75rem; } 
  .p-4 { padding: 1rem; } 
  .p-6 { padding: 1.5rem; } 
  .p-8 { padding: 2rem; } 
  .p-12 { padding: 3rem; } 
  .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; } 
  .py-12 { padding-top: 3rem; padding-bottom: 3rem; } 
  .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .py-24 { padding-top: 6rem; padding-bottom: 6rem; } 
  .py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
  .px-4 { padding-left: 1rem; padding-right: 1rem; }
  .px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
  .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .px-8 { padding-left: 2rem; padding-right: 2rem; }
  .px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .px-12 { padding-left: 3rem; padding-right: 3rem; }
  .pt-8 { padding-top: 2rem; }
  .pt-10 { padding-top: 2.5rem; } 
  .pt-12 { padding-top: 3rem; }
  .pt-20 { padding-top: 5rem; } 
  .pt-24 { padding-top: 6rem; }
  .pt-32 { padding-top: 8rem; } 
  .pt-40 { padding-top: 10rem; }
  .pb-0 { padding-bottom: 0; }
  .pb-4 { padding-bottom: 1rem; } 
  .pb-6 { padding-bottom: 1.5rem; }
  .pb-8 { padding-bottom: 2rem; }
  .pb-10 { padding-bottom: 2.5rem; } 
  .pb-12 { padding-bottom: 3rem; }
  .pb-20 { padding-bottom: 5rem; }

  /* Typography */
  .text-center { text-align: center; }
  .text-left { text-align: left; }
  .font-rubik { font-family: var(--font-rubik); }
  .font-walsheim { font-family: var(--font-walsheim); }
  .font-playfair { font-family: var(--font-playfair); }
  .italic { font-style: italic; }
  .font-light { font-weight: 300; }
  .font-normal { font-weight: 400; }
  .font-medium { font-weight: 500; }
  .font-bold { font-weight: 700; } 
  .font-semibold { font-weight: 600; }
  .uppercase { text-transform: uppercase; }
  .text-xs { font-size: 0.75rem; } 
  .text-sm { font-size: 0.875rem; }
  .text-lg { font-size: 1.125rem; }
  .text-xl { font-size: 1.25rem; } 
  .text-2xl { font-size: 1.5rem; }
  .text-3xl { font-size: 1.875rem; } 
  .text-4xl { font-size: 2.25rem; }
  .text-5xl { font-size: 3rem; }
  .text-6xl { font-size: 3.75rem; }
  .text-7xl { font-size: 4.5rem; }
  .text-\[18px\] { font-size: 18px; }
  
  /* Specific Hero Typography */
  .text-\[56px\] { font-size: 56px; }
  .leading-\[67px\] { line-height: 67px; }
  .text-\[58px\] { font-size: 58px; }
  .leading-\[70px\] { line-height: 70px; }
  
  .tracking-tight { letter-spacing: -0.025em; }
  .tracking-wide { letter-spacing: 0.025em; }
  .tracking-widest { letter-spacing: 0.1em; }
  .leading-none { line-height: 1; }
  .leading-tight { line-height: 1.25; }
  .leading-relaxed { line-height: 1.625; }

  /* Colors & Backgrounds */
  .bg-white { background-color: var(--color-white); }
  .bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
  .bg-white\/70 { background-color: rgba(255, 255, 255, 0.7); }
  .bg-white\/30 { background-color: rgba(255, 255, 255, 0.3); }
  .bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); } 
  .bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
  .bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); } 
  .bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); } 
  .bg-transparent { background-color: transparent; }
  .bg-horizon-dark { background-color: var(--color-horizon-dark); }
  .bg-horizon-accent { background-color: var(--color-horizon-accent); }
  .bg-\[\#003c45\] { background-color: #003c45; }
  .bg-gray-400 { background-color: #9ca3af; }
  .bg-gray-50 { background-color: #f9fafb; } 
  .bg-\[\#F2F2F2\] { background-color: #F2F2F2; } 
  
  .text-white { color: var(--color-white); }
  .text-gray-600 { color: var(--color-gray-600); }
  .text-gray-500 { color: #6b7280; }
  .text-gray-400 { color: #9ca3af; }
  .text-gray-200 { color: #e5e7eb; } 
  .text-gray-300 { color: #d1d5db; } 
  .text-horizon-dark { color: var(--color-horizon-dark); }
  .text-horizon-accent { color: var(--color-horizon-accent); }
  /* Custom Brand Color */
  .text-\[\#003c45\] { color: #003c45; }
  
  .placeholder-gray-300::placeholder { color: #d1d5db; }

  /* Borders & Shadows */
  .border { border-width: 1px; }
  .border-l { border-left-width: 1px; }
  .border-r { border-right-width: 1px; }
  .border-t { border-top-width: 1px; }
  .border-b { border-bottom-width: 1px; } 
  .border-gray-100 { border-color: var(--color-gray-100); }
  .border-gray-200 { border-color: #e5e7eb; } 
  .border-gray-300 { border-color: #d1d5db; }
  .border-black { border-color: #000000; }
  .border-white\/20 { border-color: rgba(255, 255, 255, 0.2); } 
  .rounded-full { border-radius: 9999px; }
  .rounded-2xl { border-radius: 1rem; }
  .rounded-3xl { border-radius: 1.5rem; }
  .rounded-tl-xl { border-top-left-radius: 0.75rem; }
  .rounded-br-xl { border-bottom-right-radius: 0.75rem; }
  .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
  .shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); } 
  .shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
  
  /* Focus States */
  .focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
  .focus\:border-horizon-accent:focus { border-color: var(--color-horizon-accent); }

  /* Effects */
  .backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  .backdrop-blur-lg { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
  .backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
  .opacity-0 { opacity: 0; }
  .opacity-10 { opacity: 0.1; }
  .opacity-40 { opacity: 0.4; }
  .opacity-50 { opacity: 0.5; } 
  .opacity-80 { opacity: 0.8; }
  .opacity-90 { opacity: 0.9; }
  .opacity-100 { opacity: 1; } 
  .pointer-events-none { pointer-events: none; }
  .pointer-events-auto { pointer-events: auto; } 
  .overflow-hidden { overflow: hidden; }
  .object-cover { object-fit: cover; }
  .object-contain { object-fit: contain; }
  .object-center { object-position: center; }
  .cursor-pointer { cursor: pointer; } 
  .resize-none { resize: none; }
  .filter { filter: var(--tw-filter); }
  .grayscale { filter: grayscale(100%); } 
  .grayscale-0 { filter: grayscale(0); } 
  .hover\:grayscale-0:hover { filter: grayscale(0); } 

  /* Transitions & Animation - PERFORMANCE OPTIMIZED */
  .transition-all { transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); }
  .transition-colors { transition: color 300ms, background-color 300ms, border-color 300ms; }
  .transition-transform { transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1); }
  .transition-shadow { transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1); } 
  .transition-opacity { transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1); }
  .duration-300 { transition-duration: 300ms; }
  .duration-500 { transition-duration: 500ms; } 
  .duration-700 { transition-duration: 700ms; }
  .ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
  
  .transform { transform: var(--tw-transform); }
  .-translate-x-1\/2 { transform: translateX(-50%); }
  .translate-x-full { transform: translateX(100%); }
  .translate-y-full { transform: translateY(100%); } 
  .translate-y-0 { transform: translateY(0); } 
  .translate-y-20 { transform: translateY(5rem); } 
  .rotate-180 { transform: rotate(180deg); } 
  .scale-0 { transform: scale(0); } 
  .scale-100 { transform: scale(1); } 
  .scale-\[1\.02\] { transform: scale(1.02); }
  
  /* Marquee Animation */
  @keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
  }
  .animate-scroll {
    animation: scroll-left 40s linear infinite;
  }
  
  /* Text Rendering */
  .antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Hover */
  .hover\:bg-gray-100:hover { background-color: var(--color-gray-100); }
  .hover\:bg-gray-50:hover { background-color: #f9fafb; } 
  .hover\:bg-horizon-dark:hover { background-color: var(--color-horizon-dark); } 
  .hover\:text-horizon-dark:hover { color: var(--color-horizon-dark); }
  .hover\:text-horizon-accent:hover { color: var(--color-horizon-accent); }
  .hover\:text-white:hover { color: #ffffff; } 
  .hover\:bg-horizon-accent:hover { background-color: var(--color-horizon-accent); }
  .hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); } 
  .hover\:opacity-90:hover { opacity: 0.9; }
  .hover\:opacity-80:hover { opacity: 0.8; }
  .hover\:opacity-100:hover { opacity: 1; } 
  .group:hover .group-hover\:scale-105 { transform: scale(1.05); }
  .group:hover .group-hover\:scale-110 { transform: scale(1.1); } 
  .group:hover .group-hover\:opacity-100 { opacity: 1; } 
  .group:hover .group-hover\:grayscale-0 { filter: grayscale(0); } 
  .group:hover .group-hover\:translate-y-0 { transform: translateY(0); } 
  
  /* Added Button Hover Utilities */
  .hover\:scale-105:hover { transform: scale(1.05); }
  .hover\:scale-110:hover { transform: scale(1.1); } 
  .hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
  .active\:scale-95:active { transform: scale(0.95); }

  /* Responsive Utilities */
  .hidden { display: none; }
  .block { display: block; }
  .inline-block { display: inline-block; }
  
  @media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:gap-24 { gap: 6rem; }
    /* Added LG utilities for Stats Section fix */
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:flex-col { flex-direction: column; }
    .lg\:items-start { align-items: flex-start; }
    /* Added LG utilities for new 3-col grid */
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:col-start-auto { grid-column-start: auto; }
  }

  /* Added XL Breakpoint for Desktop Grid */
  @media (min-width: 1280px) {
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .xl\:flex-row { flex-direction: row; }
    .xl\:items-center { align-items: center; }
    .xl\:gap-4 { gap: 1rem; }
  }

  @media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:flex-row { flex-direction: row; }
    .md\:items-center { align-items: center; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } 
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } 
    .md\:grid-cols-awards { grid-template-columns: 1fr 3fr 2fr; } 
    .md\:col-start-1 { grid-column-start: 1; }
    
    .md\:w-1\/2 { width: 50%; } 
    .md\:w-1\/3 { width: 33.333333%; } 
    .md\:w-auto { width: auto; }
    
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:text-xl { font-size: 1.25rem; }
    .md\:text-2xl { font-size: 1.5rem; } 
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-6xl { font-size: 3.75rem; }
    
    .md\:mb-0 { margin-bottom: 0; }
    .md\:mb-4 { margin-bottom: 1rem; }
    
    .md\:p-12 { padding: 3rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; } 
    .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    
    .md\:gap-4 { gap: 1rem; }
    .md\:gap-0 { gap: 0; } 
    .md\:gap-6 { gap: 1.5rem; }
    .md\:gap-8 { gap: 2rem; } 
    .md\:gap-12 { gap: 3rem; } 
    .md\:gap-20 { gap: 5rem; } 
    .md\:gap-x-4 { column-gap: 1rem; }
    .md\:gap-x-5 { column-gap: 1.25rem; }
    
    .md\:h-\[65vh\] { height: 65vh; }
    .md\:h-80 { height: 20rem; }
    .md\:h-48 { height: 12rem; }
    .md\:h-\[500px\] { height: 500px; }
    .md\:h-\[600px\] { height: 600px; }
    .md\:pt-12 { padding-top: 3rem; }
    
    .md\:text-\[90px\] { font-size: 90px; }
    .md\:text-\[92px\] { font-size: 92px; }
    .md\:leading-\[96px\] { line-height: 96px; }
    
    .md\:max-w-2xl { max-width: 42rem; }
    .md\:max-w-4xl { max-width: 56rem; }
  }

  /* Added SM Breakpoint for Mobile Landscape fix */
  @media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:flex-row { flex-direction: row; }
    .sm\:items-center { align-items: center; }
    .sm\:gap-4 { gap: 1rem; }
  }

  /* Dark Mode Overrides */
  .dark body {
    background-color: #0a0a0a;
    color: #ffffff;
  }
  .dark .dark\:bg-zinc-900 { background-color: #18181b; }
  .dark .dark\:bg-zinc-900\/90 { background-color: rgba(24, 24, 27, 0.9); }
  .dark .dark\:bg-zinc-900\/70 { background-color: rgba(24, 24, 27, 0.7); }
  .dark .dark\:bg-zinc-900\/30 { background-color: rgba(24, 24, 27, 0.3); }
  .dark .dark\:bg-white { background-color: #ffffff; }
  .dark .dark\:bg-zinc-800 { background-color: #27272a; } 
  .dark .dark\:bg-zinc-800\/50 { background-color: rgba(39, 39, 42, 0.5); }
  .dark .dark\:hover\:bg-zinc-800\/50:hover { background-color: rgba(39, 39, 42, 0.5); } 
  
  .dark .dark\:text-white { color: #ffffff; }
  .dark .dark\:text-gray-300 { color: #d1d5db; }
  .dark .dark\:text-horizon-dark { color: var(--color-horizon-dark); }
  .dark .dark\:text-gray-400 { color: #9ca3af; }
  .dark .dark\:text-gray-500 { color: #6b7280; } 
  
  .dark .dark\:border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
  .dark .dark\:border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
  .dark .dark\:border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
  .dark .dark\:border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
  .dark .dark\:border-white { border-color: #ffffff; }
  
  .dark .dark\:hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
  .dark .dark\:hover\:bg-zinc-800:hover { background-color: #27272a; }
  .dark .dark\:hover\:bg-white:hover { background-color: #ffffff; }
  .dark .dark\:hover\:text-white:hover { color: #ffffff; }
  .dark .dark\:hover\:text-horizon-dark:hover { color: var(--color-horizon-dark); }
  
  .dark .dark\:hover\:bg-gray-200:hover { background-color: #e5e7eb; }
  
  .dark .dark\:focus\:border-white:focus { border-color: #ffffff; }
  .dark .dark\:placeholder-gray-600::placeholder { color: #4b5563; }
  
  .dark .dark\:block { display: block; }
  .dark .dark\:hidden { display: none; }

  /* Custom Interactive Utilities */
  .bg-horizon-accent\/10 {
    background-color: color-mix(in srgb, var(--color-horizon-accent, #E65100), transparent 90%);
  }

  .group:hover .group-hover\:bg-horizon-accent {
    background-color: var(--color-horizon-accent, #E65100);
  }

  .group:hover .group-hover\:text-white {
    color: #ffffff;
  }
  
  /* Additional Tailwind-like utilities for missing classes */
  .group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
  }
}