/* INDUSTRIAL STORAGE - PREMIUM BRANDING */

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

:root {
  --primary: #0099cc;
  --primary-dark: #0077aa;
  --primary-light: #e6f5ff;
  --accent: #ff6b35;
  --dark: #1a1a1a;
  --gray-light: #f8f9fa;
  --gray-medium: #e8eef5;
  --gray: #666;
  --white: #fff;
  --border: #ddd;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--primary-dark);
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 153, 204, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 26px;
  font-size: 0.95rem;
}

.btn-secondary:hover {
  background: var(--primary-light);
}

.btn-large {
  padding: 14px 36px;
  font-size: 1rem;
}

/* HERO SPLASH */
.hero-splash {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4), rgba(0, 99, 153, 0.3));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content .container {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-logo-tagline {
  margin-bottom: 30px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.hero-logo {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
  margin-bottom: 20px;
}

.brand-tagline {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffdb58;
  margin-bottom: 8px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.brand-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-text {
  color: var(--white);
  max-width: 700px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text .highlight {
  color: #ffdb58;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 1;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-ctas .btn-primary {
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 153, 204, 0.4);
}

.hero-ctas .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-ctas .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #ffdb58;
  display: block;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* SECTIONS */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--dark);
}

.section-header p {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.6;
}

/* WHY US */
.why-us {
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-us-item {
  padding: 30px;
  background: var(--gray-light);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-align: center;
}

.why-us-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 153, 204, 0.15);
  border-color: var(--primary);
}

.why-us-item .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.why-us-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.why-us-item p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* SPACE SELECTOR */
.space-selector {
  background: linear-gradient(135deg, var(--primary-light), var(--white));
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.space-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.space-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 153, 204, 0.2);
  border-color: var(--primary);
}

.space-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, var(--primary-light), var(--white));
  transform: scale(1.05);
}

.space-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.full-facility {
  position: absolute;
  top: -12px;
  right: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.space-size {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
}

.space-unit {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.space-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 15px;
}

.space-price span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
}

/* SPECIFICATIONS */
.specifications {
  background: var(--gray-light);
}

.specs-detailed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.spec-block {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.spec-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.spec-list {
  list-style: none;
}

.spec-list li {
  padding: 8px 0;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.spec-list li:last-child {
  border-bottom: none;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.faq-item {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--gray-light);
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--primary);
  background: var(--white);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.faq-item p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CONTACT */
.contact {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--white);
}

.contact-info p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail .label {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
}

.detail .value {
  font-size: 1rem;
  line-height: 1.6;
}

.detail a {
  color: var(--white);
  font-weight: 600;
}

.detail a:hover {
  text-decoration: underline;
}

/* FORM */
.inquiry-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.inquiry-form .btn-primary {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  margin-top: -10px;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .space-card.featured {
    transform: scale(1);
    grid-column: 1 / -1;
  }

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

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

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .hero-splash {
    min-height: auto;
    margin-bottom: 40px;
  }

  .hero-content .container {
    min-height: auto;
    padding: 60px 20px;
  }

  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    display: none;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .why-us-grid,
  .specs-detailed,
  .space-grid {
    grid-template-columns: 1fr;
  }

  .space-card.featured {
    transform: scale(1);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

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

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .inquiry-form {
    padding: 25px;
  }

  .contact-details {
    gap: 15px;
  }

/* MOBILE RESPONSIVE - MATCH DESKTOP AESTHETIC */
@media (max-width: 768px) {
  .hero-logo {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 15px;
  }

  .brand-tagline {
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
  }

  .brand-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
  }

  .hero-logo-tagline {
    margin-bottom: 30px;
    gap: 12px;
    width: 100%;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-top: 20px;
    font-weight: 900;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
  }

  .hero-ctas {
    flex-direction: row;
    gap: 15px;
    width: auto;
    flex-wrap: wrap;
  }

  .hero-ctas a {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 12px;
  }

  .brand-tagline {
    font-size: 0.85rem;
    margin-bottom: 6px;
    letter-spacing: 1px;
  }

  .brand-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hero-text h1 {
    font-size: 1.6rem;
    line-height: 1.15;
    margin-top: 15px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
