/* Creator Site ID: c0c85613-663e-4775-bda2-8c41af219588 */
/**
 * Design System
 * Extracted from: Qwest Crane Hire
 */

/* ==========================================================================
   1. Design Tokens (CSS Custom Properties)
   ========================================================================== */

:root {
    /* Colors - Primary */
    --color-primary: #1a4d7a;
    --color-primary-dark: #0f3554;
    --color-primary-light: #2a5d8a;

    /* Colors - Secondary */
    --color-secondary: #f59e0b;
    --color-secondary-dark: #d97706;
    --color-secondary-light: #fbbf24;

    /* Colors - Neutral */
    --color-background: #ffffff;
    --color-background-alt: #f9fafb;
    --color-background-dark: #0f3554;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-text-on-dark: #ffffff;
    --color-border: #e5e7eb;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Bebas Neue', Impact, sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.0625rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 2.5rem;
    --text-6xl: 3.5rem;
    --text-7xl: 4.5rem;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* ==========================================================================
   2. Base Styles
   ========================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

h1 {
    font-size: var(--text-6xl);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

h2 {
    font-size: var(--text-5xl);
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
}

p {
    margin: 0 0 var(--space-4) 0;
    font-size: var(--text-lg);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   3. Component Classes (Semantic)
   ========================================================================== */

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 122, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-md);
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--color-text-on-dark);
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--color-secondary);
}

.nav-links {
    display: flex;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    color: var(--color-text-on-dark);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-secondary);
}

.nav-link:hover:after {
    width: 100%;
}

/* Hero */
.hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.95), rgba(15, 53, 84, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%231a4d7a" width="100" height="100"/></svg>') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    pointer-events: none;
}

.hero-content {
    color: var(--color-text-on-dark);
    position: relative;
    z-index: 2;
    padding: var(--space-32) 0 var(--space-16);
}

.hero-title {
    font-size: var(--text-7xl);
    margin-bottom: var(--space-6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.hero-highlight {
    color: var(--color-secondary);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: var(--space-10);
    opacity: 0.95;
    max-width: 700px;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-4) var(--space-10);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--text-lg);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-text-on-dark);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--color-background);
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-text-on-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

/* Sections */
.section {
    width: 100%;
    padding: var(--space-24) 0;
}

.section-alt {
    background-color: var(--color-background-alt);
}

.section-dark {
    background-color: var(--color-primary);
    color: var(--color-text-on-dark);
}

.section-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text-on-dark);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header h2 {
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.section-header p {
    color: var(--color-text-light);
    font-size: var(--text-xl);
    margin: 0;
}

.section-dark .section-header h2,
.section-dark .section-header p,
.section-gradient .section-header h2,
.section-gradient .section-header p {
    color: var(--color-text-on-dark);
}

/* Cards */
.card {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-bordered {
    border-top: 4px solid var(--color-secondary);
}

.card-title {
    color: var(--color-primary);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.card-text {
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Service Card */
.service-card {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--color-secondary);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-text-on-dark);
}

/* Fleet Card */
.fleet-card {
    background: var(--color-background-alt);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.fleet-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-3px);
}

.fleet-icon {
    width: 48px;
    height: 48px;
    background: var(--color-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.fleet-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-text-on-dark);
}

.fleet-stat {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text-on-dark);
    padding: var(--space-12);
    border-radius: var(--radius-xl);
    text-align: center;
}

.fleet-stat-number {
    font-size: 3.5rem;
    font-family: var(--font-display);
    color: var(--color-secondary);
    margin-bottom: var(--space-2);
}

.fleet-stat-text {
    font-size: var(--text-xl);
    margin: 0;
    opacity: 0.95;
}

/* Safety Feature */
.safety-feature {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.safety-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.safety-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-text-on-dark);
}

.safety-feature h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-2);
}

