/* Cureoynx Pharma – Pharma theme: white, blue, red */
:root {
  --cureoynx-red: #c41e3a;
  --cureoynx-red-dark: #9e1830;
  --cureoynx-red-light: #e63950;
  --cureoynx-blue: #1a365d;
  --cureoynx-blue-mid: #2c5282;
  --cureoynx-blue-light: #3182ce;
  --cureoynx-white: #ffffff;
  --cureoynx-offwhite: #f7fafc;
  --cureoynx-gray: #2d3748;
  --cureoynx-gray-light: #4a5568;
  --font-sans: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-display: "Outfit", "DM Sans", sans-serif;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cureoynx-white);
  color: var(--cureoynx-gray);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cureoynx-blue-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--cureoynx-red);
}

/* Header & mobile nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cureoynx-white);
  border-bottom: 2px solid var(--cureoynx-blue);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 1px 3px rgba(26, 54, 93, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
}
.logo-link:hover {
  color: inherit;
}

.logo-img {
  height: 44px;
  width: auto;
}

.header-page-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--cureoynx-blue);
  margin: 0;
  padding: 0 0.25rem;
}
@media (max-width: 768px) {
  .header-page-title {
    font-size: 1rem;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* Hamburger – visible on mobile only */
.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--cureoynx-blue);
  transition: background var(--transition);
}
.nav-toggle:hover {
  background: rgba(26, 54, 93, 0.08);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(6px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(0) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translateY(0) rotate(-45deg); }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.nav-list a {
  color: var(--cureoynx-blue);
  font-weight: 500;
  padding: 0.35rem 0;
}
.nav-list a:hover {
  color: var(--cureoynx-red);
}

/* Sidebar overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
}

.nav-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(280px, 85vw);
  max-width: 100%;
  height: 100vh;
  background: var(--cureoynx-white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 102;
  padding: 4rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}
body.nav-open .nav-sidebar {
  transform: translateX(0);
}

.nav-sidebar .nav-list {
  flex-direction: column;
  gap: 0;
}
.nav-sidebar .nav-list a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(26, 54, 93, 0.08);
  font-size: 1.05rem;
}
.nav-sidebar .nav-list li:last-child a {
  border-bottom: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .site-header .nav-desktop {
    display: none;
  }
  .nav-overlay {
    display: block;
  }
}
@media (min-width: 769px) {
  .nav-sidebar {
    display: none;
  }
}

/* Page banner (inner pages – title + breadcrumb like reference) */
.page-banner {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--cureoynx-blue) 0%, var(--cureoynx-blue-mid) 50%, #1e3a5f 100%);
  padding: 3rem 1.5rem;
  position: relative;
}
.page-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--cureoynx-white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}
.breadcrumb {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--cureoynx-white);
  text-decoration: underline;
}
.breadcrumb span {
  color: var(--cureoynx-white);
  font-weight: 500;
}

/* Main content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--cureoynx-blue);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--cureoynx-blue);
}

/* Hero */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--cureoynx-blue) 0%, var(--cureoynx-blue-mid) 50%, #1e3a5f 100%);
  color: var(--cureoynx-white);
}

.hero .logo-img {
  height: 72px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--cureoynx-white);
}

.hero .tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 0 2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cureoynx-red);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background var(--transition);
}
.hero-cta:hover {
  background: var(--cureoynx-red-dark);
  color: white;
}

/* Cards / sections */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background: var(--cureoynx-offwhite);
  border: 1px solid rgba(26, 54, 93, 0.12);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--cureoynx-blue-light);
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.1);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--cureoynx-blue);
}

.card p {
  margin: 0;
  color: var(--cureoynx-gray-light);
  font-size: 0.95rem;
}

/* Message block (Chairman) */
/* Chairman page: photo + message */
.chairman-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
  margin: 2rem 0;
}
.chairman-photo {
  position: relative;
}
.chairman-photo img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(26, 54, 93, 0.12);
  box-shadow: 0 4px 16px rgba(26, 54, 93, 0.08);
}
.chairman-message-wrap .message-block {
  margin-top: 0;
}
@media (max-width: 640px) {
  .chairman-profile {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .chairman-photo {
    max-width: 260px;
    margin: 0 auto;
  }
}

.message-block {
  background: var(--cureoynx-offwhite);
  border-left: 4px solid var(--cureoynx-red);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  border: 1px solid rgba(26, 54, 93, 0.1);
  border-left: 4px solid var(--cureoynx-red);
}

.message-block p {
  margin: 0 0 1rem;
  color: var(--cureoynx-gray);
}
.message-block p:last-child {
  margin-bottom: 0;
}

.signature {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--cureoynx-blue);
}

