:root {
    --homepage--bg-color: #f0f0f0;
    --homepage--darkgray-color: #C3C3C3;
    --homepage--primarylight-color: #7AE9FF;
    --homepage--primary-color: #03d3fd;
    --homepage--secondary-color: #003C56;
}

/* Colors & Backgrounds */
.bg-primary { background-color: var(--homepage--primary-color); }
.bg-secondary { background-color: var(--homepage--secondary-color); }
.bg-white { background-color: #fff; }
.bg-gray { background-color: var(--homepage--bg-color); }
.bg-linear-primary { background: linear-gradient(#03d3fd 0%, #7ae9ff 100%); }
.bg-linear-cta { background: linear-gradient(#03D3FD 0%, #008CCA 100%); }
.bg-primary-light { background-color: var(--homepage--primarylight-color); }
.bg-secondary-card { background-color: rgba(255, 255, 255, 0.05); }

.text-primary { color: var(--homepage--primary-color); }
.text-secondary { color: var(--homepage--secondary-color); }
.text-white { color: #fff; }
.text-black { color: #000; }
.text-primary-light { color: var(--homepage--primarylight-color); }

/* Hover States */
.hover\:bg-primary:hover { background-color: var(--homepage--primary-color); }
.hover\:bg-primary-light:hover { background-color: #d4f5fc; }
.hover\:text-secondary:hover { color: var(--homepage--secondary-color); }
.hover\:text-white:hover { color: #fff; }

/* Typography */
.font-bold { font-weight: 700; }
.leading-none { line-height: 1; }
.leading-normal { line-height: 1.5; }
.no-underline { text-decoration: none; }

/* Font Sizes */
.text-50 { font-size: 50px; }
.text-40 { font-size: 40px; }
.text-35 { font-size: 35px; }
.text-30 { font-size: 30px; }
.text-25 { font-size: 25px; }
.text-20 { font-size: 20px; }
.text-18 { font-size: 18px; }
.text-base { font-size: 16px; }
.text-sm { font-size: 0.875rem; }

/* Layout & Container */
.page-container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.grid { display: grid; }
.flex { display: flex; }

.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.cursor-pointer { cursor: pointer; }

.lg\:br { display: none; }

/* Positioning */
.relative { position: relative; }

/* Flexbox & Grid */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }

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

.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

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

/* Gap */
.gap-0 { gap: 0; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

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

.pl-8 { padding-left: 2rem; }
.pb-8 { padding-bottom: 2rem; }
.pt-2 { padding-top: 0.5rem; }

.m-0 { margin: 0; }
.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; }
.mt-8 { margin-top: 2rem; }

.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.-space-x-2> :not([hidden])~ :not([hidden]) { margin-left: -2rem; }
.space-y-4> :not([hidden])~ :not([hidden]) { margin-top: 1rem; }

/* Sizing */
.w-full { width: 100%; }
.w-12 { width: 3rem; }
.w-20 { width: 5rem; }
.w-8 { width: 2rem; }

.h-full { height: 100%; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.h-8 { height: 2rem; }
.h-auto { height: auto; }

/* Borders & Rounded */
.border { border-width: 1px; border-style: solid; }
.border-white { border-color: #fff; }
.border-secondary-light { border-color: rgba(255, 255, 255, 0.1); }
.border-gray { border-color: #B7B7B7; }
.border-b-gray { border-bottom: 1px solid #DBDBDB !important; }
.border-2 { border-width: 2px; }

.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Effects */
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

.shadow-sm { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 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); }

.transition-shadow { transition-property: box-shadow; transition-duration: 300ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-duration: 300ms; }
.transition-transform { transition-property: transform; transition-duration: 300ms; }

/* Components */
.accordion-content { display: none; }
.accordion-item.active .accordion-content { display: block; }
.accordion-item.active .arrow { transform: rotate(180deg); color: var(--homepage--primary-color); }
.accordion-item .arrow { display: inline-block; transition: transform 0.3s; }

.masonry-grid { column-count: 1; }
.masonry-item { break-inside: avoid; margin-bottom: 1.5rem; }

/* Responsive Utilities */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .masonry-grid { column-count: 2; column-gap: 1.5rem; }
}

@media (min-width: 992px) {
    .lg\:block { display: block; }
    .lg\:hidden { display: none; }
    .lg\:flex { display: flex; }
    .lg\:br { display: inline; }
    .sm\:br { display: none; }

    .lg\:text-left { text-align: left; }
    .lg\:text-center { text-align: center; }
    .lg\:text-right { text-align: right; }

    .lg\:text-50 { font-size: 50px !important; }
    .lg\:text-40 { font-size: 40px !important; }
    .lg\:text-35 { font-size: 35px !important; }
    .lg\:text-30 { font-size: 30px !important; }
    .lg\:text-25 { font-size: 25px !important; }
    .lg\:text-20 { font-size: 20px !important; }

    .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\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

    .lg\:col-span-4 { grid-column: span 4 / span 4; }
    .lg\:col-span-8 { grid-column: span 8 / span 8; }

    .lg\:gap-12 { gap: 3rem; }

    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }

    .lg\:mb-0 { margin-bottom: 0; }
    .lg\:my-12 { margin-top: 3rem; margin-bottom: 3rem; }
}
