/* ==========================================================================
   ParqueCorp Modern Tech Ice-Blue Texture Stylesheet
   ========================================================================== */

:root {
  --bg-color: #f0f4f8;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(226, 232, 240, 0.9);
  --card-hover-border: #cbd5e1;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  
  /* Modern Ice-Blue Grid Texture & Ambient Light Glow */
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 90%, rgba(14, 165, 233, 0.08) 0%, transparent 45%),
    linear-gradient(to right, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 32px 32px, 32px 32px;
  background-attachment: fixed;
  
  color: var(--text-primary);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1.25rem;
  -webkit-font-smoothing: antialiased;
}

.main-wrapper {
  width: 100%;
  max-width: 960px;
  margin: auto;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Brands Section */
.brands-section {
  width: 100%;
  margin-bottom: 3.5rem;
}

.brands-grid-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.brands-grid-bottom {
  display: flex;
  justify-content: center;
}

/* Brand Item Card - Modern Frosted Glass */
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 3.25rem 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  position: relative;
  overflow: hidden;
}

.brands-grid-bottom .brand-item {
  width: 100%;
  max-width: 450px;
}

.brand-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: var(--transition);
}

.brand-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.96);
  border-color: #cbd5e1;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.1), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
}

/* Logo */
.brand-logo {
  max-height: 58px;
  max-width: 85%;
  object-fit: contain;
  margin-bottom: 1.25rem;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.02));
}

.brand-item:hover .brand-logo {
  transform: scale(1.04);
}

/* Subtitle */
.brand-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Contact Footer */
.contact-footer {
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid rgba(203, 213, 225, 0.6);
  display: flex;
  justify-content: center;
}

.contact-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  padding: 0.6rem 1.1rem;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(8px);
}

.contact-link i {
  font-size: 1rem;
  color: var(--text-primary);
}

.contact-link:hover {
  color: var(--text-primary);
  background-color: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.divider {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 2.5rem 1.25rem;
  }

  .brands-grid-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .brand-item {
    padding: 2.5rem 1.5rem;
  }

  .brands-grid-bottom .brand-item {
    max-width: 100%;
  }

  .contact-items {
    flex-direction: column;
    gap: 0.75rem;
  }

  .divider {
    display: none;
  }
}
