/*
Theme Name: MIH Textile Industry
Theme URI: https://mihtextile.com/
Author: MIH Textile Team
Author URI: https://mihtextile.com/
Description: Premium B2B WordPress Theme for Knitted Garment Manufacturer & Exporter.
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mih-textile
*/

:root {
  --color-navy-dark: #050B14;
  --color-navy: #0B192C;
  --color-navy-light: #1A2942;
  --color-gold: #D4AF37;
  --color-gold-hover: #C59B27;
  --color-gold-light: rgba(212, 175, 55, 0.15);
  --color-white: #FFFFFF;
  --color-cream: #F8FAFC;
  --color-charcoal: #1E293B;
  --color-gray-muted: #64748B;
  --color-border: #E2E8F0;
  --color-border-dark: rgba(255, 255, 255, 0.15);
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(11, 25, 44, 0.06);
  --shadow-lg: 0 20px 50px rgba(11, 25, 44, 0.1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

/* Base Reset & Smooth Scroll */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--color-navy-dark);
  line-height: 1.18;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1rem;
}

.text-muted {
  color: var(--color-gray-muted);
}

.text-gold {
  color: var(--color-gold);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 95px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

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

/* Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--color-navy-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-brand {
  color: var(--color-gold);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(201, 161, 90, 0.2);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.8s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Top Announcement Bar */
.top-bar {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-dark);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-info a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-bar-info a:hover {
  color: var(--color-gold);
}

.top-bar-social {
  display: flex;
  gap: 14px;
}

.top-bar-social a {
  color: rgba(255, 255, 255, 0.7);
}

.top-bar-social a:hover {
  color: var(--color-gold);
}

/* Header & Nav */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1000;
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  max-height: var(--logo-max-height, 52px);
}

.site-logo img {
  max-height: var(--logo-max-height, 52px);
  width: auto;
  object-fit: contain;
}

.site-logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy-dark);
  letter-spacing: -0.5px;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-navigation div {
  display: flex;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  color: var(--color-charcoal);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}

.main-navigation a:hover {
  color: var(--color-gold);
}

/* Fix for Button styles inside navigation */
.main-navigation a.btn, 
.btn {
  padding: 14px 28px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  white-space: nowrap;
}

.btn-primary, 
.main-navigation a.btn-primary {
  background-color: var(--color-navy) !important;
  color: var(--color-gold) !important;
  border: 1px solid var(--color-navy) !important;
  box-shadow: 0 4px 15px rgba(11, 25, 44, 0.15) !important;
}

.btn-primary:hover, 
.main-navigation a.btn-primary:hover {
  background-color: var(--color-gold) !important;
  color: var(--color-navy-dark) !important;
  border: 1px solid var(--color-gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3) !important;
}

.btn-gold, 
.main-navigation a.btn-gold {
  background-color: var(--color-gold) !important;
  color: var(--color-navy-dark) !important;
  border: 1px solid var(--color-gold) !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2) !important;
}

.btn-gold:hover, 
.main-navigation a.btn-gold:hover {
  background-color: var(--color-navy-dark) !important;
  color: var(--color-gold) !important;
  border: 1px solid var(--color-navy-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 25, 44, 0.3) !important;
}

.btn-outline, 
.main-navigation a.btn-outline {
  background-color: transparent !important;
  color: var(--color-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: none !important;
}

.btn-outline:hover, 
.main-navigation a.btn-outline:hover {
  background-color: var(--color-white) !important;
  color: var(--color-navy-dark) !important;
  transform: translateY(-2px);
  border: 1px solid var(--color-white) !important;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--color-navy);
  transition: transform 0.25s ease, color 0.25s ease;
}

.menu-toggle:hover {
  color: var(--color-gold);
  transform: scale(1.08);
}

.hamburger-icon {
  display: block;
}

@media (min-width: 901px) and (max-width: 1100px) {
  .main-navigation ul {
    gap: 16px;
  }
  .main-navigation a {
    font-size: 0.9rem;
  }
  .main-navigation a.btn {
    padding: 10px 20px !important;
  }
}