/* Products */
.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 54, 93, 0.1);
  display: grid;
  gap: 0.5rem;
}
.product-list li:last-child {
  border-bottom: none;
}
.product-list strong {
  color: var(--cureoynx-red);
}

/* Product cards with images */
.product-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--cureoynx-offwhite);
  border: 1px solid rgba(26, 54, 93, 0.12);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .product-card {
    grid-template-columns: 1fr;
  }
  .product-card[style*="grid-template-columns: 240px"] {
    grid-template-columns: 1fr !important;
  }
}
.product-card .product-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  background: var(--cureoynx-white);
  border: 1px solid rgba(26, 54, 93, 0.1);
}
.product-card .product-img-wrap img {
  width: 100%;
  height: auto;
}
.product-card .product-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.25rem;
  color: var(--cureoynx-blue);
}
.product-card .product-info .product-sub {
  font-size: 0.95rem;
  color: var(--cureoynx-gray-light);
  margin-bottom: 0.5rem;
}
.product-card .product-info .product-desc {
  color: var(--cureoynx-gray);
  margin: 0 0 0.5rem;
}
.product-card .product-info .product-meta {
  font-size: 0.9rem;
  color: var(--cureoynx-gray-light);
}
.badge-who {
  display: inline-block;
  background: #276749;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--cureoynx-blue);
  color: var(--cureoynx-white);
  padding: 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.footer-logo .logo-img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
}
.footer-nav a:hover {
  color: var(--cureoynx-red-light);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--cureoynx-red);
  color: white;
}
.btn-primary:hover {
  background: var(--cureoynx-red-dark);
  color: white;
}
.btn-secondary {
  background: var(--cureoynx-blue);
  color: white;
}
.btn-secondary:hover {
  background: var(--cureoynx-blue-mid);
  color: white;
}

/* Contact */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-list li {
  padding: 0.5rem 0;
  color: var(--cureoynx-gray);
}
.contact-list a {
  color: var(--cureoynx-blue-light);
}

/* Intro paragraph */
.intro {
  font-size: 1.05rem;
  color: var(--cureoynx-gray);
  max-width: 720px;
  margin: 0 0 2rem;
}

/* ========== Homepage-specific ========== */
.trust-bar {
  background: var(--cureoynx-blue);
  color: var(--cureoynx-white);
  padding: 1rem 1.5rem;
  text-align: center;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.trust-bar span { display: inline-flex; align-items: center; gap: 0.35rem; }

.home-section {
  padding: 3rem 1.5rem;
}
.home-section:nth-child(even) {
  background: var(--cureoynx-offwhite);
}
.home-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Featured products grid (homepage) */
.featured-products .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.featured-products .section-sub {
  text-align: center;
  color: var(--cureoynx-gray-light);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
/* Home page: horizontal scrolling products */
.products-scroll-section {
  padding: 2rem 0;
  background: var(--cureoynx-offwhite);
}
.products-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--cureoynx-blue-light) rgba(26, 54, 93, 0.1);
}
/* Auto-scroll: hide overflow, no scrollbar */
.products-scroll-wrap.products-scroll-auto {
  overflow: hidden;
  scroll-snap-type: none;
}
.products-scroll-wrap.products-scroll-auto::-webkit-scrollbar {
  display: none;
}
.products-scroll-wrap.products-scroll-auto {
  scrollbar-width: none;
}
.products-scroll-track {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 1.5rem 1.5rem;
  min-width: min-content;
}
/* Auto-scroll track: 8 cards = 2 sets, animate to -50% for seamless loop */
.products-scroll-auto .products-scroll-track {
  width: 200%;
  min-width: 200%;
  animation: products-scroll 35s linear infinite;
}
@keyframes products-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.products-scroll-auto:hover .products-scroll-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .products-scroll-auto .products-scroll-track {
    animation: none;
  }
}
.products-scroll-auto .home-product-card.scroll-card {
  flex: 0 0 calc(12.5% - 1rem);
  width: calc(12.5% - 1rem);
  min-width: 240px;
  scroll-snap-align: none;
}
@media (max-width: 600px) {
  .products-scroll-auto .home-product-card.scroll-card {
    min-width: 200px;
    flex: 0 0 calc(25% - 1rem);
    width: calc(25% - 1rem);
  }
}
.home-product-card.scroll-card {
  flex: 0 0 280px;
  width: 280px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
@media (max-width: 400px) {
  .home-product-card.scroll-card {
    flex: 0 0 260px;
    width: 260px;
  }
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .home-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .home-product-grid { grid-template-columns: 1fr; }
}

.assets-gallery-section { padding-top: 1rem; }
.assets-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.assets-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(26, 54, 93, 0.1);
  background: var(--cureoynx-offwhite);
}
.assets-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .assets-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .assets-gallery { grid-template-columns: 1fr; }
  .assets-gallery-item img { height: 180px; }
}

