*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

:root {
   --primary-navy: #003d5c;
   --dark-navy: #002235;
   --accent-blue: #005a7d;
   --secondary-gold: #c9a961;
   --light-gold: #d4b976;
   --off-white: #f8f6f1;
   --white: #ffffff;
}

body {
   font-family: 'Poppins', 'Segoe UI', sans-serif;
   background: var(--off-white);
   color: #1a1a1a;
   overflow-x: hidden;
}

h1,
h2,
h3 {
   font-family: 'Poppins', sans-serif;
}

/* Scroll reveal base state */
.reveal {
   opacity: 0;
   transform: translateY(40px);
   transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
   opacity: 1;
   transform: translateY(0);
}

/* Gold shimmer divider */
.shimmer-divider {
   width: 80px;
   height: 3px;
   background: linear-gradient(90deg, transparent, var(--secondary-gold), transparent);
   margin: 0 auto 1.5rem;
   background-size: 200% 100%;
   animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
   0% {
      background-position: -200% 0;
   }

   100% {
      background-position: 200% 0;
   }
}

/* Section badge */
.section-badge {
   display: inline-block;
   font-family: 'Poppins', sans-serif;
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--secondary-gold);
   background: rgba(201, 169, 97, 0.1);
   border: 1px solid rgba(201, 169, 97, 0.3);
   padding: 0.4rem 1.2rem;
   border-radius: 30px;
   margin-bottom: 1rem;
}

/* Section titles */
.section-title {
   font-size: 3.5rem;
   font-weight: 700;
   color: var(--primary-navy);
   letter-spacing: -1px;
   line-height: 1.1;
   margin-bottom: 0.75rem;
}

.section-subtitle {
   font-size: 1.1rem;
   color: #666;
   max-width: 600px;
   margin: 0 auto;
}

.section-header {
   text-align: center;
   margin-bottom: 4rem;
}

/* ── HEADER ── */
#site-header {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   padding: 1.2rem 0;
   transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

#site-header.scrolled {
   background: rgba(0, 34, 53, 0.97);
   backdrop-filter: blur(12px);
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 3rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.nav-logo img {
   height: 60px;
   width: auto;
}

.nav-links {
   display: flex;
   list-style: none;
   gap: 2.5rem;
   align-items: center;
}

.nav-links a {
   color: rgba(255, 255, 255, 0.9);
   text-decoration: none;
   font-size: 0.9rem;
   font-weight: 500;
   letter-spacing: 0.5px;
   position: relative;
   transition: color 0.3s;
}

.nav-links a::after {
   content: '';
   position: absolute;
   bottom: -4px;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--secondary-gold);
   transition: width 0.3s ease;
}

.nav-links a:hover {
   color: var(--secondary-gold);
}

.nav-links a:hover::after {
   width: 100%;
}

.nav-cta {
   background: linear-gradient(135deg, var(--secondary-gold), var(--light-gold));
   color: var(--dark-navy) !important;
   padding: 0.6rem 1.5rem;
   border-radius: 30px;
   font-weight: 700 !important;
   font-size: 0.85rem !important;
   box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
   transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5) !important;
}

.nav-cta::after {
   display: none !important;
}

/* Hamburger */
.hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
   padding: 5px;
   background: none;
   border: none;
}

.hamburger span {
   display: block;
   width: 24px;
   height: 2px;
   background: white;
   transition: all 0.3s;
}

.mobile-menu {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 34, 53, 0.98);
   z-index: 1001;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 2rem;
}

.mobile-menu.open {
   display: flex;
}

.mobile-menu a {
   color: white;
   text-decoration: none;
   font-size: 1.8rem;
   font-family: 'Poppins', sans-serif;
   font-weight: 600;
   transition: color 0.3s;
}

.mobile-menu a:hover {
   color: var(--secondary-gold);
}

.mobile-close {
   position: absolute;
   top: 2rem;
   right: 2rem;
   background: none;
   border: none;
   color: white;
   font-size: 2rem;
   cursor: pointer;
}

@media (max-width: 900px) {
   .nav-links {
      display: none;
   }

   .hamburger {
      display: flex;
   }

   .nav-container {
      padding: 0 1.5rem;
   }
}

/* ── HERO ── */
#hero {
   min-height: 100vh;
   background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 55%, var(--accent-blue) 100%);
   position: relative;
   display: flex;
   align-items: center;
   overflow: hidden;
   padding-top: 90px;
}