@media (max-width: 900px) {
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
  }
  .main-navigation.toggled {
    display: flex;
  }
  .main-navigation div {
    width: 100%;
  }
  .main-navigation ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .main-navigation li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.05rem;
  }
  .main-navigation li:last-child a {
    border-bottom: none;
  }
  .main-navigation a.btn-primary {
    margin-left: 0 !important;
    margin-top: 1.5rem !important;
    width: 100%;
    justify-content: center !important;
  }
  .menu-toggle {
    display: block;
  }
  .top-bar-inner {
    justify-content: center;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--color-navy-dark);
  padding: 100px 0 80px;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 880px;
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 161, 90, 0.15);
  border: 1px solid rgba(201, 161, 90, 0.3);
  color: var(--color-gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .hero-overline {
    font-size: 0.65rem;
    padding: 4px 10px;
    letter-spacing: 0.5px;
    white-space: normal;
    text-align: center;
  }
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.hero-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.85rem;
    line-height: 1.15;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    padding: 0 10px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2rem;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
}

/* Section Header */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title .badge {
  display: inline-block;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--color-gray-muted);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* About / Overview Section Redesign */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 4.5rem;
}

@media (min-width: 900px) {
  .about-hero-wrapper {
    grid-template-columns: 0.85fr 1fr;
  }
}

/* About image with decorative frame + floating stat badge */
.about-image-block {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.5;
  z-index: 2;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--color-white);
}

.about-image-block::after {
  content: '';
  position: absolute;
  top: 24px;
  left: -24px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-floating-badge {
  position: absolute;
  bottom: -28px;
  right: -20px;
  z-index: 3;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-gold);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-width: 190px;
}

.afb-number {
  color: var(--color-gold);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.afb-label {
  color: var(--color-navy-dark);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@media (max-width: 640px) {
  .about-image-block::after {
    left: -12px;
    top: 12px;
  }
  .about-floating-badge {
    right: 0;
    bottom: -20px;
    padding: 1rem 1.25rem;
  }
  .afb-number {
    font-size: 1.75rem;
  }
}

.about-content-block h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.about-content-block p {
  color: var(--color-gray-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  border: 1px solid rgba(11, 25, 44, 0.04);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-icon-gold {
  background: var(--color-gold-light);
  color: var(--color-gold);
}

.feature-icon-navy {
  background: rgba(15, 33, 64, 0.08);
  color: var(--color-navy);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--color-gray-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Stats Counter Section */
.stats-bar {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  color: var(--color-white);
  padding: 50px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 161, 90, 0.25);
  box-shadow: var(--shadow-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  color: var(--color-gold);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stat-item h3 {
    font-size: 2.25rem;
  }
  .stat-item p {
    font-size: 0.85rem;
  }
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(11, 25, 44, 0.04);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

.product-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: transparent;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 22, 40, 0.88);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 1.75rem;
}

.product-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.product-info p {
  color: var(--color-gray-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.product-link {
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-link:hover {
  color: var(--color-gold);
}

/* 6-Step Manufacturing Process — Connected Timeline */
.process-timeline {
  position: relative;
  max-width: 880px;
  margin: 3.5rem auto 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-gold) 0,
    var(--color-gold) 6px,
    transparent 6px,
    transparent 12px
  );
}

.process-timeline-item {
  position: relative;
  display: flex;
  gap: 28px;
  padding-bottom: 2.5rem;
}

.process-timeline-item:last-child {
  padding-bottom: 0;
}

.process-timeline-marker {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.process-timeline-content {
  flex: 1;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-top: 4px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.process-timeline-content:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.process-timeline-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--color-gold-light);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.process-timeline-icon svg {
  width: 22px;
  height: 22px;
}

.process-timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy-dark);
}

.process-timeline-content p {
  font-size: 0.95rem;
  color: var(--color-gray-muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .process-timeline::before {
    left: 23px;
  }
  .process-timeline-marker {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
    border-width: 3px;
  }
  .process-timeline-item {
    gap: 18px;
  }
  .process-timeline-content {
    padding: 1.35rem 1.5rem;
  }
}

/* Two Column Showcase (Machinery / Logistics) */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.showcase-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

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

.bullet-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.85rem;
  font-weight: 600;
  color: var(--color-navy-dark);
}

.bullet-list svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

/* Request Quote Section Redesign (Fully Decent & Lovely UI) */
.quote-section-wrapper {
  background: linear-gradient(135deg, #07101E 0%, #0F2140 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.quote-section-wrapper::before,
.quote-section-wrapper::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.quote-section-wrapper::before {
  width: 420px;
  height: 420px;
  background: rgba(201, 161, 90, 0.16);
  top: -180px;
  right: -120px;
}

.quote-section-wrapper::after {
  width: 320px;
  height: 320px;
  background: rgba(201, 161, 90, 0.08);
  bottom: -140px;
  left: -100px;
}

.quote-section-wrapper .showcase-grid {
  position: relative;
  z-index: 1;
}

.quote-left-info h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-top: 0.5rem;
}

.quote-left-info p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--color-gold-light);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text label {
  display: block;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.contact-detail-text a, 
.contact-detail-text span {
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 600;
}

/* Glassmorphism Quote Form Card */
.quote-glass-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-gold);
  color: var(--color-charcoal);
  position: relative;
  overflow: hidden;
}

.quote-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
}

.quote-card-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}

.quote-card-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.quote-card-header p {
  color: var(--color-gray-muted);
  font-size: 0.9rem;
  margin: 0;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--color-navy-dark);
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #F4F6F8;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-charcoal);
  transition: all 0.2s ease;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(201, 161, 90, 0.25);
}

