/* ============================================================
   DENVER STORAGE CONTAINERS — DESIGN SYSTEM
   denverstoragecontainers.com
   Contact: (330) 510-5817 | info@denverstoragecontainers.com
   ============================================================ */

:root {
  --navy:        #1a2e4a;
  --navy-dark:   #111e31;
  --navy-light:  #243d60;
  --orange:      #D49820;
  --orange-dark: #A97510;
  --orange-light:#E8B840;
  --off-white:   #f5f5f0;
  --white:       #ffffff;
  --gray-100:    #f0f0ec;
  --gray-200:    #e0e0d8;
  --gray-400:    #9a9a90;
  --gray-600:    #5a5a52;
  --gray-800:    #2e2e28;
  --success:     #2e7d32;
  --error:       #c62828;
  --font-heading: 'Inter', sans-serif;
  --font-body:    'Roboto', sans-serif;
  --section-pad: 80px 0;
  --container:   1200px;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }

.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--section-pad); }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { font-size: 1.1rem; color: var(--gray-600); max-width: 600px; margin: 12px auto 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-family: var(--font-heading); font-weight: 600; font-size: 1rem; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-call { background: var(--success); color: var(--white); border-color: var(--success); }
.btn-call:hover { background: #1b5e20; border-color: #1b5e20; color: var(--white); }

/* NAVBAR */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--navy); padding: 0 20px; transition: box-shadow var(--transition); overflow: visible; }
#navbar.scrolled { background: var(--navy-dark); box-shadow: var(--shadow-lg); }


.nav-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 70px; overflow: visible; position: relative; z-index: 1; }
.nav-logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.nav-logo span { color: var(--orange); }
.nav-logo:hover { color: var(--white); }
#navbar .nav-logo { z-index: 1002; }
#navbar .nav-logo img { height: 46px !important; width: auto !important; border-radius: 6px !important; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)) drop-shadow(0 2px 4px rgba(212,152,32,0.25)); transition: filter 0.3s ease; }
#navbar .nav-logo img:hover { filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5)) drop-shadow(0 2px 6px rgba(212,152,32,0.35)); }

/* Small circular logo next to Home */
.nav-mini-logo { width: 31px; height: 31px; border-radius: 50%; object-fit: cover; vertical-align: middle; margin-right: 6px; border: 1.5px solid rgba(212,152,32,0.5); }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a { color: rgba(255,255,255,0.85); font-weight: 500; padding: 8px 8px; border-radius: var(--radius); font-size: 0.9rem; transition: all var(--transition); display: flex; align-items: center; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-phone { color: var(--orange-light) !important; font-weight: 700 !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all var(--transition); }

/* HERO */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3a5f 100%); display: flex; align-items: center; padding-top: 70px; position: relative; overflow: hidden; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: rgba(12, 22, 38, 0.72); z-index: 1; }
.hero::before { display: none; }
.hero-content { position: relative; z-index: 3; max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,152,32,0.2); border: 1px solid rgba(212,152,32,0.4); color: var(--orange-light); font-size: 0.85rem; font-weight: 600; padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .highlight { color: var(--orange); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: var(--orange); }
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }

/* TRUST BAR */
.trust-bar { background: var(--orange); padding: 18px 0; }
.trust-items { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 32px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--white); font-weight: 600; font-size: 0.9rem; }

/* PRODUCT CARDS */
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img { height: 200px; background: var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; }
.product-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge { position: absolute; top: 12px; right: 12px; background: var(--orange); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; }
.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { margin-bottom: 8px; }
.product-card-body p { color: var(--gray-600); font-size: 0.95rem; flex: 1; }
.product-specs { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.spec-tag { background: var(--gray-100); color: var(--gray-600); font-size: 0.78rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; border: 1px solid var(--gray-200); }

/* STEPS */
.step { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: box-shadow var(--transition); }
.step:hover { box-shadow: var(--shadow-md); }
.step-number { width: 52px; height: 52px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content h3 { margin-bottom: 6px; }
.step-content p { color: var(--gray-600); margin: 0; }

/* TESTIMONIALS */
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--orange); display: flex; flex-direction: column; gap: 14px; }
.testimonial-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { color: var(--gray-600); font-style: italic; line-height: 1.7; flex: 1; margin: 0; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-info strong { display: block; font-weight: 700; color: var(--navy); }
.testimonial-info span { font-size: 0.82rem; color: var(--gray-400); }

/* FAQ */
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; margin-bottom: 10px; }
.faq-question { width: 100%; background: var(--white); border: none; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--navy); text-align: left; transition: background var(--transition); }
.faq-question:hover { background: var(--gray-100); }
.faq-question.open { background: var(--navy); color: var(--white); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 18px 22px; color: var(--gray-600); background: var(--off-white); line-height: 1.7; font-size: 0.95rem; }
.faq-answer.open { display: block; }