#hero::before {
   content: '';
   position: absolute;
   inset: 0;
   background:
      radial-gradient(ellipse at 15% 60%, rgba(201, 169, 97, 0.18) 0%, transparent 45%),
      radial-gradient(ellipse at 80% 30%, rgba(201, 169, 97, 0.10) 0%, transparent 40%);
   pointer-events: none;
}

.hero-particles {
   position: absolute;
   inset: 0;
   overflow: hidden;
   pointer-events: none;
}

.particle {
   position: absolute;
   width: 3px;
   height: 3px;
   background: var(--secondary-gold);
   border-radius: 50%;
   opacity: 0;
   animation: float-particle linear infinite;
}

@keyframes float-particle {
   0% {
      opacity: 0;
      transform: translateY(0) scale(0.5);
   }

   10% {
      opacity: 0.6;
   }

   90% {
      opacity: 0.3;
   }

   100% {
      opacity: 0;
      transform: translateY(-100vh) scale(1.2);
   }
}

.hero-inner {
   max-width: 1400px;
   margin: 0 auto;
   padding: 4rem 3rem;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
   position: relative;
   z-index: 1;
   width: 100%;
}

.hero-text .hero-badge {
   display: inline-block;
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: var(--secondary-gold);
   border: 1px solid rgba(201, 169, 97, 0.5);
   padding: 0.5rem 1.5rem;
   border-radius: 30px;
   margin-bottom: 1.5rem;
   opacity: 0;
   animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-text h1 {
   font-size: 4.8rem;
   color: white;
   font-weight: 700;
   letter-spacing: -2px;
   line-height: 1.05;
   margin-bottom: 1.5rem;
   opacity: 0;
   animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-text h1 span {
   color: var(--secondary-gold);
}

.hero-text p {
   font-size: 1.15rem;
   color: rgba(255, 255, 255, 0.82);
   line-height: 1.7;
   max-width: 520px;
   margin-bottom: 2.5rem;
   opacity: 0;
   animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
   display: flex;
   gap: 1.2rem;
   flex-wrap: wrap;
   opacity: 0;
   animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn-primary {
   background: linear-gradient(135deg, var(--secondary-gold), var(--light-gold));
   color: var(--dark-navy);
   padding: 1rem 2.5rem;
   border-radius: 50px;
   font-weight: 700;
   font-size: 0.95rem;
   text-decoration: none;
   display: inline-block;
   box-shadow: 0 8px 25px rgba(201, 169, 97, 0.45);
   transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 14px 35px rgba(201, 169, 97, 0.6);
}

.btn-outline {
   background: transparent;
   color: white;
   border: 2px solid rgba(255, 255, 255, 0.6);
   padding: 1rem 2.5rem;
   border-radius: 50px;
   font-weight: 600;
   font-size: 0.95rem;
   text-decoration: none;
   display: inline-block;
   transition: all 0.3s;
}

.btn-outline:hover {
   background: white;
   color: var(--primary-navy);
   border-color: white;
}

.hero-visual {
   position: relative;
   height: 520px;
   opacity: 0;
   animation: fadeUp 1s ease 0.5s forwards;
}

.hero-img {
   position: absolute;
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.hero-img-main {
   width: 280px;
   height: 320px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%) rotate(-3deg);
   z-index: 3;
   border: 3px solid rgba(201, 169, 97, 0.5);
}

.hero-img-left {
   width: 200px;
   height: 230px;
   top: 20%;
   left: 5%;
   transform: rotate(-8deg);
   z-index: 2;
   opacity: 0.85;
}

.hero-img-right {
   width: 200px;
   height: 230px;
   bottom: 10%;
   right: 5%;
   transform: rotate(6deg);
   z-index: 2;
   opacity: 0.85;
}

.hero-img-main::before {
   content: '';
   position: absolute;
   inset: -8px;
   border: 1px solid rgba(201, 169, 97, 0.4);
   border-radius: 20px;
   z-index: -1;
}

@keyframes fadeUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@media (max-width: 900px) {
   .hero-inner {
      grid-template-columns: 1fr;
      padding: 3rem 1.5rem;
   }

   .hero-text h1 {
      font-size: 3rem;
   }

   .hero-visual {
      display: none;
   }
}

/* ── TRUST BAR ── */
#trust-bar {
   background: white;
   padding: 4rem 3rem;
   border-bottom: 1px solid rgba(0, 61, 92, 0.08);
}

.trust-grid {
   max-width: 1100px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
}

.trust-item {
   text-align: center;
   padding: 2rem 1.5rem;
   position: relative;
}

.trust-item:not(:last-child)::after {
   content: '';
   position: absolute;
   right: 0;
   top: 25%;
   bottom: 25%;
   width: 1px;
   background: linear-gradient(to bottom, transparent, var(--secondary-gold), transparent);
}

.trust-number {
   display: block;
   font-family: 'Poppins', sans-serif;
   font-size: 3.8rem;
   font-weight: 700;
   color: var(--primary-navy);
   line-height: 1;
   margin-bottom: 0.5rem;
}

.trust-label {
   font-size: 0.8rem;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--secondary-gold);
}

@media (max-width: 600px) {
   .trust-grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .trust-item:nth-child(2)::after {
      display: none;
   }
}

/* ── COLLECTIONS ── */
#collections {
   padding: 7rem 3rem;
   background: var(--off-white);
}

