/* =============================================
   AUSSIE MOVE MASTERS — Purged Static CSS
   Replaces Tailwind CDN (~124KB → ~18KB)
   ============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, html { margin: 0; overflow-x: hidden; width: 100%; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; }
a { text-decoration: none; }
section[id] { scroll-margin-top: 5rem; }

/* ===== FONTS ===== */
.font-sans { font-family: Inter, sans-serif; }
.font-heading, h1.font-heading, h2.font-heading { font-family: Outfit, sans-serif; }
body { font-family: Inter, sans-serif; color: #54595F; }

/* ===== CUSTOM ANIMATIONS ===== */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-anim {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.animate-fade-in-up { animation: fade-in-up 0.8s ease-out forwards; }
.animate-pulse { animation: pulse-anim 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* ===== CUSTOM COMPONENT CLASSES ===== */
.ads-hide { display: none !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.hover-jelly:hover { transform: scale(1.03); transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.service-img-container { aspect-ratio: 16/9; overflow: hidden; background: #eee; }
input[type="date"] { text-align: left; -webkit-appearance: none; display: block; }

/* ===== DISPLAY ===== */
.flex        { display: flex; }
.grid        { display: grid; }
.block       { display: block; }
.hidden      { display: none; }
.inline-block{ display: inline-block; }

/* ===== FLEX ===== */
.flex-col    { flex-direction: column; }
.flex-wrap   { flex-wrap: wrap; }
.flex-grow   { flex-grow: 1; }
.shrink-0    { flex-shrink: 0; }
.items-center    { align-items: center; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }

/* ===== ORDER ===== */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* ===== GRID ===== */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.col-span-1  { grid-column: span 1 / span 1; }

/* ===== POSITIONING ===== */
.fixed    { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0  { top: 0; right: 0; bottom: 0; left: 0; }
.top-0    { top: 0; }
.left-0   { left: 0; }
.right-0  { right: 0; }
.left-1\/2  { left: 50%; }
.-top-4     { top: -1rem; }
.-bottom-4  { bottom: -1rem; }
.-right-2   { right: -0.5rem; }
.z-0  { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* ===== SIZING ===== */
.w-full  { width: 100%; }
.w-auto  { width: auto; }
.w-fit   { width: fit-content; }
.w-1     { width: 0.25rem; }
.h-full  { height: 100%; }
.h-1     { height: 0.25rem; }
.h-12    { height: 3rem; }
.h-16    { height: 4rem; }
.min-h-screen { min-height: 100vh; }
.max-w-sm  { max-width: 24rem; }
.max-w-xl  { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-7xl { max-width: 80rem; }

/* ===== MARGIN ===== */
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-0    { margin-left: 0; margin-right: 0; }
.mt-1  { margin-top: 0.25rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-1  { margin-bottom: 0.25rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-3  { margin-bottom: 0.75rem; }
.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; }
.ml-4  { margin-left: 1rem; }

/* ===== PADDING ===== */
.p-2  { padding: 0.5rem; }
.p-3  { padding: 0.75rem; }
.p-4  { padding: 1rem; }
.p-5  { padding: 1.25rem; }
.p-6  { padding: 1.5rem; }
.p-8  { padding: 2rem; }
.px-4 { padding-left: 1rem;   padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-8 { padding-left: 2rem;   padding-right: 2rem; }
.py-1  { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2  { padding-top: 0.5rem;  padding-bottom: 0.5rem; }
.py-4  { padding-top: 1rem;    padding-bottom: 1rem; }
.py-12 { padding-top: 3rem;    padding-bottom: 3rem; }
.pt-2  { padding-top: 0.5rem; }
.pt-4  { padding-top: 1rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pb-5  { padding-bottom: 1.25rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-32 { padding-bottom: 8rem; }

/* ===== GAP ===== */
.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-1 { row-gap: 0.25rem; }
.gap-y-3 { row-gap: 0.75rem; }

/* ===== SPACE ===== */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ===== TYPOGRAPHY ===== */
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-extrabold{ font-weight: 800; }
.font-black    { font-weight: 900; }
.text-xs   { font-size: 0.75rem;  line-height: 1rem; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem;     line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem;  line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem;   line-height: 2rem; }
.text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem;  line-height: 2.5rem; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.uppercase   { text-transform: uppercase; }
.italic      { font-style: italic; }
.underline   { text-decoration-line: underline; }
.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-tighter{ letter-spacing: -0.05em; }
.tracking-wider  { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.text-\[\#54595F\] { color: #54595F; }
.text-\[10px\]     { font-size: 10px; line-height: 1.4; }
.text-\[11px\]     { font-size: 11px; line-height: 1.4; }

/* ===== TEXT COLORS ===== */
.text-white    { color: #fff; }
.text-dark     { color: #08172E; }
.text-dark\/70 { color: rgba(8,23,46,0.7); }
.text-dark\/80 { color: rgba(8,23,46,0.8); }
.text-primary  { color: #1A776F; }
.text-secondary{ color: #F9A730; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }

/* ===== BACKGROUND COLORS ===== */
.bg-white      { background-color: #fff; }
.bg-white\/50  { background-color: rgba(255,255,255,0.5); }
.bg-white\/80  { background-color: rgba(255,255,255,0.8); }
.bg-white\/95  { background-color: rgba(255,255,255,0.95); }
.bg-dark       { background-color: #08172E; }
.bg-primary    { background-color: #1A776F; }
.bg-secondary  { background-color: #F9A730; }
.bg-bg-light   { background-color: #F6F3EC; }
.bg-gray-50    { background-color: #f9fafb; }

/* ===== BORDERS ===== */
.border     { border-width: 1px;  border-style: solid; }
.border-2   { border-width: 2px;  border-style: solid; }
.border-t   { border-top-width: 1px; border-top-style: solid; }
.border-t-8 { border-top-width: 8px; border-top-style: solid; }
.border-transparent  { border-color: transparent; }
.border-white        { border-color: #fff; }
.border-white\/5     { border-color: rgba(255,255,255,0.05); }
.border-primary      { border-color: #1A776F; }
.border-secondary    { border-color: #F9A730; }
.border-gray-100     { border-color: #f3f4f6; }
.border-gray-200     { border-color: #e5e7eb; }

/* ===== BORDER RADIUS ===== */
.rounded     { border-radius: 0.25rem; }
.rounded-lg  { border-radius: 0.5rem; }
.rounded-xl  { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full{ border-radius: 9999px; }

/* ===== SHADOWS ===== */
.shadow-sm      { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-md      { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-lg      { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl      { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl     { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-card-lg { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15); }

/* ===== VISUAL EFFECTS ===== */
.opacity-20    { opacity: 0.2; }
.opacity-60    { opacity: 0.6; }
.grayscale     { filter: grayscale(100%); }
.overflow-hidden { overflow: hidden; }
.object-cover  { object-fit: cover; }
.object-contain{ object-fit: contain; }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(4px);  -webkit-backdrop-filter: blur(4px); }

/* ===== TRANSFORMS ===== */
.rotate-3         { transform: rotate(3deg); }
.-translate-x-1\/2{ transform: translateX(-50%); }
.transform        { /* base transform class — real transforms applied via specific utilities */ }

/* ===== SCALE (for md:scale-105 featured card) ===== */
.scale-105 { transform: scale(1.05); }

/* ===== TRANSITIONS ===== */
.transition     { transition-property: color, background-color, border-color, opacity, box-shadow, transform, filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-500   { transition-duration: 500ms; }

/* ===== OUTLINE / FOCUS RING ===== */
.outline-none { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(26, 119, 111, 0.2); }

/* ===== HOVER STATES ===== */
.hover\:bg-dark:hover          { background-color: #08172E; }
.hover\:bg-gray-50:hover       { background-color: #f9fafb; }
.hover\:bg-gray-100:hover      { background-color: #f3f4f6; }
.hover\:bg-primary:hover       { background-color: #1A776F; }
.hover\:bg-secondary-dark:hover{ background-color: #D97706; }
.hover\:text-primary:hover     { color: #1A776F; }

/* ===== GROUP HOVER ===== */
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

/* ===== SCROLL ===== */
.scroll-smooth { scroll-behavior: smooth; }

/* ====================================================
   RESPONSIVE BREAKPOINTS
   ==================================================== */

/* sm: 640px */
@media (min-width: 640px) {
  .sm\:flex-row    { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* md: 768px */
@media (min-width: 768px) {
  .md\:block        { display: block; }
  .md\:col-span-2   { grid-column: span 2 / span 2; }
  .md\:gap-10       { gap: 2.5rem; }
  .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\:h-20         { height: 5rem; }
  .md\:h-24         { height: 6rem; }
  .md\:justify-start{ justify-content: flex-start; }
  .md\:mx-0         { margin-left: 0; margin-right: 0; }
  .md\:p-8          { padding: 2rem; }
  .md\:px-6         { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:py-2         { padding-top: 0.5rem;  padding-bottom: 0.5rem; }
  .md\:py-3         { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .md\:py-20        { padding-top: 5rem;    padding-bottom: 5rem; }
  .md\:scale-105    { transform: scale(1.05); }
  .md\:text-4xl     { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl     { font-size: 3rem;    line-height: 1; }
  .md\:text-7xl     { font-size: 4.5rem;  line-height: 1; }
  .md\:text-base    { font-size: 1rem;    line-height: 1.5rem; }
  .md\:text-lg      { font-size: 1.125rem;line-height: 1.75rem; }
  .md\:text-left    { text-align: left; }
  .md\:text-sm      { font-size: 0.875rem;line-height: 1.25rem; }
  .md\:text-xl      { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-xs      { font-size: 0.75rem; line-height: 1rem; }
  .md\:-bottom-6    { bottom: -1.5rem; }
  .md\:-right-6     { right: -1.5rem; }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .lg\:col-span-5   { grid-column: span 5 / span 5; }
  .lg\:col-span-7   { grid-column: span 7 / span 7; }
  .lg\:flex         { display: flex; }
  .lg\:gap-16       { gap: 4rem; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:justify-start{ justify-content: flex-start; }
  .lg\:mx-0         { margin-left: 0; margin-right: 0; }
  .lg\:order-1      { order: 1; }
  .lg\:order-2      { order: 2; }
  .lg\:pb-12        { padding-bottom: 3rem; }
  .lg\:pb-20        { padding-bottom: 5rem; }
  .lg\:pt-20        { padding-top: 5rem; }
  .lg\:text-left    { text-align: left; }
}

/* xl: 1280px */
@media (min-width: 1280px) {
  .xl\:grid-cols-5  { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