/* FORMS */
.quote-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: 0.88rem; color: var(--gray-800); }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 2px solid var(--gray-200); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; color: var(--gray-800); background: var(--white); transition: border-color var(--transition); width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(212,152,32,0.1); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--gray-400); margin-top: 10px; }

/* CONTACT METHODS */
.contact-method { display: flex; align-items: center; gap: 14px; padding: 18px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); text-decoration: none; color: var(--gray-800); transition: all var(--transition); border: 2px solid transparent; margin-bottom: 12px; }
.contact-method:hover { border-color: var(--orange); transform: translateX(4px); color: var(--gray-800); }
.contact-method-icon { width: 44px; height: 44px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-method-text strong { display: block; font-weight: 700; color: var(--navy); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-method-text span { font-size: 0.95rem; font-weight: 600; }

/* CTA SECTION */
.cta-section { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); padding: 80px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 480px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* PAGE HEADER */
.page-header { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 120px 0 56px; text-align: center; }
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 540px; margin: 10px auto 0; }
.page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 120px 0 56px; text-align: center; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 10px auto 0; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--orange-light); }

/* BADGE */
.badge { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-orange { background: rgba(212,152,32,0.1); color: var(--orange-dark); }
.badge-navy   { background: rgba(26,46,74,0.1); color: var(--navy); }

/* FOOTER */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 56px 0 24px; position: relative; overflow: hidden; }


footer .container, footer .footer-grid, footer .footer-bottom { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.footer-brand .nav-logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* REGION ROWS (service areas) */
.region-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 56px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--white); }
.region-row:last-child { margin-bottom: 0; }
.region-row.reverse .region-img { order: 2; }
.region-row.reverse .region-content { order: 1; }
.region-img { position: relative; min-height: 360px; overflow: hidden; }
.region-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.region-row:hover .region-img img { transform: scale(1.05); }
.region-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,22,38,0.8) 0%, rgba(12,22,38,0.15) 50%); }
.region-img-title { position: absolute; bottom: 24px; left: 24px; right: 24px; }
.region-img-title h2 { color: white; margin: 0 0 6px; font-size: 1.6rem; }
.region-img-title p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.88rem; font-weight: 500; }
.region-content { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.region-content .city-grid { margin-top: 0; }
.region-content > p { margin-top: 16px; color: var(--gray-600); font-size: 0.92rem; line-height: 1.7; }

/* PHOTO HOVER EFFECTS */
.photo-hover { overflow: hidden; }
.photo-hover img { transition: transform 0.5s ease; }
.photo-hover:hover img { transform: scale(1.04); }

/* CITY PAGE SPECIFICS */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; margin-top: 32px; }
.city-chip { padding: 10px 8px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); font-size: 0.82rem; font-weight: 600; color: var(--navy); text-align: center; transition: all var(--transition); text-decoration: none; display: flex; align-items: center; justify-content: center; min-height: 44px; white-space: nowrap; }
.city-chip:hover { border-color: var(--orange); color: var(--orange); background: rgba(212,152,32,0.05); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .city-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
@media (max-width: 768px) {
  :root { --section-pad: 52px 0; }
  .region-row { grid-template-columns: 1fr; }
  .region-row.reverse .region-img { order: 0; }
  .region-row.reverse .region-content { order: 0; }
  .region-img { min-height: 240px; }
  .region-content { padding: 24px; }
  #navbar .nav-logo img { height: 40px !important; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  #navbar.menu-open .nav-links { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy-dark); padding: 14px; gap: 4px; border-top: 1px solid rgba(255,255,255,0.1); }
  #navbar.menu-open .nav-links a { padding: 12px 16px; }
  .nav-cta .btn { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .city-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  #navbar .nav-logo img { height: 36px !important; }
  .hero { min-height: auto; padding: 90px 0 52px; }
  .city-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}