.home-product-card {
  background: var(--cureoynx-white);
  border: 1px solid rgba(26, 54, 93, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: center;
}
.home-product-card:hover {
  box-shadow: 0 8px 24px rgba(26, 54, 93, 0.12);
  transform: translateY(-2px);
}
.home-product-card a {
  color: inherit;
  display: block;
  padding-bottom: 1.25rem;
}
.home-product-card a:hover { color: var(--cureoynx-blue); }
.home-product-card .product-thumb {
  aspect-ratio: 1;
  background: var(--cureoynx-offwhite);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-product-card .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home-product-card .product-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cureoynx-blue);
  margin: 0.75rem 1rem 0.25rem;
}
.home-product-card .product-tag {
  font-size: 0.85rem;
  color: var(--cureoynx-gray-light);
  margin: 0 1rem;
  line-height: 1.35;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
@media (max-width: 640px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}
.stat-item {
  text-align: center;
  padding: 1.25rem 0.5rem;
  background: var(--cureoynx-white);
  border-radius: 8px;
  border: 1px solid rgba(26, 54, 93, 0.08);
}
.stat-item .stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cureoynx-red);
  margin: 0 0 0.25rem;
  line-height: 1.2;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--cureoynx-gray-light);
  margin: 0;
}

/* Why us / strengths */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.strength-card {
  background: var(--cureoynx-white);
  border: 1px solid rgba(26, 54, 93, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.strength-card:hover {
  border-color: var(--cureoynx-blue-light);
}
.strength-card .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  background: rgba(26, 54, 93, 0.08);
  color: var(--cureoynx-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.strength-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--cureoynx-blue);
}
.strength-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--cureoynx-gray-light);
  line-height: 1.5;
}

/* CISTO branding section (homepage) */
.cisto-brand-section {
  background: var(--cureoynx-offwhite);
  padding: 3rem 1.5rem;
}
.cisto-brand-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 700px) {
  .cisto-brand-inner { grid-template-columns: 1fr; }
}
.cisto-brand-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: var(--cureoynx-white);
  border: 1px solid rgba(26, 54, 93, 0.08);
  box-shadow: 0 4px 16px rgba(26, 54, 93, 0.06);
}
.cisto-brand-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.cisto-brand-text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
  color: var(--cureoynx-blue);
}
.cisto-brand-text p {
  color: var(--cureoynx-gray);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
/* CISTO highlight strip */
.cisto-strip {
  background: linear-gradient(135deg, var(--cureoynx-blue) 0%, var(--cureoynx-blue-mid) 100%);
  color: var(--cureoynx-white);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.cisto-strip-inner {
  max-width: 720px;
  margin: 0 auto;
}
.cisto-strip h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--cureoynx-white);
}
.cisto-strip p {
  margin: 0 0 1.25rem;
  opacity: 0.95;
  font-size: 1rem;
}
.cisto-strip .btn {
  background: var(--cureoynx-white);
  color: var(--cureoynx-blue);
}
.cisto-strip .btn:hover {
  background: rgba(255,255,255,0.9);
  color: var(--cureoynx-blue);
}

/* Home CTAs */
.home-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Contact form */
/* Contact page 6+6 column layout */
.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
  align-items: start;
}
.contact-col {
  min-width: 0;
}
.contact-col-info {
  grid-column: span 6;
}
.contact-col-form {
  grid-column: span 6;
}
.contact-col-note {
  margin-top: 1.25rem;
  color: var(--cureoynx-gray-light);
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-col-info,
  .contact-col-form {
    grid-column: span 1;
  }
}

.contact-form-wrap {
  max-width: 100%;
  margin-top: 1rem;
}
.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--cureoynx-blue);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.contact-form label .required {
  color: var(--cureoynx-red);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid rgba(26, 54, 93, 0.2);
  border-radius: 6px;
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cureoynx-blue-light);
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .btn {
  margin-top: 0.25rem;
}
.contact-form .form-note {
  font-size: 0.9rem;
  color: var(--cureoynx-gray-light);
  margin-top: 0.5rem;
}

/* Floating Call us button */
.floating-call {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.floating-call a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cureoynx-red);
  color: white !important;
  padding: 0.65rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(196, 30, 58, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.floating-call a:hover {
  color: white !important;
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(196, 30, 58, 0.45);
}
.floating-call svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.floating-call a.floating-whatsapp {
  background: #25D366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}
.floating-call a.floating-whatsapp:hover {
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .floating-call {
    bottom: 1rem;
    right: 1rem;
  }
  .floating-call a {
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
  }
}
