/* Smart WiFi - Compiled Tailwind CSS */

/* Basic Reset & Tailwind-like Utilities */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f9fafb;
    color: #111827;
}

/* Custom Tailwind Colors - Primary, Accent, Secondary, Success, Warning, Light */

/* Primary Colors (Dark Blue) */
.bg-primary {
    background-color: #003049;
}

.text-primary {
    color: #003049;
}

.hover\:text-primary:hover {
    color: #003049;
}

.hover\:bg-primary:hover {
    background-color: #003049;
}

/* Accent Colors (Red) */
.bg-accent {
    background-color: #c1121f;
}

.text-accent {
    color: #c1121f;
}

.hover\:text-accent:hover {
    color: #c1121f;
}

.hover\:bg-accent:hover {
    background-color: #c1121f;
}

.hover\:bg-red-600:hover {
    background-color: #dc2626;
}

.hover\:text-red-600:hover {
    color: #dc2626;
}

/* Secondary Colors (Light Blue) */
.bg-secondary {
    background-color: #669bbc;
}

.text-secondary {
    color: #669bbc;
}

/* Success Colors (Green) */
.text-success {
    color: #2a9d8f;
}

/* Warning Colors (Orange) */
.text-warning {
    color: #f77f00;
}

/* Light Colors (Cream) */
.text-light {
    color: #fdf0d5;
}

.hover\:text-light:hover {
    color: #fdf0d5;
}

/* Primary Dark for hover */
.hover\:bg-primary-dark:hover {
    background-color: #002438;
}

/* Footer Colors */
.border-gray-600 {
    border-color: #4b5563;
}

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

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

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

.pt-8 {
    padding-top: 2rem;
}

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

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

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

/* Responsive Grid - Footer */
@media (min-width: 768px) {
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Flex utilities */
.justify-between {
    justify-content: space-between;
}

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

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

@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:mt-0 {
        margin-top: 0;
    }
}

/* Custom Colors */
.bg-gradient-to-r {
    background: linear-gradient(to right, #003049, #669bbc);
}

.from-primary {
    --tw-gradient-from: #003049;
    --tw-gradient-to: #669bbc;
}

.to-secondary {
    --tw-gradient-to: #669bbc;
}

.text-accent {
    color: #c1121f;
}

.text-light {
    color: #fdf0d5;
}

.bg-accent {
    background-color: #c1121f;
}

.text-primary {
    color: #003049;
}

.bg-primary {
    background-color: #003049;
}

.text-secondary {
    color: #669bbc;
}

.bg-secondary {
    background-color: #669bbc;
}

.bg-primary-dark {
    background-color: #002438;
}

.hover\:bg-primary-dark:hover {
    background-color: #002438;
}

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

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

.hover\:text-red-600:hover {
    color: #dc2626;
}

/* Grid Utilities */
.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));
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

/* Display & Layout */
.block {
    display: block;
}

.w-full {
    width: 100%;
}

.overflow-hidden {
    overflow: hidden;
}

/* Spacing */
.space-y-2 > * + * {
    margin-top: 0.5rem;
}

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

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

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

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

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

/* Background Colors */
.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-white {
    background-color: #ffffff;
}

/* Text Colors */
.text-gray-200 {
    color: #e5e7eb;
}

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

.text-gray-600 {
    color: #4b5563;
}

.text-gray-900 {
    color: #111827;
}

/* Hero Section Gradient Colors */
.from-blue-600 {
    --tw-gradient-from: #2563eb;
}

.via-purple-600 {
    --tw-gradient-stops: #9333ea;
}

.to-pink-500 {
    --tw-gradient-to: #ec4899;
}

.bg-gradient-to-r {
    background: linear-gradient(to right, #2563eb, #9333ea, #ec4899);
}

/* Yellow Accent Colors */
.text-yellow-300 {
    color: #fde047;
}

.bg-yellow-400 {
    background-color: #facc15;
}

.hover\:bg-yellow-300:hover {
    background-color: #fde047;
}

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

/* Feature Section Colors */
.bg-blue-100 {
    background-color: #dbeafe;
}

.text-blue-600 {
    color: #2563eb;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.text-green-600 {
    color: #16a34a;
}

.bg-purple-100 {
    background-color: #f3e8ff;
}

.text-purple-600 {
    color: #9333ea;
}

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

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

/* Height/Width */
.h-16 {
    height: 4rem;
}

.w-16 {
    width: 4rem;
}

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

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

/* More Text Colors */
.text-gray-100 {
    color: #f3f4f6;
}

.text-white {
    color: #ffffff;
}

/* Background */
.bg-gray-50 {
    background-color: #f9fafb;
}

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

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

/* More Max Width */
.max-w-4xl {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

/* Text Sizes */
.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Padding */
.p-6 {
    padding: 1.5rem;
}

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

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

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

.ml-3 {
    margin-left: 0.75rem;
}

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

/* Gradient */
.from-secondary {
    --tw-gradient-from: #669bbc;
}

.to-primary {
    --tw-gradient-to: #003049;
}

/* Flex items */
.items-center {
    align-items: center;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .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));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Layout Utilities */
.max-w-7xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

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

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

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

/* Typography */
.text-center {
    text-align: center;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

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

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

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

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

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

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

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

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

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

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

.gap-4 {
    gap: 1rem;
}

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

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

.border-white {
    border-color: #ffffff;
}

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

.bg-white {
    background-color: #ffffff;
}

.text-white {
    color: #ffffff;
}

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

.hover\:bg-white:hover {
    background-color: #ffffff;
}

.hover\:text-primary:hover {
    color: #003049;
}

.hover\:bg-red-600:hover {
    background-color: #dc2626;
}

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

/* Responsive */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 768px) {
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
