:root {
  /* Brand Color Palette */
  --color-bg-primary: #090030; /* Deep dark base – main background */
  --color-bg-secondary: #0C3C78; /* Dark blue – sections, surfaces */
  --color-accent: #04879C; /* Teal – accents, highlights, interactive elements */
  --color-cta: #F30A49; /* Vibrant red/pink – CTA buttons, hover effects, emphasis */
  
  /* Text Colors */
  --color-text-primary: #FFFFFF; /* Headings */
  --color-text-secondary: #C9D1D9; /* Body text – soft gray for readability */
  --color-text-muted: #8B9DB0; /* Muted text */
  
  /* Design System */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  
  /* Shadows & Gradients */
  --shadow-soft: 0 8px 32px rgba(4, 135, 156, 0.2);
  --shadow-glow: 0 0 24px rgba(4, 135, 156, 0.33);
  --shadow-cta: 0 8px 32px rgba(243, 10, 73, 0.33);
  --gradient-primary: linear-gradient(135deg, #090030, #0C3C78);
  --gradient-overlay: linear-gradient(135deg, rgba(9, 0, 48, 0.8), rgba(12, 60, 120, 0.8));
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-bg-primary);
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

body {
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover,
a:focus {
  color: var(--color-cta);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.top-bar {
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(4, 135, 156, 0.2);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5rem;
  gap: 1rem;
}

.top-bar a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.top-bar a:hover,
.top-bar a:focus {
  color: var(--color-accent);
}

.top-bar-left {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
}

.top-bar-left .divider {
  opacity: 0.4;
}

.top-bar-right {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.opening-hours {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.opening-hours i {
  color: var(--color-accent);
}

.email-icon-only {
  display: none;
}

@media (max-width: 780px) {
  .top-bar {
    background: #D19900; /* Yellow color on mobile matching desktop */
  }
  
  .top-bar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  
  .top-bar-right {
    display: flex;
    align-items: center;
  }
  
  .email-full {
    display: none;
  }
  
  .opening-hours {
    display: none; /* Hide opening hours on mobile */
  }
  
  .email-icon-only {
    display: none; /* Hide email icon completely on mobile */
  }
  
  .divider {
    display: none; /* Hide dividers on mobile for single line */
  }
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(9, 0, 48, 0.7);
  border-bottom: 1px solid rgba(4, 135, 156, 0.2);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--color-text-primary);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.logo-mark:hover {
  transform: scale(1.05);
  box-shadow: 0 0 32px rgba(4, 135, 156, 0.5);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  text-shadow: none;
}

.logo-name .brand-mark,
.hero-title .company-title-mark {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  object-fit: contain;
  display: inline-block;
  flex-shrink: 0;
}

.page-company-name .company-title-mark {
  width: 130px;
  height: 130px;
  min-width: 130px;
  min-height: 130px;
  object-fit: contain;
  display: inline-block;
  flex-shrink: 0;
}

.page-company-name {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-shadow: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 auto 1.3rem;
  max-width: min(1120px, 100% - 2.5rem);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.logo-tagline {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  color: var(--color-text-secondary);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.nav a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(4, 135, 156, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width var(--transition-smooth), height var(--transition-smooth);
}

.nav a:hover {
  color: var(--color-accent);
  background: rgba(4, 135, 156, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.nav a:hover::before {
  width: 100%;
  height: 100%;
}

.nav.nav-open {
  display: flex !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(4, 135, 156, 0.3);
  background: rgba(9, 0, 48, 0.9);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  padding: 0;
  transition: all var(--transition-smooth);
}

.nav-toggle:hover {
  background: rgba(4, 135, 156, 0.1);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-text-primary);
  transition: all var(--transition-smooth);
}

.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--spacing-xl);
  background: var(--color-bg-primary);
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(100%);
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.hero-slide.prev {
  transform: translateX(-100%);
  opacity: 0;
}

.hero-slide.next {
  transform: translateX(100%);
  opacity: 0;
}

.hero-dots {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-xs);
  z-index: 3;
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(9, 0, 48, 0.6);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(4, 135, 156, 0.2);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.hero-dot:hover {
  background: rgba(4, 135, 156, 0.6);
  transform: scale(1.2);
}

.hero-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(4, 135, 156, 0.6);
}

.hero-dot.active::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--spacing-xl);
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.hero-highlights {
  justify-self: start;
  text-align: left;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-highlights > div {
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.hero-highlights .highlight-number {
  font-size: 1.35rem;
}

@media (max-width: 960px) {
  .hero-inner {
    align-items: flex-start;
  }

  .hero-highlights {
    justify-self: start;
    text-align: left;
    max-width: 100%;
    gap: 0.8rem;
  }

  .hero-highlights > div {
    padding: 0.75rem 0.8rem;
  }
}

.hero-content {
  max-width: 100%;
  width: 100%;
  padding-bottom: 0;
  color: var(--color-text-primary);
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-header {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.hero-logo {
  width: 144px;
  height: 144px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.hero-slogan {
  margin: 0.3rem 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.hero-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 var(--spacing-md);
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  text-shadow: none;
}

.brand-intro .container {
  text-align: center;
}

.brand-intro .page-company-name {
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin: 0 auto 0.75rem;
  text-align: center;
}

.brand-intro .eyebrow,
.brand-intro .section-intro {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.hero-slogan {
  margin: 0 0 var(--spacing-lg);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  opacity: 0.9;
}

/* Page company title styling already defined above */

/* Titles (section headings) styled in blue for better brand consistency */
.section-header h2 {
  color: var(--color-text-primary);
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-pill);
}

.hero-subtitle {
  margin: 0 0 1.6rem;
  color: var(--color-muted);
  max-width: 36rem;
}

.eyebrow {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.eyebrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  border-radius: var(--radius-pill);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-actions {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-width: 120px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width var(--transition-smooth), height var(--transition-smooth);
}

.btn:hover::before {
  width: 300%;
  height: 300%;
}

.btn.primary {
  background: var(--color-cta);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-cta);
}

.btn.primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 40px rgba(243, 10, 73, 0.4);
  background: #ff1a5a;
}

.btn.secondary {
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-text-primary);
  border: 2px solid rgba(4, 135, 156, 0.7);
  box-shadow: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.btn.secondary:hover {
  background: rgba(0, 0, 0, 0.85);
  color: var(--color-text-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(4, 135, 156, 0.4);
}

.btn.ghost {
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-text-primary);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  font-weight: 600;
}

.btn.ghost:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-text-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
}

.btn.full-width {
  width: 100%;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-highlights > div {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.6);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.hero-visual img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.footer-logo {
  display: block;
  max-width: 160px;
  width: 100%;
  margin-top: 1rem;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.highlight-number {
  display: inline-block;
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 0.35rem;
  color: var(--color-accent);
}

.highlight-label {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.section {
  padding-block: var(--spacing-xxl);
  position: relative;
}

.section-alt {
  background: var(--color-bg-secondary);
}

.featured-section {
  background: #081428; /* Darker background for featured section */
}

.who-we-are {
  background: var(--color-bg-primary);
}

.who-we-are-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  font-family: "Playfair Display", system-ui, serif;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  margin: 0 0 0.75rem;
  color: var(--color-blue);
}

.section-intro {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.split-card {
  padding: 1.7rem 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(20, 20, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}

.split-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.split-card p {
  margin-top: 0;
  margin-bottom: 1.1rem;
  color: var(--color-muted);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1rem;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.product-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0;
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-weight: 500;
}

.product-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1rem;
}

.brand-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-highlights > div {
  text-align: center;
  min-width: 120px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.pill {
  font-size: 0.8rem;
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(4, 135, 156, 0.2);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(4, 135, 156, 0.3);
  border-color: rgba(4, 135, 156, 0.4);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
}

.card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.featured-image {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  background-color: #1a1d23; /* Dark blue background */
}

.featured-image::after {
  content: 'kinrys';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.25);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  pointer-events: none;
  z-index: 1;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-body {
  padding: 1.1rem 1.3rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.featured-title {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #5b8ac5; /* Light blue */
}

.featured-price {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #a8956a; /* Light gold */
}

  /* Product tabs */
  .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.6rem 0 1rem;
  }

  .tabs button {
    border: 1px solid #5b8ac5;
    background: rgba(91, 138, 197, 0.1);
    color: #5b8ac5;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
  }

  .tabs button:hover {
    background: rgba(91, 138, 197, 0.2);
    border-color: #5b8ac5;
    transform: translateY(-1px);
  }

  .tabs button.active {
    background: #5b8ac5;
    border-color: #5b8ac5;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(91, 138, 197, 0.3);
  }

  /* Lightbox */
  .lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1.5rem;
  }

  .lightbox.open {
    display: flex;
  }

  .lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 42, 42, 0.9);
  }

  .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
    background: #2a2a2a; /* Dark grey background */
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .lightbox-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    background: var(--color-cta);
    border: 1px solid var(--color-cta);
    color: white;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
    font-weight: bold;
  }

  .lightbox-close:hover {
    background: var(--color-bg-primary);
    border-color: var(--color-bg-primary);
    transform: scale(1.1);
  }

  .lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    position: relative;
    background-color: #2a2a2a; /* Dark grey background for image */
  }

  .lightbox-content::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    background-color: #2a2a2a; /* Dark grey background before image */
    z-index: -1;
  }

  .lightbox-content img::after {
    content: 'KINRYS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    pointer-events: none;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .lightbox-caption {
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.9;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 999px;
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 3;
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .lightbox-nav.prev {
    left: -3.5rem;
  }

  .lightbox-nav.next {
    right: -3.5rem;
  }

  .product-card img,
  .gallery-item img {
    cursor: zoom-in;
  }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.4rem;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.94rem;
  color: var(--color-muted);
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
}

.inline-list li {
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.product-group {
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-group h3 {
  margin-top: 0;
  font-size: 1rem;
}

.product-group ul {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.product-group li {
  margin-bottom: 0.35rem;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.new-footer {
  border-top: 1px solid rgba(4, 135, 156, 0.2);
  padding-block: var(--spacing-xxl) var(--spacing-lg);
  background: var(--color-bg-primary);
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 var(--spacing-md);
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section p {
  margin: 0 0 var(--spacing-sm);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  padding: 0.25rem 0;
  display: block;
}

.footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.social-media {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-media a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(4, 135, 156, 0.3);
  background: rgba(4, 135, 156, 0.1);
  font-size: 1.1rem;
  transition: all var(--transition-smooth);
  color: var(--color-accent);
}

.social-media a:hover {
  transform: translateY(-3px);
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-glow);
}

.product-card {
  border-radius: var(--radius-lg);
  background: rgba(18, 18, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--color-bg-secondary);
}

.product-image::after {
  content: 'kinrys';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.25);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  pointer-events: none;
  z-index: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 1.1rem 1.3rem 1.3rem;
}

.product-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #5b8ac5; /* Light blue */
}

.product-desc {
  margin: 0.3rem 0 0.6rem;
  font-size: 0.9rem;
  color: #a8956a; /* Light gold */
}

.product-price {
  margin: 0;
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.gallery-item::after {
  content: 'kinrys';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.25);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  pointer-events: none;
  z-index: 1;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 1.5rem 1rem 1rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-description {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  color: rgba(255,255,255,0.9);
  padding: 1rem;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-description {
  opacity: 1;
}

.gallery-item.placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.3);
  background: rgba(15, 15, 22, 0.8);
  display: grid;
  place-items: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 0.75rem;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -2.4rem;
  right: 0.8rem;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.06);
}

.quote {
  margin: 0 0 0.9rem;
  font-size: 0.93rem;
  color: var(--color-muted);
}

.author {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-text);
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-details {
  padding: 1.4rem 0 0.2rem;
}

.branch {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.branch h4 {
  margin: 0 0 0.25rem;
  color: var(--color-text);
}

.social-links {
  margin-top: 1.4rem;
}

.social-links h4 {
  margin: 0 0 0.4rem;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-icons a {
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(24, 24, 34, 0.96);
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-icons a:nth-child(1) {
  border-color: rgba(186, 42, 107, 0.7);
}
.social-icons a:nth-child(2) {
  border-color: rgba(24, 119, 242, 0.7);
}
.social-icons a:nth-child(3) {
  border-color: rgba(0, 0, 0, 0.7);
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.contact-form {
  padding: 1.5rem 1.5rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(18, 18, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  margin-bottom: 0.9rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.86rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 6, 12, 0.95);
  color: var(--color-text);
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(197, 122, 43, 0.4);
  background: rgba(2, 2, 6, 0.98);
}

.form-note {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.map-placeholder {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  color: var(--color-muted);
  text-align: center;
  background: rgba(5, 5, 10, 0.9);
}

.whatsapp-float {
  position: fixed;
  right: var(--spacing-lg);
  bottom: var(--spacing-lg);
  z-index: 1000;
  border-radius: var(--radius-pill);
  padding: 1rem 1.5rem;
  background: #25D366;
  color: var(--color-text-primary);
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  box-shadow: var(--shadow-cta);
  transition: all var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.4);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.6rem 1.9rem;
  background: var(--color-surface);
}

.footer-inner {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted);
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-block: 3.5rem 3.5rem;
  }

  .hero-dots {
    bottom: 1rem;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
  }

  .hero-dot.active::before {
    width: 3px;
    height: 3px;
  }

  .split,
  .cards-grid,
  .products-grid,
  .gallery-grid,
  .contact-grid,
  .testimonials-grid,
  .featured-grid,
  .footer-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    margin-top: 0.5rem;
  }

  .who-we-are-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .top-bar {
    background: var(--color-bg-secondary);
  }
  
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    position: fixed;
    inset: 64px 0 auto;
    background: rgba(9, 0, 48, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--spacing-md);
    flex-direction: column;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    justify-content: flex-start;
    gap: var(--spacing-xs);
    border-bottom: 1px solid rgba(4, 135, 156, 0.2);
    display: none;
    width: 100%;
    left: 0;
    right: 0;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav a {
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    padding-block: var(--spacing-sm);
  }

  .hero {
    padding-top: var(--spacing-xl);
    min-height: 65vh;
  }

  .section {
    padding-block: var(--spacing-xl);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whatsapp-float {
    right: var(--spacing-md);
    bottom: var(--spacing-md);
  }
}

@media (max-width: 520px) {
  .logo-name {
    font-size: 0.8rem;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-highlights {
    gap: 0.6rem;
  }

  .hero-highlights > div {
    padding: 0.6rem 0.8rem;
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-content {
    grid-template-columns: minmax(0, 1fr);
  }
}