select.form-control-custom {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%230F2140'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.btn-submit-gold {
  background: var(--color-navy) !important;
  color: var(--color-gold) !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 16px 32px !important;
  border: 2px solid var(--color-gold) !important;
  border-radius: var(--radius-md) !important;
  cursor: pointer !important;
  width: 100% !important;
  box-shadow: 0 4px 15px rgba(11, 19, 43, 0.1) !important;
  transition: all 0.3s ease !important;
}

.btn-submit-gold:hover {
  background: var(--color-gold) !important;
  color: var(--color-navy-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 161, 90, 0.4) !important;
}

/* Footer */
.site-footer {
  background: var(--color-navy-dark);
  color: var(--color-white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.footer-col h4 {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid var(--color-border-dark);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Footer Logo Styling */
.footer-logo-wrapper {
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  max-width: 280px;
  height: auto;
  max-height: var(--footer-logo-max-height, 70px);
  object-fit: contain;
  display: block;
  transition: max-height 0.3s ease;
}

/* Page Header & Single/Page Template Styling */
.page-header-banner {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  color: var(--color-white);
  padding: 60px 0 50px;
  border-bottom: 3px solid var(--color-gold);
  position: relative;
}

.page-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumbs a {
  color: var(--color-gold);
  font-weight: 600;
}

.page-breadcrumbs a:hover {
  color: var(--color-white);
}

.page-breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.4);
}

.page-breadcrumbs .current {
  color: var(--color-white);
  font-weight: 500;
}

.page-title {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.post-meta .sep {
  color: var(--color-gold);
}

.page-main-content {
  background-color: var(--color-cream);
}

.page-content-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  max-width: 1000px;
  margin: 0 auto;
}

.single-post-thumbnail {
  margin-bottom: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.single-post-thumbnail img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* Rich Typographic Hierarchy for Entry Content */
.entry-content {
  color: var(--color-charcoal);
  line-height: 1.8;
  font-size: 1.05rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--color-navy-dark);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.entry-content h1 { font-size: 2rem; border-bottom: 2px solid var(--color-gold-light); padding-bottom: 0.5rem; }
.entry-content h2 { font-size: 1.65rem; }
.entry-content h3 { font-size: 1.35rem; }
.entry-content h4 { font-size: 1.15rem; }

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content a {
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 3px;
}

.entry-content a:hover {
  color: var(--color-gold);
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.entry-content ul li,
.entry-content ol li {
  margin-bottom: 0.5rem;
}

.entry-content blockquote {
  border-left: 4px solid var(--color-gold);
  background: var(--color-cream);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--color-navy-dark);
  font-size: 1.1rem;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.entry-content th,
.entry-content td {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  text-align: left;
}

.entry-content th {
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 700;
}

.entry-content tr:nth-child(even) {
  background: var(--color-cream);
}

.entry-content img {
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  max-width: 100%;
  height: auto;
}

.entry-content pre,
.entry-content code {
  background: var(--color-navy-dark);
  color: var(--color-gold);
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  border-radius: var(--radius-sm);
  padding: 0.2em 0.4em;
  font-size: 0.9em;
}

.entry-content pre {
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.entry-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

/* General Mobile Breakpoint Fixes */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    padding: 70px 0 50px;
    background-position: center center;
    background-size: cover;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.78) 0%, rgba(15, 33, 64, 0.68) 100%);
  }
  .page-content-card {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-md);
  }
  .quote-glass-card {
    padding: 2rem 1.5rem;
  }
  .about-floating-badge {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 1.25rem;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .trust-strip {
    gap: 16px;
  }
  .trust-item {
    font-size: 0.8rem;
  }
}


