/* Base Styles */
@import url('variables.css');

/* Font Faces */
@font-face { font-family: Montserrat; src: url(/web/fonts/Montserrat-Light.ttf); font-weight:300; }
@font-face { font-family: Montserrat; src: url(/web/fonts/Montserrat-Regular.ttf); }
@font-face { font-family: Montserrat; src: url(/web/fonts/Montserrat-Medium.ttf); font-weight:600; }
@font-face { font-family: Montserrat; src: url(/web/fonts/Montserrat-Bold.ttf); font-weight:700; }
@font-face { font-family: Montserrat; src: url(/web/fonts/Montserrat-Black.ttf); font-weight:800; }

@font-face { font-family: Roboto; src: url(/web/fonts/Roboto-Light.ttf); font-weight:300; }
@font-face { font-family: Roboto; src: url(/web/fonts/Roboto-Regular.ttf); }
@font-face { font-family: Roboto; src: url(/web/fonts/Roboto-Medium.ttf); font-weight:600; }
@font-face { font-family: Roboto; src: url(/web/fonts/Roboto-Bold.ttf); font-weight:700; }
@font-face { font-family: Roboto; src: url(/web/fonts/Roboto-Black.ttf); font-weight:800; }

@font-face { font-family: Poppins; src: url(/web/fonts/Poppins-Light.ttf); font-weight:300; }
@font-face { font-family: Poppins; src: url(/web/fonts/Poppins-Regular.ttf); }
@font-face { font-family: Poppins; src: url(/web/fonts/Poppins-Medium.ttf); font-weight:600; }
@font-face { font-family: Poppins; src: url(/web/fonts/Poppins-Bold.ttf); font-weight:700; }
@font-face { font-family: Poppins; src: url(/web/fonts/Poppins-Black.ttf); font-weight:800; }

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; scroll-behavior: smooth; }
body { margin: 0; padding: 0; min-height: 100%; font-family: var(--font-secondary); color: var(--neutral-700); background-color: var(--white); line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition-normal); }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5, h6 { margin: 0 0 1rem; font-family: var(--font-primary); color: var(--neutral-800); font-weight: 700; line-height: 1.2; }
p { margin: 0 0 1rem; }
ul, ol { padding-left: 1.5rem; margin: 0 0 1rem; }
button, .btn { cursor: pointer; font-family: var(--font-primary); }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.row { display: flex; flex-wrap: wrap; margin: -0.5rem; }
.col { flex: 1 0 0%; padding: 0.5rem; }
.col-auto { flex: 0 0 auto; padding: 0.5rem; }
.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0.5rem; }
.col-md-6 { flex: 0 0 100%; max-width: 100%; padding: 0.5rem; }
.col-lg-4 { flex: 0 0 100%; max-width: 100%; padding: 0.5rem; }
.col-lg-3 { flex: 0 0 100%; max-width: 100%; padding: 0.5rem; }

/* Section Divider */
.section-divider-blank { position: relative; margin: 4rem 0; text-align: center; }
.section-divider { position: relative; margin: 4rem 0; text-align: center; height: 1px; background: linear-gradient(to right, transparent, var(--neutral-300), transparent); }
.section-divider span { position: relative; display: inline-block; padding: 0 1.5rem; background-color: var(--white); color: var(--neutral-600); font-size: 1rem; font-weight: 600; transform: translateY(-50%); }
.section-divider::before { content: ''; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; background-color: var(--primary); border-radius: 50%; transform: translateX(-50%); }
.section-divider-minimal { background: var(--neutral-200); height: 1px; margin: 3rem 0; }
.section-divider-minimal::before { display: none; }

/* Alternative version with accent color */
.section-divider-accent { background: linear-gradient(to right, transparent, var(--accent-light), transparent); }
.section-divider-accent::before { background-color: var(--accent); }

/* Dark background version */
.bg-dark .section-divider { background: linear-gradient(to right, transparent, var(--neutral-600), transparent); }
.bg-dark .section-divider span { background-color: var(--neutral-800); color: var(--neutral-300); }
@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
}