.collections-inner {
   max-width: 1300px;
   margin: 0 auto;
}

.collections-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
   margin-top: 3rem;
}

.collection-card {
   position: relative;
   border-radius: 20px;
   overflow: hidden;
   height: 380px;
   cursor: pointer;
   text-decoration: none;
   display: block;
   box-shadow: 0 10px 40px rgba(0, 34, 53, 0.15);
   transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 60px rgba(0, 34, 53, 0.25);
}

.collection-card-bg {
   position: absolute;
   inset: 0;
   background-size: cover;
   background-position: center;
   transition: transform 0.6s ease;
}

.collection-card:hover .collection-card-bg {
   transform: scale(1.06);
}

.collection-card-overlay {
   position: absolute;
   inset: 0;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 2.5rem;
}

.collection-bags .collection-card-bg {
   background-image: url('/images/products/BAG%20PAHOTO/CA%20112/DJD53192.JPG');
}

.collection-bags .collection-card-overlay {
   background: linear-gradient(to top, rgba(0, 34, 53, 0.92) 0%, rgba(0, 34, 53, 0.4) 60%, transparent 100%);
}

.collection-medical .collection-card-bg {
   background-image: url('/images/products/medical/patient_gown_peach_ruling.jpg');
}

.collection-medical .collection-card-overlay {
   background: linear-gradient(to top, rgba(0, 61, 92, 0.92) 0%, rgba(0, 61, 92, 0.4) 60%, transparent 100%);
}

.collection-label {
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: var(--secondary-gold);
   margin-bottom: 0.5rem;
}

.collection-title {
   font-family: 'Poppins', sans-serif;
   font-size: 2.4rem;
   font-weight: 700;
   color: white;
   margin-bottom: 1rem;
   line-height: 1.1;
}

.collection-cta {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   color: var(--secondary-gold);
   font-size: 0.9rem;
   font-weight: 600;
   letter-spacing: 1px;
   transition: gap 0.3s;
}

.collection-card:hover .collection-cta {
   gap: 1rem;
}

.collection-card::after {
   content: '';
   position: absolute;
   inset: 0;
   border-radius: 20px;
   border: 2px solid transparent;
   transition: border-color 0.4s;
   pointer-events: none;
}

.collection-card:hover::after {
   border-color: var(--secondary-gold);
}

@media (max-width: 768px) {
   .collections-grid {
      grid-template-columns: 1fr;
   }

   .collection-card {
      height: 280px;
   }
}

/* ── BAGS SECTION ── */
#bags {
   padding: 7rem 0 0;
   background: var(--off-white);
}

.bags-header {
   max-width: 1300px;
   margin: 0 auto;
   padding: 0 3rem;
   text-align: center;
   margin-bottom: 4rem;
}

.features-strip {
   background: var(--dark-navy);
   padding: 2rem 0;
   overflow: hidden;
}

.features-track {
   display: flex;
   animation: marquee 30s linear infinite;
   width: max-content;
}

.features-track:hover {
   animation-play-state: paused;
}

@keyframes marquee {
   from {
      transform: translateX(0);
   }

   to {
      transform: translateX(-50%);
   }
}

