/* ================================================
   LookMySpot - Custom Styles
   ================================================ */

/* ================================================
   CSS Variables & Color Palette
   ================================================ */
:root {
    --primary: #2563EB;
    --primary-dark: #1d4ed8;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --background-light: #F8FAFC;
    --background-white: #FFFFFF;
    --accent-green: #22C55E;
    --background-dark: #111721;
    --border-color: #E2E8F0;
    --border-color-light: #F1F5F9;
}

/* ================================================
   Global Styles
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: rgba(37, 99, 235, 0.2);
    color: var(--primary);
}

/* ================================================
   Typography
   ================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    line-height: 1.75;
}

/* ================================================
   Header & Navigation
   ================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary) !important;
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted) !important;
    transition: color 0.2s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* ================================================
   Hero Section
   ================================================ */
.hero-section {
    background-color: var(--background-light);
    padding: 5rem 0 6rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.hero-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--primary);
    border-radius: 9999px;
    margin: 2rem auto 0;
}

/* ================================================
   Buttons
   ================================================ */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    background-color: white;
    border: 1px solid #CBD5E1;
    color: var(--text-main);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.btn-outline-primary:hover {
    border-color: #94A3B8;
    background-color: white;
    color: var(--text-main);
}

/* ================================================
   Sections
   ================================================ */
.section {
    padding: 6rem 0;
}

.section-bg-white {
    background-color: white;
}

.section-bg-light {
    background-color: var(--background-light);
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* ================================================
   Feature Cards
   ================================================ */
.feature-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color-light);
    transition: border-color 0.2s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--border-color);
}

.feature-card-white {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color-light);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-bar {
    width: 3rem;
    height: 0.25rem;
    background-color: var(--primary);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.75;
}

/* ================================================
   Trust/Privacy Cards
   ================================================ */
.trust-card {
    padding: 1.5rem;
    border: 1px solid var(--border-color-light);
    border-radius: 0.5rem;
    background-color: rgba(248, 250, 252, 0.5);
    height: 100%;
}

.trust-card-title {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.trust-card-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ================================================
   Business Types List
   ================================================ */
.business-list {
    background-color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.business-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 0.75rem 0;
}

.business-list li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ================================================
   CTA Section
   ================================================ */
.cta-section {
    padding: 5rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #020617 100%);
    border-radius: 1rem;
    padding: 4rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-box-light {
    background-color: #F8FAFC;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 4rem 2.5rem;
    text-align: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.cta-title-dark {
    color: var(--text-main);
}

.cta-text {
    font-size: 1.125rem;
    color: #CBD5E1;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.cta-text-dark {
    color: var(--text-muted);
}

.btn-cta {
    padding: 0.75rem 2rem;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

/* ================================================
   Footer
   ================================================ */
.footer {
    background-color: white;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color-light);
}

.footer-copyright {
    font-size: 0.75rem;
    color: #94A3B8;
}

.footer-legal-link {
    font-size: 0.75rem;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: var(--primary);
}

/* ================================================
   Commitment Section (About Page)
   ================================================ */
.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.commitment-icon {
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.commitment-title {
    font-weight: 600;
    color: var(--text-main);
    display: block;
    margin-bottom: 0.25rem;
}

.commitment-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-box {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color-light);
}

.trust-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.trust-box-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.trust-tagline {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
}

/* ================================================
   Contact Page Styles
   ================================================ */
.contact-info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color-light);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* ================================================
   Responsive Design
   ================================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero-section {
        padding: 3rem 0 4rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

    h1 {
        font-size: 3rem;
    }
}

/* ================================================
   Utility Classes
   ================================================ */
.text-primary {
    color: var(--primary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-light {
    background-color: var(--background-light) !important;
}

.bg-white {
    background-color: white !important;
}

.mb-6 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 4rem;
}

.gap-4 {
    gap: 1.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}