/* Spacing */
.section { padding: 4rem 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

/* Typography */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-sm { font-size: 0.875rem; }
.text-md { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 800; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-black { color: var(--black); }
.text-gray { color: var(--neutral-500); }
.text-dark { color: var(--neutral-800); }

/* Buttons */
.btn { display: inline-block; font-weight: 700; text-align: center; white-space: nowrap; vertical-align: middle; user-select: none; border: 1px solid transparent; padding: 0.75rem 1.5rem; font-size: 1rem; line-height: 1.5; border-radius: var(--border-radius); transition: var(--transition-normal); }
.btn { display: inline-block; padding: 0.875rem 2rem; font-weight: 700; text-align: center; text-decoration: none; border-radius: 5px; transition: all 0.3s ease; }
.btn-primary { background-color: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background-color: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--box-shadow); }
.btn-secondary { background-color: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background-color: var(--primary-light); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.btn-accent { background-color: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background-color: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--box-shadow); }
.btn-outline-primary { background-color: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background-color: var(--primary); color: var(--white); transform: translateY(-2px); box-shadow: var(--box-shadow); }
.btn-outline-accent { background-color: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline-accent:hover { background-color: var(--accent); color: var(--white); transform: translateY(-2px); box-shadow: var(--box-shadow); }
.btn-white { background-color: var(--white); color: var(--neutral-800); border-color: var(--white); }
.btn-white:hover { background-color: var(--neutral-100); border-color: var(--neutral-100); color: var(--neutral-900); transform: translateY(-2px); box-shadow: var(--box-shadow); }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Cards */
.card { background-color: var(--white); border-radius: var(--border-radius); box-shadow: var(--box-shadow); overflow: hidden; transition: var(--transition-normal); }
.card:hover { transform: translateY(-5px); box-shadow: var(--box-shadow-md); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-title { font-size: 1.25rem; margin-bottom: 0.5rem; font-weight: 700; }
.card-text { color: var(--neutral-600); margin-bottom: 1rem; }
.card-footer { padding: 1rem 1.5rem; background-color: var(--neutral-50); border-top: 1px solid var(--neutral-200); }

/* Utilities */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }
.align-items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.bg-primary { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--neutral-100); }
.bg-dark { background-color: var(--neutral-800); }
.shadow { box-shadow: var(--box-shadow); }
.shadow-md { box-shadow: var(--box-shadow-md); }
.shadow-lg { box-shadow: var(--box-shadow-lg); }
.rounded { border-radius: var(--border-radius); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-full { border-radius: var(--border-radius-full); }
.overflow-hidden { overflow: hidden; }

/* Forms */
.sell-form-sec-1, .sell-form-sec-2 {width: 100% !important;}
.request-form-sec-1, .request-form-sec-2 {width: 100% !important;}

/* Page Toppers */

.page-header { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.page-header-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4)); }
.page-header .container { position: relative; z-index: 2; padding: 50px 0;  }
.page-header h1 { color: var(--white); font-size: 2rem; font-weight: 800; margin: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.3); animation: fadeInUp 0.8s ease-out forwards; }
.page-header h1::after { content: ''; display: block; width: 80px; height: 3px; background-color: var(--primary); margin: 15px auto 0; }