.feature-pill {
   display: inline-flex;
   align-items: center;
   gap: 0.6rem;
   white-space: nowrap;
   padding: 0.6rem 2rem;
   color: rgba(255, 255, 255, 0.85);
   font-size: 0.85rem;
   font-weight: 500;
   border-right: 1px solid rgba(201, 169, 97, 0.2);
}

.feature-pill::before {
   content: '✦';
   color: var(--secondary-gold);
   font-size: 0.7rem;
}

/* ── PRODUCT GRID ── */
.products-wrapper {
   max-width: 1300px;
   margin: 0 auto;
   padding: 4rem 3rem;
}

.products-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.product-card {
   background: white;
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 4px 20px rgba(0, 61, 92, 0.08);
   border: 1px solid rgba(0, 61, 92, 0.08);
   transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s;
}

.product-card:hover {
   transform: translateY(-12px);
   box-shadow: 0 20px 50px rgba(0, 61, 92, 0.18);
   border-color: rgba(201, 169, 97, 0.5);
}

.product-img-wrap {
   position: relative;
   height: 300px;
   overflow: hidden;
   background: #f5f3ef;
}

.product-img-wrap img {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: opacity 0.5s ease, transform 0.6s ease;
}

.product-img-wrap .img-primary {
   opacity: 1;
   transform: scale(1);
}

.product-img-wrap .img-hover {
   opacity: 0;
   transform: scale(1.04);
}

.product-img-wrap .img-extra {
   opacity: 0;
   pointer-events: none;
}

.product-card:hover .img-primary {
   opacity: 0;
   transform: scale(1.04);
}

.product-card:hover .img-hover {
   opacity: 1;
   transform: scale(1);
}

.badge-model {
   position: absolute;
   top: 14px;
   left: 14px;
   background: var(--dark-navy);
   color: var(--secondary-gold);
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 1px;
   padding: 0.35rem 0.9rem;
   border-radius: 20px;
   z-index: 2;
}

.badge-export {
   position: absolute;
   top: 14px;
   right: 14px;
   background: linear-gradient(135deg, var(--secondary-gold), var(--light-gold));
   color: var(--dark-navy);
   font-size: 0.7rem;
   font-weight: 700;
   letter-spacing: 1px;
   padding: 0.35rem 0.9rem;
   border-radius: 20px;
   z-index: 2;
}

.product-body {
   padding: 1.5rem;
}

.product-body h3 {
   font-family: 'Poppins', sans-serif;
   font-size: 1.4rem;
   font-weight: 700;
   color: var(--primary-navy);
   margin-bottom: 0.5rem;
}

.product-body p {
   font-size: 0.88rem;
   color: #777;
   line-height: 1.6;
   margin-bottom: 1.2rem;
}

.product-cta {
   display: inline-block;
   color: var(--secondary-gold);
   font-size: 0.82rem;
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   text-decoration: none;
   border-bottom: 1px solid rgba(201, 169, 97, 0.4);
   padding-bottom: 2px;
   transition: border-color 0.3s, color 0.3s;
}

.product-cta:hover {
   color: var(--primary-navy);
   border-color: var(--primary-navy);
}

@media (max-width: 1024px) {
   .products-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 600px) {
   .products-grid {
      grid-template-columns: 1fr;
   }

   .products-wrapper {
      padding: 2rem 1.5rem;
   }
}

/* ── HIGHLIGHTS ── */
.highlights-panel {
   background: var(--dark-navy);
   padding: 5rem 3rem;
   margin-top: 4rem;
}

.highlights-inner {
   max-width: 1300px;
   margin: 0 auto;
}

.highlights-header {
   text-align: center;
   margin-bottom: 3rem;
}

.highlights-header h3 {
   font-size: 2.2rem;
   color: white;
   font-weight: 700;
   margin-bottom: 0.5rem;
}

.highlights-header p {
   color: rgba(255, 255, 255, 0.6);
   font-size: 1rem;
}

.highlights-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
}