/* ==========================================================================
   Concierge Quote Modal Popup
   ========================================================================== */
.cq-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 11, 20, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cq-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cq-modal-container {
  background: #F4F1EB;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  padding: 50px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

@media (max-width: 600px) {
  .cq-modal-container {
    padding: 40px 20px 20px 20px;
  }
  .cq-modal-close {
    top: 10px;
    right: 10px;
  }
}

.cq-modal-overlay.is-open .cq-modal-container {
  transform: translateY(0) scale(1);
}

.cq-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-charcoal);
  transition: all 0.2s ease;
  z-index: 10;
}

.cq-modal-close:hover {
  background: rgba(0,0,0,0.05);
  transform: rotate(90deg);
}

.cq-modal-close svg {
  width: 18px;
  height: 18px;
}

/* Steps */
.cq-step {
  display: none;
  animation: cqFadeInUp 0.4s ease forwards;
}

.cq-step.active {
  display: block;
}

@keyframes cqFadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.cq-step-header {
  margin-bottom: 30px;
}

.cq-step-count {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cq-step-header h2 {
  font-size: 2rem;
  color: var(--color-navy-dark);
  margin: 0;
  font-weight: 500;
}

/* Product Grid */
.cq-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .cq-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cq-product-btn {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 16px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.cq-product-btn:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

.cq-product-btn.selected {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.cq-step-footer {
  display: flex;
  justify-content: flex-end;
}

.cq-footer-split {
  justify-content: space-between;
  align-items: center;
}

/* Step 2 Inputs */
.cq-form-group {
  margin-bottom: 25px;
}

.cq-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-navy-dark);
  font-size: 0.95rem;
}

.cq-input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: #FFFFFF;
  color: var(--color-charcoal);
  transition: all 0.3s ease;
}

.cq-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Custom Range Slider */
.cq-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--color-navy-dark);
  border-radius: 3px;
  outline: none;
}

.cq-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gold);
  cursor: pointer;
  border: 4px solid #F4F1EB;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.1s;
}

.cq-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.cq-back-btn {
  background: transparent;
  border: none;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
  padding: 10px 0;
}
.cq-back-btn:hover {
  color: var(--color-gold);
}

/* Success Step */
.cq-step-success {
  text-align: center;
  padding: 40px 20px;
}

.cq-success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cq-success-icon svg {
  width: 30px;
  height: 30px;
}

/* Modal Responsiveness */
.cq-form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.cq-form-row .cq-form-group {
  margin-bottom: 0;
  flex: 1;
}
@media (max-width: 600px) {
  .cq-form-row {
    flex-direction: column;
    gap: 15px;
  }
}

