/* Business Page Styles */

/* Hero Section */
.business-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.business-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.4));
}

.business-hero .hero-content {
  max-width: 600px;
  color: var(--clr-text-inverse);
}

.business-hero h1 {
  font-size: var(--fs-5xl);
  color: var(--clr-text-inverse);
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.business-hero p {
  font-size: var(--fs-lg);
  color: #E2E8F0;
  margin-bottom: var(--space-8);
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}

.business-hero .btn {
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.4s forwards;
}

/* Section Spacing */
.section-split,
.section-boardroom,
.section-categories,
.section-concierge,
.section-editorial,
.section-trust {
  padding: var(--space-16) 0;
}

.section-split {
  background-color: var(--clr-bg-body);
}

.section-boardroom {
  background-color: var(--clr-bg-surface);
}

.section-categories {
  background-color: var(--clr-bg-body);
}

.section-concierge {
  background-color: var(--clr-bg-surface);
}

.section-editorial {
  background-color: var(--clr-bg-body);
}

.section-trust {
  background-color: var(--clr-bg-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

/* Grid Split Layout */
.grid-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 992px) {
  .grid-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.grid-split.reverse {
  direction: rtl;
}

.grid-split.reverse > * {
  direction: ltr;
}

.split-image {
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xs);
}

.split-content h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  color: var(--clr-primary);
  margin-bottom: var(--space-4);
}

.split-content p {
  color: var(--clr-text-main);
  line-height: var(--lh-base);
  margin-bottom: var(--space-6);
}

.feature-block {
  background-color: var(--clr-bg-surface);
  padding: var(--space-6);
  border-radius: var(--radius-xs);
  margin-top: var(--space-6);
}

.feature-block h3 {
  font-size: var(--fs-lg);
  color: var(--clr-primary);
  margin-bottom: var(--space-3);
}

.feature-block p {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-4xl);
  color: var(--clr-primary);
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.card {
  background-color: var(--clr-bg-body);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xs);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xs);
}

.card-body {
  padding: var(--space-6);
}

.card-body h3,
.card-body h4 {
  color: var(--clr-primary);
  margin-bottom: var(--space-3);
}

.card-body h4 {
  font-size: var(--fs-lg);
}

.card-body p {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
}

.text-muted {
  color: var(--clr-text-muted);
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-card .card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.category-card .card-body {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0));
  width: 100%;
  color: var(--clr-text-inverse);
}

.category-card .card-body h3 {
  color: var(--clr-text-inverse);
  font-size: var(--fs-2xl);
}

.category-card .card-body p {
  color: #E2E8F0;
}

/* Concierge Section */
.concierge-layout {
  gap: var(--space-12);
}

.concierge-text h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  color: var(--clr-primary);
  margin-bottom: var(--space-4);
}

.concierge-text p {
  color: var(--clr-text-main);
  line-height: var(--lh-base);
  margin-bottom: var(--space-6);
}

.input-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  color: var(--clr-primary);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xs);
  font-size: var(--fs-base);
  color: var(--clr-text-main);
  background-color: var(--clr-bg-body);
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--clr-secondary);
}

.style-card {
  background-color: var(--clr-bg-body);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xs);
  padding: var(--space-6);
  min-height: 200px;
}

.style-card h4 {
  font-size: var(--fs-lg);
  color: var(--clr-primary);
  margin-bottom: var(--space-4);
}

.skeleton-line {
  height: 12px;
  background-color: var(--clr-bg-surface);
  border-radius: var(--radius-xs);
  margin-bottom: var(--space-3);
}

.skeleton-line.short {
  width: 60%;
}

/* Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-item {
  padding: var(--space-6);
  background-color: var(--clr-bg-body);
  border-radius: var(--radius-xs);
  border: 1px solid var(--clr-border);
}

.trust-item h3 {
  font-size: var(--fs-lg);
  color: var(--clr-primary);
  margin-bottom: var(--space-3);
}

.trust-item p {
  color: var(--clr-text-main);
  line-height: var(--lh-base);
  font-size: var(--fs-sm);
}

/* Link Arrow */
.link-arrow {
  display: inline-block;
  color: var(--clr-primary);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.category-card:hover .link-arrow,
.card:hover .link-arrow {
  border-bottom-color: var(--clr-primary);
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.bg-surface {
  background-color: var(--clr-bg-surface);
}

/* Grid Utility */
.grid {
  display: grid;
}

/* Responsive Design */
@media (max-width: 768px) {
  .business-hero {
    height: 60vh;
    min-height: 400px;
  }

  .business-hero h1 {
    font-size: var(--fs-3xl);
  }

  .business-hero p {
    font-size: var(--fs-base);
  }

  .section-split,
  .section-boardroom,
  .section-categories,
  .section-concierge,
  .section-editorial,
  .section-trust {
    padding: var(--space-8) 0;
  }

  .section-header h2 {
    font-size: var(--fs-2xl);
  }

  .split-content h2 {
    font-size: var(--fs-2xl);
  }

  .concierge-text h2 {
    font-size: var(--fs-2xl);
  }
}