.highlight-item {
   text-align: center;
   padding: 2.5rem 1.5rem;
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(201, 169, 97, 0.15);
   border-radius: 16px;
   transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.highlight-item:hover {
   background: rgba(201, 169, 97, 0.08);
   border-color: rgba(201, 169, 97, 0.4);
   transform: translateY(-6px);
}

.highlight-icon {
   font-size: 2.5rem;
   margin-bottom: 1rem;
}

.highlight-item h4 {
   font-family: 'Poppins', sans-serif;
   font-size: 1.2rem;
   color: var(--secondary-gold);
   margin-bottom: 0.5rem;
   font-weight: 600;
}

.highlight-item p {
   font-size: 0.87rem;
   color: rgba(255, 255, 255, 0.65);
   line-height: 1.6;
}

@media (max-width: 900px) {
   .highlights-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 500px) {
   .highlights-grid {
      grid-template-columns: 1fr;
   }
}

/* ── MEDICAL ── */
#medical {
   padding: 7rem 0;
   background: white;
}

.medical-wrapper {
   max-width: 1300px;
   margin: 0 auto;
   padding: 0 3rem;
}

/* ── WHY CHOOSE US ── */
#why-us {
   background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
   padding: 7rem 3rem;
   position: relative;
   overflow: hidden;
}

#why-us::before {
   content: '';
   position: absolute;
   inset: 0;
   background: radial-gradient(ellipse at 80% 50%, rgba(201, 169, 97, 0.10) 0%, transparent 50%),
      radial-gradient(ellipse at 10% 80%, rgba(201, 169, 97, 0.07) 0%, transparent 40%);
   pointer-events: none;
}

.why-inner {
   max-width: 1300px;
   margin: 0 auto;
   position: relative;
   z-index: 1;
}

.why-inner .section-title {
   color: white;
}

.why-inner .section-subtitle {
   color: rgba(255, 255, 255, 0.7);
}

.why-inner .section-badge {
   background: rgba(201, 169, 97, 0.15);
}

.why-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-top: 4rem;
}

.why-tile {
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(201, 169, 97, 0.15);
   border-radius: 16px;
   padding: 2.5rem 2rem;
   transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.why-tile:hover {
   background: rgba(255, 255, 255, 0.08);
   border-color: rgba(201, 169, 97, 0.45);
   transform: translateY(-8px);
}

.why-icon {
   font-size: 2.8rem;
   margin-bottom: 1.2rem;
   display: block;
}

.why-tile h3 {
   font-family: 'Poppins', sans-serif;
   font-size: 1.4rem;
   color: var(--secondary-gold);
   margin-bottom: 0.75rem;
   font-weight: 700;
}

.why-tile p {
   font-size: 0.9rem;
   color: rgba(255, 255, 255, 0.7);
   line-height: 1.7;
}

@media (max-width: 900px) {
   .why-grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 500px) {
   .why-grid {
      grid-template-columns: 1fr;
   }
}

/* ── CTA ── */
#cta {
   background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--light-gold) 100%);
   padding: 7rem 3rem;
   text-align: center;
   position: relative;
   overflow: hidden;
}

#cta::before {
   content: '';
   position: absolute;
   inset: 0;
   background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.cta-inner {
   position: relative;
   z-index: 1;
}

#cta h2 {
   font-size: 3.5rem;
   color: var(--dark-navy);
   margin-bottom: 1rem;
   font-weight: 700;
}

#cta p {
   font-size: 1.2rem;
   color: var(--primary-navy);
   margin-bottom: 2.5rem;
   opacity: 0.9;
}

.cta-buttons {
   display: flex;
   gap: 1.2rem;
   justify-content: center;
   flex-wrap: wrap;
}

.btn-dark {
   background: var(--dark-navy);
   color: white;
   padding: 1rem 2.5rem;
   border-radius: 50px;
   font-weight: 700;
   font-size: 0.95rem;
   text-decoration: none;
   display: inline-block;
   transition: transform 0.3s, box-shadow 0.3s;
   box-shadow: 0 8px 25px rgba(0, 34, 53, 0.3);
}

.btn-dark:hover {
   transform: translateY(-3px);
   box-shadow: 0 14px 35px rgba(0, 34, 53, 0.4);
}

.btn-outline-dark {
   background: transparent;
   color: var(--dark-navy);
   border: 2px solid var(--dark-navy);
   padding: 1rem 2.5rem;
   border-radius: 50px;
   font-weight: 700;
   font-size: 0.95rem;
   text-decoration: none;
   display: inline-block;
   transition: all 0.3s;
}

.btn-outline-dark:hover {
   background: var(--dark-navy);
   color: var(--secondary-gold);
}

/* ── CONTACT ── */
#contact {
   padding: 7rem 3rem;
   background: var(--off-white);
}