/* Page Header Centering */
.page-header-banner {
  background: var(--color-navy-dark);
  padding: 60px 0;
  border-bottom: 4px solid var(--color-gold);
  text-align: center;
}
.page-header-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-breadcrumbs {
  color: var(--color-gold);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-breadcrumbs a {
  color: var(--color-gold);
}
.page-breadcrumbs a:hover {
  color: var(--color-white);
}
.page-breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.5);
}
.page-breadcrumbs .current {
  color: var(--color-white);
}
.page-header-banner .page-title {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 0;
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  animation: wahFadeIn 0.6s 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes wahFadeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.whatsapp-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
}

.whatsapp-float-btn svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  display: block;
}

.whatsapp-float-label {
  background: #ffffff;
  color: var(--color-charcoal);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-float:hover .whatsapp-float-btn {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover .whatsapp-float-label {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse ring */
.whatsapp-float-btn::after {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: waPulse 2.4s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 20px;
    right: 18px;
  }
  .whatsapp-float-btn {
    width: 50px;
    height: 50px;
  }
  .whatsapp-float-btn svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-float-btn::after {
    width: 50px;
    height: 50px;
  }
  /* Hide label on very small screens to keep it minimal */
  .whatsapp-float-label {
    display: none;
  }
}

/* ==========================================================================
   Scroll-triggered Animations
   ========================================================================== */

/* Elements that will animate on scroll — initially hidden */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay helpers */
.anim-delay-1 { transition-delay: 0.08s; }
.anim-delay-2 { transition-delay: 0.16s; }
.anim-delay-3 { transition-delay: 0.24s; }
.anim-delay-4 { transition-delay: 0.32s; }
.anim-delay-5 { transition-delay: 500ms; }
.anim-delay-6 { transition-delay: 600ms; }

.contact-detail-text p {
  margin-bottom: 0 !important;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .anim-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .whatsapp-float-btn::after {
    animation: none;
  }
}

/* ==========================================================================
   Custom Pages — Shared Hero Banner (About / Services / Products)
   ========================================================================== */
.cp-hero-banner {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: var(--color-navy-dark);
}

.cp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,11,20,0.82) 0%, rgba(11,25,44,0.72) 100%);
}

.cp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.cp-hero-inner .page-breadcrumbs {
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.cp-hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.cp-hero-inner h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cp-hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .cp-hero-banner {
    padding: 70px 0 55px;
    min-height: 280px;
  }
  .cp-hero-desc {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Custom Pages — Split Grid (Image + Content side-by-side)
   ========================================================================== */
.cp-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .cp-split-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cp-split-grid--img-first {
    grid-template-columns: 0.9fr 1fr;
  }
  .cp-split-grid--content-first {
    grid-template-columns: 1fr 0.9fr;
  }
}

.cp-split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.cp-split-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.cp-split-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  margin-bottom: 1.25rem;
}

.cp-split-content p {
  color: var(--color-gray-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.cp-split-content .badge {
  display: block;
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Custom Pages — Value / Feature Cards Grid
   ========================================================================== */
.cp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.cp-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.35);
}

.cp-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.cp-card-icon svg {
  width: 26px;
  height: 26px;
}

.cp-card-icon--gold {
  background: var(--color-gold-light);
  color: var(--color-gold);
}

.cp-card-icon--navy {
  background: rgba(11,25,44,0.07);
  color: var(--color-navy);
}

.cp-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy-dark);
}

.cp-card > p {
  color: var(--color-gray-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.65;
}

/* ==========================================================================
   Custom Pages — CTA Band
   ========================================================================== */
.cp-cta-band {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  padding: 64px 0;
  border-top: 3px solid var(--color-gold);
}

.cp-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cp-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cp-cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cp-cta-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .cp-cta-btns .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ==========================================================================
   Services Page — Service Cards (numbered)
   ========================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}

.svc-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.35);
}