.about-background { background-image: url('/web/images/stockbackground-cars-01.jpg'); }
.contact-background { background-image: url('/web/images/stockbackground-contact.jpg'); }
.finance-background { background-image: url('/web/images/stockbackground-finance.jpg'); }
.locate-background { background-image: url('/web/images/stockbackground-locate.jpg'); }
.service-background { background-image: url('/web/images/stockbackground-service2.jpg'); }
.inventory-background { background-image: url('/web/images/stockbackground-inventory.jpg'); }
.request-background { background-image: url('/web/images/stockbackground-inventory.jpg'); }
.sell-background { background-image: url('/web/images/stockbackground-keys.jpg'); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.page-content-section { padding: 60px 0; background-color: var(--white); }
.page-content { display: flex; gap: 40px; }
.page-main { flex: 1; }
.page-main-text-block {display: flex; flex-direction: column; margin-bottom: 4rem;}
.page-sidebar { width: 350px; }

h2.section-title { font-size: 2.5rem; font-weight: 700; color: ; margin-bottom: 1.5rem; }
h3.section-title { font-size: 2rem; font-weight: 700; color: ; margin-bottom: 1.5rem; }

.page-image { margin-bottom: 30px; border-radius: 8px; overflow: hidden; }
.page-image img { width: 100%; max-width: 400px; margin: auto; height: auto; display: block; }

.page-text { font-size: 1.1rem; line-height: 1.7; color: var(--neutral-600); margin-bottom: 30px; }
.page-text p { margin-bottom: 1.25rem; }

.page-cta { margin-top: 20px; }

.info-card { background-color: var(--neutral-50); border-radius: 8px; border: 1px solid var(--neutral-200); overflow: hidden; margin-bottom: 30px; box-shadow: 0 5px 5px rgba(0,0,0,0.05); }
.info-card-header { background-color: var(--neutral-100); color: var(--neutral-700); padding: 20px; display: flex; align-items: center; }
.info-card-header i { font-size: 18px; margin-right: 15px; }
.info-card-header h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0; margin: 0; }
.info-card-body {font-size: .9rem; padding: 20px; }
.info-card-list { list-style: none; padding: 0; margin: 0; }
.info-card-list li {color: var(--neutral-600); font-size: .9rem; display: flex; align-items: center; margin-bottom: 12px; }
.info-card-list li i { color: var(--primary); font-size: 14px; margin-right: 12px; }

.contact-card { background-color: var(--neutral-50); border: 1px solid var(--neutral-200); border-radius: 8px; padding: 25px; margin-bottom: 30px; box-shadow: 0 5px 5px rgba(0,0,0,0.05); }
.contact-card h3 { margin: 0 0 18px 0; font-size: 1.1rem; font-weight: 700; letter-spacing: 0; }
.contact-card p { font-size: 1rem; color: var(--neutral-600); margin-bottom: 20px; }
.contact-link { display: flex; align-items: center; color: var(--primary); font-size: 1rem; font-weight: 700; text-decoration: none; transition: all 0.3s ease; margin-bottom: 15px; }
.contact-link:last-child { margin-bottom: 0; }
.contact-link i { margin-right: 10px; width: 20px; text-align: center; }
.contact-link:hover { color: var(--primary-dark); transform: translateY(-2px); }
.phone-link { display: flex; align-items: center; color: var(--primary); font-size: 1rem; font-weight: 700; text-decoration: none; transition: all 0.3s ease; }
.phone-link i { margin-right: 10px; }
.phone-link:hover { color: var(--primary-dark); transform: translateY(-2px); }

.feature-card { padding: 25px; border-radius: 8px; background-color: var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-bottom: 20px; transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.feature-card-icon { font-size: 28px; color: var(--primary); margin-bottom: 15px; }
.feature-card-title { font-size: 1.25rem; font-weight: 700; color: var(--neutral-800); margin-bottom: 10px; }
.feature-card-text { font-size: 1rem; color: var(--neutral-600); }

.hours-card { background-color: var(--neutral-50); border-radius: 8px; border: 1px solid var(--neutral-200); overflow: hidden; margin-bottom: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.hours-card-header { background-color: var(--neutral-100); padding: 20px; text-align: center; }
.hours-card-header i { font-size: 18px; margin-right: 15px; }
.hours-card-header h3 { margin: 0; font-size: 1.1rem; color: var(--neutral-700); font-weight: 700; letter-spacing: 0;  }
.hours-card-body { padding: 20px; font-size: .9rem;}
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--neutral-200); }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--neutral-700); }
.hours-time { color: var(--neutral-600); }

@media (max-width: 992px) {
    .page-content { flex-direction: column; }
    .page-sidebar { width: 100%; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    .page-content-section { padding: 40px 0; }
    .section-title { font-size: 1.75rem; }
    .page-text { font-size: 1rem; }
}

@media (max-width: 576px) {
    .section-title { font-size: 1.5rem; }
    .btn { width: 100%; }
}



/* Responsive utilities */
.d-none { display: none; }
.d-block { display: block; }

@media (min-width: 768px) {
  .d-md-none { display: none; }
  .d-md-block { display: block; }
  .d-md-flex { display: flex; }
}

@media (min-width: 992px) {
  .d-lg-none { display: none; }
  .d-lg-block { display: block; }
  .d-lg-flex { display: flex; }
}