.contact-inner {
   max-width: 1100px;
   margin: 0 auto;
}

.contact-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-top: 3rem;
}

.contact-card {
   background: white;
   border-radius: 16px;
   padding: 2.5rem 2rem;
   text-align: center;
   box-shadow: 0 4px 20px rgba(0, 61, 92, 0.08);
   border: 1px solid rgba(0, 61, 92, 0.08);
   transition: transform 0.3s, border-color 0.3s;
}

.contact-card:hover {
   transform: translateY(-6px);
   border-color: rgba(201, 169, 97, 0.5);
}

.contact-icon {
   font-size: 2.5rem;
   margin-bottom: 1rem;
   display: block;
}

.contact-card h3 {
   font-family: 'Poppins', sans-serif;
   font-size: 1.3rem;
   color: var(--primary-navy);
   margin-bottom: 0.5rem;
   font-weight: 700;
}

.contact-card p {
   color: #777;
   font-size: 0.95rem;
   line-height: 1.6;
}

.contact-card a {
   color: var(--secondary-gold);
   text-decoration: none;
   font-weight: 600;
}

@media (max-width: 700px) {
   .contact-grid {
      grid-template-columns: 1fr;
   }
}

/* ── FOOTER ── */
#site-footer {
   background: var(--dark-navy);
   border-top: 3px solid var(--secondary-gold);
   padding: 3rem;
   text-align: center;
}

.footer-logo {
   height: 55px;
   margin-bottom: 1rem;
   opacity: 0.9;
}

.footer-tagline {
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: var(--secondary-gold);
   margin-bottom: 1.5rem;
}

.footer-links {
   display: flex;
   justify-content: center;
   gap: 2rem;
   flex-wrap: wrap;
   margin-bottom: 1.5rem;
}

.footer-links a {
   color: rgba(255, 255, 255, 0.5);
   text-decoration: none;
   font-size: 0.85rem;
   transition: color 0.3s;
}

.footer-links a:hover {
   color: var(--secondary-gold);
}

.footer-copy {
   color: rgba(255, 255, 255, 0.35);
   font-size: 0.82rem;
}

/* scroll-margin-top so fixed header doesn't cover section headings */
#hero,
#collections,
#bags,
#medical,
#why-us,
#cta,
#contact {
   scroll-margin-top: 84px;
}

/* ── PRODUCT DETAIL MODAL ── */
#product-modal {
   display: none;
   position: fixed;
   inset: 0;
   z-index: 2000;
   background: rgba(0, 10, 20, 0.85);
   backdrop-filter: blur(6px);
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
}

#product-modal.open {
   display: flex;
}

.modal-inner {
   background: #fff;
   border-radius: 20px;
   max-width: 1060px;
   width: 100%;
   max-height: 92vh;
   overflow-y: auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
   position: relative;
   box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
   animation: modalIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
   from {
      opacity: 0;
      transform: scale(0.94) translateY(20px);
   }

   to {
      opacity: 1;
      transform: scale(1) translateY(0);
   }
}

.modal-close {
   position: absolute;
   top: 1.2rem;
   right: 1.2rem;
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background: var(--dark-navy);
   color: white;
   border: none;
   font-size: 1.1rem;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 10;
   transition: background 0.2s, transform 0.2s;
}

.modal-close:hover {
   background: var(--secondary-gold);
   transform: rotate(90deg);
}

.modal-gallery {
   background: #f5f3ef;
   border-radius: 20px 0 0 20px;
   padding: 2rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
   position: sticky;
   top: 0;
}

.modal-main-img {
   border-radius: 12px;
   overflow: hidden;
   aspect-ratio: 4/3;
   background: #eee;
}

.modal-main-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: opacity 0.3s;
}

.modal-thumbs {
   display: flex;
   gap: 0.75rem;
}

.modal-thumb {
   width: 70px;
   height: 70px;
   border-radius: 8px;
   overflow: hidden;
   cursor: pointer;
   border: 2px solid transparent;
   transition: border-color 0.2s;
   flex-shrink: 0;
}

.modal-thumb.active {
   border-color: var(--secondary-gold);
}

.modal-thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.modal-info {
   padding: 2.5rem 2.5rem 2.5rem 2rem;
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
}