.svc-card--wide {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .svc-card--wide {
    grid-column: 1;
  }
}

.svc-card-num {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(11,25,44,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.svc-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--color-navy-dark);
}

.svc-card > p {
  color: var(--color-gray-muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.svc-features {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-features li {
  font-size: 0.875rem;
  color: var(--color-charcoal);
  font-weight: 600;
  padding-left: 1.25rem;
  position: relative;
}

.svc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
}

.svc-features--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 24px;
}

/* ==========================================================================
   Services Page — Process Row (horizontal steps)
   ========================================================================== */
.svc-process-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.svc-step {
  flex: 1;
  min-width: 180px;
  max-width: 260px;
  text-align: center;
  padding: 0 1rem;
}

.svc-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-gold);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-md);
}

.svc-step h4 {
  font-size: 1.05rem;
  color: var(--color-navy-dark);
  margin-bottom: 0.5rem;
}

.svc-step p {
  font-size: 0.88rem;
  color: var(--color-gray-muted);
  margin: 0;
  line-height: 1.6;
}

.svc-step-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--color-gold) 0, var(--color-gold) 6px, transparent 6px, transparent 12px);
  margin-top: 28px;
}

@media (max-width: 768px) {
  .svc-process-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .svc-step-connector {
    width: 2px;
    height: 28px;
    background: repeating-linear-gradient(to bottom, var(--color-gold) 0, var(--color-gold) 6px, transparent 6px, transparent 12px);
    margin: 0;
  }
}

/* ==========================================================================
   Services Page — Image Row (two images side-by-side)
   ========================================================================== */
.svc-image-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 1rem;
}

@media (min-width: 700px) {
  .svc-image-row {
    grid-template-columns: 1fr 1fr;
  }
}

.svc-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.svc-image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.svc-image-card:hover img {
  transform: scale(1.04);
}

.svc-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(5,11,20,0.85));
  color: var(--color-white);
  padding: 2rem 1.5rem 1.25rem;
  font-weight: 700;
  font-size: 1.05rem;
}

/* ==========================================================================
   Products Page — Options Section (dark bg)
   ========================================================================== */
.prd-options-section {
  background: linear-gradient(135deg, #07101E 0%, #0F2140 100%);
}

.prd-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 1rem;
}

.prd-option-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: all 0.35s ease;
}

.prd-option-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-4px);
}

.prd-option-icon {
  width: 48px;
  height: 48px;
  background: var(--color-gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.prd-option-icon svg {
  width: 24px;
  height: 24px;
}

.prd-option-card h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.prd-option-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   Products Page — Extra Tags Row
   ========================================================================== */
.prd-extra-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.prd-extra-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-navy-dark);
  white-space: nowrap;
}

.prd-extra-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.prd-extra-tags span {
  display: inline-block;
  background: var(--color-gold-light);
  color: var(--color-navy-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212,175,55,0.3);
}

/* ==========================================================================
   Products Page — Quality Assurance Badges
   ========================================================================== */
.prd-quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.pqb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy-dark);
}

.pqb-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.cp-hero-badge {
  white-space: normal !important;
  text-align: center;
  height: auto !important;
  line-height: 1.5;
  padding: 8px 16px !important;
  max-width: 100%;
}
@media (max-width: 600px) {
  .cp-hero-badge {
    font-size: 0.75rem !important;
    letter-spacing: 0.5px !important;
  }
}
.about-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,11,20,0.80) 0%, rgba(11,25,44,0.72) 100%);
}

.about-page-banner,
.services-page-banner,
.products-page-banner {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  text-align: left;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: var(--color-navy-dark);
}

.about-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-banner-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.about-banner-title {
  color: var(--color-white);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  max-width: 720px;
}

.about-banner-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-page-banner,
  .services-page-banner,
  .products-page-banner {
    padding: 70px 0 50px;
    min-height: 260px;
  }
  .about-banner-desc {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   About Us — Story Grid
   ========================================================================== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-story-grid {
    grid-template-columns: 0.85fr 1fr;
  }
}