.safety-feature p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Location Card */
.location-card {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.location-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.location-marker {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
}

.location-marker svg {
    width: 32px;
    height: 32px;
    fill: var(--color-text-on-dark);
}

.location-title {
    color: var(--color-primary);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.location-state {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    font-weight: 600;
    margin: 0;
}

/* Value Tags */
.value-tag {
    background: var(--color-background-alt);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    text-align: center;
    font-weight: 600;
    color: var(--color-primary);
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.value-tag:hover {
    border-color: var(--color-secondary);
    background: var(--color-background);
}

/* Image Container */
.image-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stat Badge */
.stat-badge {
    position: absolute;
    bottom: var(--space-8);
    left: var(--space-8);
    background: rgba(26, 77, 122, 0.95);
    color: var(--color-text-on-dark);
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.stat-badge-number {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--color-secondary);
    margin-bottom: var(--space-1);
}

.stat-badge-text {
    margin: 0;
    font-size: var(--text-sm);
}

/* Client Logo */
.client-logo {
    background: var(--color-background);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-text-light);
    font-size: var(--text-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid var(--color-border);
}

.client-logo:hover {
    border-color: var(--color-secondary);
    transform: scale(1.05);
}

/* Contact Item */
.contact-item {
    display: flex;
    gap: var(--space-6);
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--color-secondary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-text-on-dark);
}

.contact-item h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.contact-item p,
.contact-item a {
    opacity: 0.95;
    font-size: var(--text-lg);
    margin: 0;
}

.contact-item a:hover {
    color: var(--color-secondary);
}

/* Contact CTA Box */
.contact-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-cta h3 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.contact-cta p {
    font-size: var(--text-xl);
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

.contact-cta .btn-primary {
    background: var(--color-background);
    color: var(--color-primary);
}

.contact-cta .btn-primary:hover {
    background: var(--color-secondary);
    color: var(--color-text-on-dark);
}

/* Footer */
footer {
    width: 100%;
    background: var(--color-background-dark);
    color: var(--color-text-on-dark);
    padding: var(--space-12) 0 var(--space-6);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.footer-brand-accent {
    color: var(--color-secondary);
}

.footer-text {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-heading {
    margin-bottom: var(--space-4);
    font-size: var(--text-xl);
}

.footer-links {
    display: grid;
    gap: var(--space-3);
}

.footer-link {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-6);
    text-align: center;
    opacity: 0.7;
    margin-top: var(--space-8);
}

/* ==========================================================================
   4. Utility Classes
   ========================================================================== */

/* Container - Centered content with max-width */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-8);
    padding-right: var(--space-8);
}

.container-narrow {
    max-width: 800px;
}

.container-wide {
    max-width: 1400px;
}

/* Display */
.flex {
    display: flex;
}

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

.grid {
    display: grid;
}

.block {
    display: block;
}

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

.hidden {
    display: none;
}

/* Flex Direction */
.flex-row {
    flex-direction: row;
}

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

/* Flex Wrap */
.flex-wrap {
    flex-wrap: wrap;
}

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

/* Flex Alignment */
.items-start {
    align-items: flex-start;
}

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

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

.items-stretch {
    align-items: 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;
}

/* Gap */
.gap-1 {
    gap: var(--space-1);
}

.gap-2 {
    gap: var(--space-2);
}

.gap-3 {
    gap: var(--space-3);
}

.gap-4 {
    gap: var(--space-4);
}

.gap-6 {
    gap: var(--space-6);
}

.gap-8 {
    gap: var(--space-8);
}

.gap-12 {
    gap: var(--space-12);
}

.gap-16 {
    gap: var(--space-16);
}

/* Grid Columns - Responsive with auto-fit */
.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.grid-cols-6 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
}

/* Fixed Grid Columns (for specific layouts) */
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Grid Template (custom layouts) */
.grid-1-2 {
    grid-template-columns: 1fr 2fr;
}

.grid-2-1 {
    grid-template-columns: 2fr 1fr;
}

/* Text Alignment */
.text-left {
    text-align: left;
}

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

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

/* Margin */
.m-0 {
    margin: 0;
}

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

.my-4 {
    margin-top: var(--space-4);
    margin-bottom: var(--space-4);
}

.my-8 {
    margin-top: var(--space-8);
    margin-bottom: var(--space-8);
}

.my-12 {
    margin-top: var(--space-12);
    margin-bottom: var(--space-12);
}

.my-16 {
    margin-top: var(--space-16);
    margin-bottom: var(--space-16);
}

.mb-2 {
    margin-bottom: var(--space-2);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.mb-12 {
    margin-bottom: var(--space-12);
}

.mb-16 {
    margin-bottom: var(--space-16);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mt-12 {
    margin-top: var(--space-12);
}

.mt-16 {
    margin-top: var(--space-16);
}

/* Padding */
.p-0 {
    padding: 0;
}

.p-4 {
    padding: var(--space-4);
}

.p-6 {
    padding: var(--space-6);
}

.p-8 {
    padding: var(--space-8);
}

.p-12 {
    padding: var(--space-12);
}

.px-4 {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

.px-6 {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.px-8 {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
}

.py-4 {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.py-6 {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
}

.py-8 {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

.py-12 {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
}

.py-16 {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.py-24 {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
}

.pt-32 {
    padding-top: var(--space-32);
}

.pb-16 {
    padding-bottom: var(--space-16);
}

/* Width */
.w-full {
    width: 100%;
}

.w-auto {
    width: auto;
}

/* Max Width */
.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-3xl {
    max-width: 48rem;
}

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

.max-w-5xl {
    max-width: 64rem;
}

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

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

/* Background */
.bg-white {
    background-color: var(--color-background);
}

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

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

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

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

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

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

/* Text Color */
.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-white {
    color: var(--color-text-on-dark);
}

.text-muted {
    color: var(--color-text-light);
}

.text-dark {
    color: var(--color-text);
}

/* Font Weight */
.font-light {
    font-weight: 300;
}

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

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

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

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

/* Font Family */
.font-sans {
    font-family: var(--font-sans);
}

.font-display {
    font-family: var(--font-display);
}

/* Font Size */
.text-xs {
    font-size: var(--text-xs);
}

.text-sm {
    font-size: var(--text-sm);
}

.text-base {
    font-size: var(--text-base);
}

.text-lg {
    font-size: var(--text-lg);
}

.text-xl {
    font-size: var(--text-xl);
}

.text-2xl {
    font-size: var(--text-2xl);
}

.text-3xl {
    font-size: var(--text-3xl);
}

.text-4xl {
    font-size: var(--text-4xl);
}

.text-5xl {
    font-size: var(--text-5xl);
}

.text-6xl {
    font-size: var(--text-6xl);
}

.text-7xl {
    font-size: var(--text-7xl);
}

/* Line Height */
.leading-tight {
    line-height: 1.2;
}

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

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

/* Letter Spacing */
.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-normal {
    letter-spacing: 0;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.5px;
}

.tracking-widest {
    letter-spacing: 1px;
}

/* Border Radius */
.rounded {
    border-radius: var(--radius-md);
}

.rounded-sm {
    border-radius: var(--radius-sm);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-2xl {
    border-radius: var(--radius-2xl);
}

.rounded-full {
    border-radius: var(--radius-full);
}

/* Shadow */
.shadow-none {
    box-shadow: none;
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl);
}

/* Opacity */
.opacity-0 {
    opacity: 0;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-95 {
    opacity: 0.95;
}

.opacity-100 {
    opacity: 1;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

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

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

/* Z-Index */
.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.z-100 {
    z-index: 100;
}

.z-1000 {
    z-index: 1000;
}

/* Border */
.border {
    border: 1px solid var(--color-border);
}

.border-2 {
    border: 2px solid var(--color-border);
}

.border-t {
    border-top: 1px solid var(--color-border);
}

.border-t-4 {
    border-top: 4px solid;
}

.border-primary {
    border-color: var(--color-primary);
}

.border-secondary {
    border-color: var(--color-secondary);
}

.border-transparent {
    border-color: transparent;
}

/* Transition */
.transition {
    transition: var(--transition);
}

.transition-fast {
    transition: var(--transition-fast);
}

.transition-slow {
    transition: var(--transition-slow);
}

/* Transform */
.transform-hover:hover {
    transform: translateY(-5px);
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* User Select */
.select-none {
    user-select: none;
}

/* Object Fit */
.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Pointer Events */
.pointer-events-none {
    pointer-events: none;
}

/* Backdrop Filter */
.backdrop-blur {
    backdrop-filter: blur(10px);
}

/* ==========================================================================
   5. WordPress Full-Width Support
   ========================================================================== */

.alignfull {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

section.alignfull,
.hero.alignfull,
.section.alignfull,
nav.alignfull,
header.alignfull,
footer.alignfull {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: 0;
    padding-right: 0;
}

/* ==========================================================================
   6. Responsive (Mobile-First)
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --text-6xl: 3rem;
        --text-7xl: 3.5rem;
    }

    .nav-links {
        gap: var(--space-6);
    }

    .grid-cols-2,
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

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

    .grid-1-2,
    .grid-2-1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2rem;
        --text-6xl: 2.5rem;
        --text-7xl: 2.8rem;
    }

    .container {
        padding-left: var(--space-6);
        padding-right: var(--space-6);
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        padding: var(--space-24) 0 var(--space-12);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .grid-cols-3,
    .grid-3,
    .grid-cols-4,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: var(--space-16) 0;
    }

    .section-header {
        margin-bottom: var(--space-12);
    }
}

@media (max-width: 480px) {
    :root {
        --text-4xl: 1.75rem;
        --text-5xl: 1.75rem;
        --text-6xl: 2rem;
        --text-7xl: 2.25rem;
    }

    .grid-cols-6,
    .grid-6 {
        grid-template-columns: 1fr;
    }
}