/* ===================================
   GLOBAL STYLES & IMPORTS
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --theme-background: #ffffff;
  --theme-font-color: #111827;
  --card-bg: #ffffff;
  --muted-text: #718096;
  --accent: #e53e3e;        
  --contrast-text: #ffffff;
  --shadow-color: rgba(0,0,0,0.1);
}

/* Dark theme values - activate by setting `data-theme="dark"` on <html> */
[data-theme="dark"] {
  --theme-background: #0b1220;
  --theme-font-color: #e6eef8;
  --card-bg: #0f1724;
  --muted-text: #9aa6b2;
  --accent: #ef4444;
  --contrast-text: #ffffff;
  --shadow-color: rgba(0,0,0,0.4);
}

html {
    scroll-behavior: smooth;
}

body {
  background-color: var(--theme-background);
  color: var(--theme-font-color);
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input {
    width: 100%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

textarea {
    width: 100%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

button {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.dark-theme-btn-div{
    position: fixed;
    right: 0;
    top: 50%;
}

.dark-theme-btn{
    background-color: black;
    opacity: 0.80;
    border: 0px;
    padding: 0.5rem 2rem;
    color: white;
    font-size: medium;
    transition: all 0.5s ease;
}

.dark-theme-btn:hover{
    background-color: #4a5568;
}

/* ===================================
   LAYOUT & CONTAINER
   =================================== */

.border-box {
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    flex: 1;
    min-width: 250px;
}

.column-60 {
    width: 60%;
}

.column-50 {
    width: 50%;
}

.column-33 {
    width: 33.333%;
}

.column-30 {
    width: 30%;
}

.column-25 {
    width: 26%;
}

.column-22 {
    width: 23%;
}

/* ===================================
   NAVIGATION
   =================================== */
.navigation{
   background-color: var(--theme-background);
   color: var(--theme-font-color);
}

nav {
    position: relative;
}

#navigation-buttons a {
    text-decoration: none;
}

#navigation-buttons a:link {
    color: rgb(255, 0, 0);
}

#navigation-buttons a:visited {
    color: var(--theme-font-color);
}

#navigation-buttons a:hover {
    color: rgb(117, 117, 117);
}

.dropdown-div {
    display: none;
}

.dropdown:hover+div {
    display: flex !important;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    padding: 12rem 0rem;
    background-image: url(/images/mainpage2.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-column {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 55%;
    height: auto;
}

.hero-form-column {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    width: 45%;
    height: auto;
}

.hero-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: var(--theme-background);
    padding: 1.5rem;
    width: 75%;
    max-width: 28rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid red;
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    padding: 2rem 0rem;
}

.about-column-left {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    height: auto;
}

.about-column-right {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    height: auto;
}

.feature-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000000;
    border-radius: 25px 0px 25px 0px;
    transition: all 0.5s ease;
}