.modal-model-code {
   display: inline-block;
   font-size: 0.72rem;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--secondary-gold);
   background: rgba(201, 169, 97, 0.1);
   border: 1px solid rgba(201, 169, 97, 0.3);
   padding: 0.35rem 1rem;
   border-radius: 20px;
   width: fit-content;
}

.modal-product-name {
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--primary-navy);
   line-height: 1.2;
}

.modal-export-badge {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   font-size: 0.78rem;
   font-weight: 600;
   color: #2e7d32;
   background: #e8f5e9;
   border: 1px solid #a5d6a7;
   padding: 0.3rem 0.9rem;
   border-radius: 20px;
   width: fit-content;
}

.modal-divider {
   height: 1px;
   background: rgba(0, 61, 92, 0.1);
}

.modal-desc {
   font-size: 0.95rem;
   color: #555;
   line-height: 1.7;
}

.modal-features-title {
   font-size: 0.78rem;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--primary-navy);
   margin-bottom: 0.6rem;
}

.modal-features-list {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 0.5rem;
   list-style: none;
}

.modal-features-list li {
   font-size: 0.83rem;
   color: #444;
   display: flex;
   align-items: flex-start;
   gap: 0.5rem;
   line-height: 1.4;
}

.modal-features-list li::before {
   content: '✦';
   color: var(--secondary-gold);
   font-size: 0.6rem;
   margin-top: 3px;
   flex-shrink: 0;
}

.modal-highlights {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 0.6rem;
}

.modal-highlight {
   background: var(--off-white);
   border-radius: 8px;
   padding: 0.7rem 0.9rem;
   font-size: 0.8rem;
   color: var(--primary-navy);
   font-weight: 500;
   display: flex;
   align-items: center;
   gap: 0.5rem;
}

.modal-actions {
   display: flex;
   gap: 1rem;
   margin-top: 0.5rem;
   flex-wrap: wrap;
}

.modal-btn-primary {
   flex: 1;
   background: linear-gradient(135deg, var(--secondary-gold), var(--light-gold));
   color: var(--dark-navy);
   padding: 0.9rem 1.5rem;
   border-radius: 50px;
   font-weight: 700;
   font-size: 0.9rem;
   text-align: center;
   text-decoration: none;
   border: none;
   cursor: pointer;
   transition: transform 0.2s, box-shadow 0.2s;
   box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.modal-btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 28px rgba(201, 169, 97, 0.55);
}

.modal-btn-outline {
   flex: 1;
   background: transparent;
   color: var(--primary-navy);
   border: 2px solid var(--primary-navy);
   padding: 0.9rem 1.5rem;
   border-radius: 50px;
   font-weight: 600;
   font-size: 0.9rem;
   text-align: center;
   text-decoration: none;
   cursor: pointer;
   transition: all 0.2s;
}

.modal-btn-outline:hover {
   background: var(--primary-navy);
   color: white;
}

/* Make bag product images show click cursor */
#bags .product-img-wrap {
   cursor: pointer;
}

@media (max-width: 768px) {
   .modal-inner {
      grid-template-columns: 1fr;
      max-height: 95vh;
   }

   .modal-gallery {
      border-radius: 20px 20px 0 0;
      position: static;
      padding: 1.5rem;
   }

   .modal-info {
      padding: 1.5rem;
   }

   .modal-features-list {
      grid-template-columns: 1fr;
   }

   .modal-highlights {
      grid-template-columns: 1fr;
   }

   .modal-product-name {
      font-size: 1.4rem;
   }
}

/* Global mobile */
@media (max-width: 768px) {
   .section-title {
      font-size: 2.4rem;
   }

   #hero {
      padding-top: 100px;
   }

   .hero-inner {
      padding: 3rem 1.5rem;
   }

   #trust-bar {
      padding: 3rem 1.5rem;
   }

   #collections {
      padding: 5rem 1.5rem;
   }

   .bags-header {
      padding: 0 1.5rem;
   }

   .highlights-panel {
      padding: 4rem 1.5rem;
   }

   .why-inner,
   .contact-inner {
      padding: 0 1.5rem;
   }

   #cta,
   #contact,
   #why-us {
      padding: 5rem 1.5rem;
   }

   .cta-buttons {
      flex-direction: column;
      align-items: center;
   }

   #cta h2 {
      font-size: 2.4rem;
   }
}

@media (max-width: 480px) {
   .hero-text h1 {
      font-size: 2.2rem;
      letter-spacing: -1px;
   }

   .btn-primary,
   .btn-outline,
   .btn-dark,
   .btn-outline-dark {
      width: 100%;
      text-align: center;
   }
}

