:root {
  --brand-cyan: #06b6d4;
  --brand-purple: #6366f1;
  --brand-pink: #fb7185;
  --dark-navy: #0f172a;
  --soft-slate: #1f2937;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  background: #f1f5f9;
  color: var(--soft-slate);
  margin: 0;
}

main {
  padding-bottom: 3rem;
}

.hero {
  min-height: auto;
  padding: 2.5rem 0 2rem;
  position: relative;
  background: #516973;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 60%);
  bottom: -60px;
  right: -40px;
  opacity: 0.9;
}

.badge {
  letter-spacing: 0.35rem;
}

.section-title {
  letter-spacing: 0.45rem;
  font-size: 0.85rem;
  color: var(--brand-cyan);
}

.intro-text {
  max-width: 640px;
}

.service-card {
  background: #fff;
  border-radius: 1.8rem;
  padding: 2rem;
  border: none;
  box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4b5563;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.pricing-card {
  border-radius: 1.5rem;
  background: #fff;
  border: none;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card h2 {
  color: var(--brand-purple);
  font-size: 2.5rem;
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card {
  border-radius: 1.8rem;
  background: #516973;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  color: #fff;
}

.form-control, .form-select {
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 0.2rem rgba(6, 182, 212, 0.25);
}

footer.footer {
  background: linear-gradient(135deg, #111827, rgba(6, 182, 212, 0.2));
  border-radius: 1.5rem 1.5rem 0 0;
}

footer.footer .container {
  max-width: 960px;
}

.navbar .nav-link {
  font-weight: 600;
  color: var(--dark-navy);
}

.navbar .nav-link:hover {
  color: var(--brand-cyan);
}

footer.footer .small {
  color: rgba(255, 255, 255, 0.85);
}

ul.list-unstyled li strong {
  display: block;
  font-weight: 600;
  color: var(--dark-navy);
}

.page-hero {
  min-height: auto;
  padding: 2.5rem 0 2rem;
  color: #000;
  position: relative;
  border-radius: 0 0 3rem 3rem;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 60%);
  right: -30px;
  bottom: -40px;
  opacity: 0.8;
}

.pricing-hero {
  background: #516973;
}

.about-hero {
  background: #516973;
}

.contact-hero {
  background: #516973;
}

.page-hero .badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  letter-spacing: 0.35rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.info-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline li {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 1.5rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-cyan);
}

.timeline li strong {
  font-size: 1.05rem;
}

.cta-panel {
  border-radius: 1.5rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-align: center;
  color: #fff;
}

.brand-logo-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
}

.navbar-brand {
  min-height: 56px;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 3rem;
  }
}

@media (max-width: 768px) {
  .service-card, .pricing-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    border-radius: 0;
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .info-card {
    padding: 1.5rem;
  }
}

.purchase-hero {
  background: linear-gradient(135deg, #0f172a, #516973);
}

.purchase-hero .badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  text-align: center;
}

.gallery-frame {
  background: #8b5e34;
  padding: 0.85rem;
  border-radius: 1.2rem;
  box-shadow: inset 0 0 0 2px rgba(255, 244, 238, 0.7), 0 18px 30px rgba(15, 23, 42, 0.25);
}

.frame-mat {
  background: #fff;
  padding: 0.85rem;
  border-radius: 1rem;
  border: 4px solid #f2efea;
}

.frame-mat img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0.6rem;
  display: block;
}

.gallery-item .price-tag {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase-cta {
  background: linear-gradient(135deg, #0f172a, #1f2937);
  color: #fff;
  border-radius: 1.5rem;
  padding: 3rem 1.5rem;
  margin-top: 2rem;
  text-align: center;
  box-shadow: 0 25px 40px rgba(15, 23, 42, 0.25);
}

.purchase-cta .btn {
  border-radius: 999px;
  padding: 0.75rem 2.4rem;
}

@media (max-width: 768px) {
  .frame-mat img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .purchase-cta {
    padding: 2.5rem 1rem;
  }
}

body.zoomify-page {
  font-family: Arial, sans-serif;
}

body.zoomify-page .zoomify-menu {
  display: block !important;
  padding: 10px !important;
  background: #222 !important;
}

body.zoomify-page .zoomify-menu button {
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

body.zoomify-page .zoomify-menu button:last-child {
  margin-right: 0;
}

body.zoomify-page .zoomify-menu button:hover, body.zoomify-page .zoomify-menu button:focus, body.zoomify-page .zoomify-menu button:active, body.zoomify-page .zoomify-menu button:visited {
  outline: none !important;
}

body.zoomify-page .zoomify-viewer {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  height: 90vh !important;
  min-height: 540px !important;
  background: #000 !important;
}

.review-cta .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.65);
}

.review-cta .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.review-cta {
  background: #516973;
  color: #fff;
}