/* ==========================================================================
   About Us — Values Grid
   ========================================================================== */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 0.5rem;
}

.about-value-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.3);
}

.about-value-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.about-value-icon svg {
  width: 26px;
  height: 26px;
}

.about-value-icon--gold {
  background: var(--color-gold-light);
  color: var(--color-gold);
}

.about-value-icon--navy {
  background: rgba(11,25,44,0.07);
  color: var(--color-navy);
}

.about-value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-navy-dark);
}

.about-value-card p {
  color: var(--color-gray-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.65;
}

/* ==========================================================================
   About Us — Commitment Grid
   ========================================================================== */
.about-commitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-commitment-grid {
    grid-template-columns: 1fr 0.9fr;
  }
}

.about-commitment-content h2 {
  font-size: 2.1rem;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   About Us / Pages — CTA Band
   ========================================================================== */
.about-cta-band {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  padding: 64px 0;
  border-top: 3px solid var(--color-gold);
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.about-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .about-cta-btns {
    justify-content: center;
  }
}

/* ==========================================================================
   Services Page — Service Cards
   ========================================================================== */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.35);
}

.service-card--wide {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .service-card--wide {
    grid-column: 1;
  }
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
}

.service-icon--gold {
  background: var(--color-gold-light);
  color: var(--color-gold);
}

.service-icon--navy {
  background: rgba(11,25,44,0.07);
  color: var(--color-navy);
}

.service-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(11,25,44,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  color: var(--color-navy-dark);
}

.service-card p {
  color: var(--color-gray-muted);
  font-size: 0.93rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.service-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-feature-list li {
  font-size: 0.875rem;
  color: var(--color-charcoal);
  font-weight: 600;
  padding-left: 1.25rem;
  position: relative;
}

.service-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
}

.service-feature-list--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 24px;
}

/* ==========================================================================
   Services Page — Process Steps
   ========================================================================== */
.services-process-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.services-step {
  flex: 1;
  min-width: 180px;
  max-width: 260px;
  text-align: center;
  padding: 0 1rem;
}

.services-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-gold);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--color-cream);
  box-shadow: var(--shadow-md);
}

.services-step h4 {
  font-size: 1.05rem;
  color: var(--color-navy-dark);
  margin-bottom: 0.5rem;
}

.services-step p {
  font-size: 0.88rem;
  color: var(--color-gray-muted);
  margin: 0;
  line-height: 1.6;
}

.services-step-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--color-gold) 0,
    var(--color-gold) 6px,
    transparent 6px,
    transparent 12px
  );
  margin-top: 28px;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .services-process-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .services-step-connector {
    width: 2px;
    height: 30px;
    background: repeating-linear-gradient(
      to bottom,
      var(--color-gold) 0,
      var(--color-gold) 6px,
      transparent 6px,
      transparent 12px
    );
    margin: 0;
    align-self: center;
  }
}

/* ==========================================================================
   Products Page — Options Section (Dark bg)
   ========================================================================== */
.products-options-section {
  background: linear-gradient(135deg, #07101E 0%, #0F2140 100%);
  position: relative;
}

.products-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 1rem;
}

.products-option-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: all 0.35s ease;
}

.products-option-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-4px);
}

.products-option-icon {
  width: 46px;
  height: 46px;
  background: var(--color-gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.products-option-icon svg {
  width: 22px;
  height: 22px;
}

.products-option-card h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.products-option-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   Products Page — Extra Tags Row
   ========================================================================== */
.products-extra-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.products-extra-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-navy-dark);
  white-space: nowrap;
}

.products-extra-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.products-extra-tags span {
  display: inline-block;
  background: var(--color-gold-light);
  color: var(--color-navy-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212,175,55,0.3);
}

/* ==========================================================================
   Products Page — Quality Assurance
   ========================================================================== */
.products-quality-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .products-quality-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.products-quality-content h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.products-quality-content p {
  color: var(--color-gray-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.products-quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.pqb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy-dark);
}

.pqb-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
}