.feature-icon:hover {
    border-radius: 2px;
    box-shadow: 0 0 15px black;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats {
    padding: 2rem 0rem;
    background-image: url(/images/court-stats.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.stats-card {
    width: 250px;
    height: 225px;
    border-radius: 100px 0px 100px 0px;
    border: 4px solid white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.stats-card:hover {
    width: 250px;
    height: 225px;
    border-radius: 0px 100px 0px 100px;
    box-shadow: 0px 0px 100px white;
}

/* ===================================
   PRACTICE SECTION
   =================================== */

.practice-card {
    width: 32%;
    height: auto;
    background-color: transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
}

.practice-card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.practice-img {
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.practice-img:hover {
    transform: rotate(2deg);
}

.practice-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.service-card {
    width: 25%;
    height: auto;
    background-color: var(--theme-background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
    padding: 2rem;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    border: 1px solid #dc2626;
    margin: auto;
}




#icon-container {
    width: 70px;
    height: 70px;
    border-radius: 25px 0px 25px 0px;
}

/* ===================================
   TEAM SECTION
   =================================== */

.team-card {
    width: 23%;
    height: auto;
    background-color: transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
}

.social-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6b7280;
    width: 2.5rem;
    height: 2.5rem;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    gap: 1rem;
}

#attorrney-social-images {
    width: 40px;
    height: 40px;
}

/* ===================================
   CALL SECTION
   =================================== */

   .call-to-action {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



/* ===================================
   PACKAGES SECTION
   =================================== */

.package-card {
    width: 28%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: var(--theme-background);
}

.package-price {
    font-size: 3.75rem;
    line-height: 1;
    margin-bottom: 0.25rem;
    margin-top: 0.25rem;
    font-weight: 400;
    color: #e53e3e;
}

.package-period {
    width: 100%;
    text-align: center;
    color: #718096;
}

.package-feature {
    width: 100%;
    text-align: center;
    border-top: 1px solid #000000;
    color: #718096;
}

.package-btn {
    background-color: #e53e3e;
    font-size: 1.25rem;
    color: white;
    border: 0;
    border-radius: 0.25rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.package-btn:hover {
    background-color: #792121;
}


/* ===================================
   CONTACT SECTION
   =================================== */
.contact-header {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.contact-column {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.contact-icon-wrapper {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-text-wrapper {
    width: 75%;
    font-size: 0.875rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.contact-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #dc2626;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

#contact-icons {
    width: 60px;
    height: 60px;
}

.form-columns {
    width: 65%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
}

.form-textarea {
    width: 100%;
    height: 100px;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background-color: #dc2626;
    border: 0;
    border-radius: 0.375rem;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #8f3c3c;
}

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

.footer-text {
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 1.5rem;
}



/* ===================================
   BUTTONS
   =================================== */

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 150ms;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #dc2626;
    color: white;
    padding: 0.5rem 1.5rem;
    border: 0;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #751e1e;
}

.btn-secondary {
    background-color: black;
    color: white;
    padding: 1.5rem;
    border: 0;
    border-radius: 0.375rem;
    font-weight: bold;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #333;
}

.card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

/* ===================================
   SHARED/UTILITY CLASSES
   =================================== */

.border-red {
    border-color: #e53e3e;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    width: 60px;
}

.heading-paragraph {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 767px;
}

.text-container {
    width: 100%;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-center-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.margin-left-auto {
    margin-left: 9rem;
}

.margin-top-auto {
    margin-top: 10rem;
}

.margin-bottom-auto {
    margin-bottom: 10rem;
}

/* ===================================
   UTILITY CLASSES - DISPLAY
   =================================== */

.none {
    display: none !important;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

/* ===================================
   UTILITY CLASSES - FLEXBOX
   =================================== */

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.item-center {
    align-self: center;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.items-stretch {
    align-items: stretch;
}

.item-stretch {
    align-self: stretch;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

/* ===================================
   UTILITY CLASSES - GAP
   =================================== */

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-x-1 {
    column-gap: 0.25rem;
}

.gap-x-2 {
    column-gap: 0.5rem;
}

.gap-x-3 {
    column-gap: 0.75rem;
}

.gap-x-4 {
    column-gap: 1rem;
}

.gap-x-5 {
    column-gap: 1.25rem;
}

.gap-x-6 {
    column-gap: 1.5rem;
}

.gap-x-8 {
    column-gap: 2rem;
}

.gap-x-10 {
    column-gap: 2.5rem;
}

.gap-x-12 {
    column-gap: 3rem;
}

.gap-y-1 {
    row-gap: 0.25rem;
}

.gap-y-2 {
    row-gap: 0.5rem;
}

.gap-y-3 {
    row-gap: 0.75rem;
}

.gap-y-4 {
    row-gap: 1rem;
}

.gap-y-5 {
    row-gap: 1.25rem;
}

.gap-y-6 {
    row-gap: 1.5rem;
}

.gap-y-8 {
    row-gap: 2rem;
}

.gap-y-10 {
    row-gap: 2.5rem;
}

.gap-y-12 {
    row-gap: 3rem;
}

/* ===================================
   UTILITY CLASSES - 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-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

/* ===================================
   UTILITY CLASSES - MARGIN
   =================================== */

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.m-3 {
    margin: 0.75rem;
}

.m-4 {
    margin: 1rem;
}

.m-5 {
    margin: 1.25rem;
}

.m-6 {
    margin: 1.5rem;
}

.m-8 {
    margin: 2rem;
}

.m-10 {
    margin: 2.5rem;
}

.m-auto {
    margin: auto;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
}

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

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.ml-0 {
    margin-left: 0;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-4 {
    margin-left: 1rem;
}

.ml-6 {
    margin-left: 1.5rem;
}

.ml-8 {
    margin-left: 2rem;
}

.ml-auto {
    margin-left: auto;
}

.mr-0 {
    margin-right: 0;
}

.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-4 {
    margin-right: 1rem;
}

.mr-6 {
    margin-right: 1.5rem;
}

.mr-8 {
    margin-right: 2rem;
}

.mr-auto {
    margin-right: auto;
}

/* ===================================
   UTILITY CLASSES - PADDING
   =================================== */

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.25rem;
}

.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;
}

.p-10 {
    padding: 2.5rem;
}

.p-12 {
    padding: 3rem;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.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;
}

.px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.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-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-33per {
    padding-top: 32%;
    padding-bottom: 32%;
}

.py-auto {
    padding-top: auto;
    padding-bottom: auto;
}

/* ===================================
   UTILITY CLASSES - WIDTH & HEIGHT
   =================================== */

.w-full {
    width: 100%;
}

.w-screen {
    width: 100vw;
}

.w-auto {
    width: auto;
}

.w-1-2 {
    width: 50%;
}

.w-1-3 {
    width: 33.333333%;
}

.w-20per {
    width: 22%;
}

.w-30per {
    width: 30%;
}

.w-60per {
    width: 60%;
}

.w-2-3 {
    width: 66.666667%;
}

.w-1-4 {
    width: 25%;
}

.w-3-4 {
    width: 75%;
}

.h-full {
    height: 100%;
}

.h-10per {
    height: 10%;
}

.h-20per {
    height: 20%;
}

.h-40per {
    height: 40%;
}

.h-48px {
    height: 48px;
}

.h-100px {
    height: 100px;
}

.h-screen {
    height: 100vh;
}

.h-auto {
    height: auto;
}

.h-fit {
    height: fit-content;
}

.min-w-0 {
    min-width: 0;
}

.min-w-full {
    min-width: 100%;
}

.max-w-xs {
    max-width: 20rem;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-full {
    max-width: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.min-h-screen-100 {
    min-height: 100%;
}

.max-h-screen {
    max-height: 100vh;
}

/* ===================================
   UTILITY CLASSES - TYPOGRAPHY
   =================================== */

.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-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.font-thin {
    font-weight: 100;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

.leading-none {
    line-height: 1;
}

.leading-tight {
    line-height: 1.25;
}

.leading-normal {
    line-height: 1.5;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-loose {
    line-height: 2;
}

/* ===================================
   UTILITY CLASSES - COLORS
   =================================== */

.text-white {
    color: #ffffff;
}

.text-black {
    color: #000000;
}

.text-gray-100 {
    color: #f7fafc;
}

.text-gray-200 {
    color: #edf2f7;
}

.text-gray-300 {
    color: #e2e8f0;
}

.text-gray-400 {
    color: #cbd5e0;
}

.text-gray-500 {
    color: #a0aec0;
}

.text-gray-600 {
    color: #718096;
}

.text-gray-700 {
    color: #4a5568;
}

.text-gray-800 {
    color: #2d3748;
}

.text-gray-900 {
    color: #1a202c;
}

.text-blue-500 {
    color: #4299e1;
}

.text-blue-600 {
    color: #3182ce;
}

.text-blue-700 {
    color: #2b6cb0;
}

.text-red-500 {
    color: #f56565;
}

.text-red-600 {
    color: #e53e3e;
}

.text-green-500 {
    color: #48bb78;
}

.text-green-600 {
    color: #38a169;
}

.text-yellow-500 {
    color: #ecc94b;
}

.text-purple-500 {
    color: #9f7aea;
}

.bg-transparent {
    background-color: transparent;
}

.bg-white {
    background-color: var(--theme-background);
}

.bg-black {
    background-color: #000000;
}

.bg-gray-100 {
    background-color: #f7fafc;
}

.bg-gray-200 {
    background-color: #edf2f7;
}

.bg-gray-300 {
    background-color: #e2e8f0;
}

.bg-gray-400 {
    background-color: #f3f3f3;
}

.bg-gray-500 {
    background-color: #a0aec0;
}

.bg-gray-600 {
    background-color: #718096;
}

.bg-gray-700 {
    background-color: #4a5568;
}

.bg-gray-800 {
    background-color: #2d3748;
}

.bg-gray-900 {
    background-color: #1a202c;
}

.bg-blue-500 {
    background-color: #4299e1;
}

.bg-blue-600 {
    background-color: #3182ce;
}

.bg-blue-700 {
    background-color: #2b6cb0;
}

.bg-red-500 {
    background-color: #f56565;
}

.bg-red-600 {
    background-color: #e53e3e;
}

.bg-green-500 {
    background-color: #48bb78;
}

.bg-green-600 {
    background-color: #38a169;
}

.bg-yellow-500 {
    background-color: #ecc94b;
}

.bg-purple-500 {
    background-color: #9f7aea;
}

/* ===================================
   UTILITY CLASSES - BORDERS
   =================================== */

.border {
    border-width: 1px;
    border-style: solid;
}

.border-0 {
    border-width: 0;
}

.border-2 {
    border-width: 2px;
    border-style: solid;
}

.border-4 {
    border-width: 4px;
    border-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-l {
    border-left-width: 1px;
    border-left-style: solid;
}

.border-r {
    border-right-width: 1px;
    border-right-style: solid;
}

.border-gray-200 {
    border-color: #edf2f7;
}

.border-gray-300 {
    border-color: #e2e8f0;
}

.border-gray-400 {
    border-color: #cbd5e0;
}

.border-gray-500 {
    border-color: #a0aec0;
}

.border-blue-500 {
    border-color: #4299e1;
}

.border-blue-600 {
    border-color: #3182ce;
}

.border-red-600 {
    border-color: #e53e3e;
}

.rounded-none {
    border-radius: 0;
}

.rounded-sm {
    border-radius: 0.125rem;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* ===================================
   UTILITY CLASSES - SHADOWS & EFFECTS
   =================================== */

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.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-none {
    box-shadow: none;
}

/* ===================================
   UTILITY CLASSES - POSITION
   =================================== */

.static {
    position: static;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.top-12 {
    top: 4rem;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* ===================================
   UTILITY CLASSES - OVERFLOW & OPACITY
   =================================== */

.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.overflow-scroll {
    overflow: scroll;
}

.overflow-x-auto {
    overflow-x: auto;
}

.overflow-y-auto {
    overflow-y: auto;
}

.opacity-0 {
    opacity: 0;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-100 {
    opacity: 1;
}

/* ===================================
   UTILITY CLASSES - CURSOR
   =================================== */

.cursor-auto {
    cursor: auto;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

/* ===================================
   UTILITY CLASSES - TRANSITIONS
   =================================== */

.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-all {
    transition-property: all;
    transition-duration: 150ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-150 {
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   UTILITY CLASSES - HOVER STATES
   =================================== */

.hover\:bg-blue-600:hover {
    background-color: #3182ce;
}

.hover\:bg-blue-700:hover {
    background-color: #2b6cb0;
}

.hover\:bg-gray-100:hover {
    background-color: #f7fafc;
}

.hover\:bg-gray-200:hover {
    background-color: #edf2f7;
}

.hover\:text-blue-600:hover {
    color: #3182ce;
}

.hover\:text-white:hover {
    color: var(--theme-font-color);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

/* map important UI pieces to variables */
.bg-white { background-color: var(--theme-background); }
.card,
.hero-form,
.package-card,
.service-card {
  background-color: var(--card-bg);
}

/* accents and borders */
.border-red { border-color: var(--accent); }
#icon-container,
.contact-icon-box {
  border-color: var(--accent);
}

/* important UI colors */
.package-price { color: var(--accent); }
.form-submit,
.btn-primary {
  background-color: var(--accent);
  color: var(--contrast-text);
}

/* muted text */
.text-gray-600 { color: var(--muted-text); }

/* utility color classes mapped to theme variables so components using them react to theme */
.text-white { color: var(--contrast-text); }
.text-black { color: var(--theme-font-color); }

/* shadows should react slightly to theme */
.shadow,
.shadow-lg,
.shadow-md {
  box-shadow: 0 10px 15px -3px var(--shadow-color);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media(max-width:756px) {
    .row {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .nav {
        display: none !important;
    }

    .hero-column {
        width: 100%;
    }

    .hero-form-column {
        width: 100%;
        margin-bottom: 16px;
    }

    .hero-form {
        width: 90%;
    }

    .dropdown-div {
        display: flex;
    }

    .flex-grow-1 {
        flex-grow: 1;
    }

    .flex-grow-2 {
        flex-grow: 2;
    }

    .flex-shrink-2 {
        flex-shrink: 2;
    }

    .practice-card {
        width: 100%;
    }

    .team-card {
        width: 100%;
    }

    .package-card {
        width: 90%;
    }

    .contact-column {
        width: 100%;
    }

    .form-columns {
        width: 100%;
        gap: 0.75rem;
    }

    .column-60 {
        width: 100%;
    }

    .column-50 {
        width: 100%;
    }

    .column-33 {
        width: 100%;
    }

    .column-30 {
        width: 100%;
    }

    .column-25 {
        width: 80%;
    }

    .column-22 {
        width: 100%;
    }
}