/* ── INQUIRY MODAL ── */
#inquiry-modal {
   display: none;
   position: fixed;
   inset: 0;
   z-index: 2000;
   background: rgba(0, 10, 20, 0.85);
   backdrop-filter: blur(6px);
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   overflow-y: auto;
}

#inquiry-modal.open {
   display: flex;
}

.inquiry-modal-inner {
   background: #fff;
   border-radius: 20px;
   max-width: 640px;
   width: 100%;
   padding: 2.5rem;
   position: relative;
   box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
   animation: modalIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
   max-height: 92vh;
   overflow-y: auto;
   margin: auto;
}

.inquiry-modal-header {
   margin-bottom: 1.5rem;
}

.inquiry-modal-header h3 {
   font-size: 1.6rem;
   font-weight: 700;
   color: var(--primary-navy);
   margin-bottom: 0.25rem;
}

.inquiry-modal-header p {
   font-size: 0.85rem;
   color: #888;
}

.inquiry-product-badge {
   display: none;
   align-items: center;
   gap: 0.5rem;
   background: rgba(201, 169, 97, 0.1);
   border: 1px solid rgba(201, 169, 97, 0.4);
   color: var(--primary-navy);
   font-size: 0.82rem;
   font-weight: 700;
   padding: 0.4rem 1rem;
   border-radius: 20px;
   margin-bottom: 1.5rem;
   width: fit-content;
}

.inquiry-product-badge span {
   color: var(--secondary-gold);
}

.inquiry-form-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1rem;
}

.inquiry-field {
   display: flex;
   flex-direction: column;
   gap: 0.3rem;
}

.inquiry-field.full-width {
   grid-column: 1 / -1;
}

.inquiry-field label {
   font-size: 0.78rem;
   font-weight: 600;
   color: #555;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.inquiry-field label .optional {
   font-weight: 400;
   color: #aaa;
   text-transform: none;
   letter-spacing: 0;
   font-size: 0.75rem;
}

.inquiry-field input,
.inquiry-field textarea {
   border: 1.5px solid rgba(0, 61, 92, 0.15);
   border-radius: 8px;
   padding: 0.7rem 0.9rem;
   font-size: 0.9rem;
   font-family: 'Poppins', sans-serif;
   color: #333;
   transition: border-color 0.2s;
   outline: none;
   width: 100%;
   background: white;
}

.inquiry-field input:focus,
.inquiry-field textarea:focus {
   border-color: var(--secondary-gold);
   box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.12);
}

.inquiry-field textarea {
   resize: vertical;
   min-height: 100px;
}

.inquiry-error {
   font-size: 0.75rem;
   color: #e53e3e;
   min-height: 1em;
}

.inquiry-submit-btn {
   width: 100%;
   background: linear-gradient(135deg, var(--secondary-gold), var(--light-gold));
   color: var(--dark-navy);
   border: none;
   border-radius: 50px;
   padding: 1rem;
   font-size: 1rem;
   font-weight: 700;
   font-family: 'Poppins', sans-serif;
   cursor: pointer;
   margin-top: 1rem;
   transition: transform 0.2s, box-shadow 0.2s;
   box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.inquiry-submit-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 28px rgba(201, 169, 97, 0.55);
}

.inquiry-submit-btn:disabled {
   opacity: 0.65;
   cursor: not-allowed;
   transform: none;
}

/* ── TOAST ── */
#inquiry-toast {
   position: fixed;
   bottom: 2rem;
   left: 50%;
   transform: translateX(-50%) translateY(120px);
   background: var(--dark-navy);
   color: white;
   padding: 1rem 2rem;
   border-radius: 50px;
   font-size: 0.9rem;
   font-weight: 500;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
   z-index: 3000;
   transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   border-left: 3px solid var(--secondary-gold);
   white-space: nowrap;
   pointer-events: none;
}

#inquiry-toast.visible {
   transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
   .inquiry-form-grid {
      grid-template-columns: 1fr;
   }

   .inquiry-modal-inner {
      padding: 1.5rem;
   }

   #inquiry-toast {
      font-size: 0.8rem;
      padding: 0.8rem 1.5rem;
      white-space: normal;
      text-align: center;
      max-width: 85vw;
   }
}
