/* ===========================
   KOTHARI ENTERPRISES — STYLES
   =========================== */

:root {
  --navy: #1C2B4A;
  --navy-dark: #111B2E;
  --gold: #B8963E;
  --gold-light: #D4AF6A;
  --silver: #6B7B8D;
  --light-bg: #F5F6F8;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #6B7280;
  --border: #E2E6EA;
  --shadow: 0 8px 40px rgba(28,43,74,0.10);
  --shadow-lg: 0 20px 60px rgba(28,43,74,0.15);
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { line-height: 1.75; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 4rem 0; }
.bg-light { background: var(--light-bg); }

/* SECTION LABELS */
.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,150,62,0.10);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-tag.light {
  color: var(--gold-light);
  background: rgba(255,255,255,0.15);
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title { color: var(--navy); margin-bottom: 0.75rem; }
.section-sub { color: var(--text-light); font-size: 1.05rem; }

/* Bold inline section label used in About page splits */
.section-tag-bold {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo-img { height: 72px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
/* Secondary horizontal logo — transparent bg, fills header height */
.logo-secondary {
  height: 68px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
/* Footer secondary logo — inverted so it shows white on dark navy */
.footer-logo-secondary {
  height: 140px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.95;
}
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-size: 1.05rem; font-weight: 500; color: var(--navy);
  padding: 0.5rem 1.1rem; border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { background: var(--light-bg); color: var(--navy); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta {
  background: var(--navy); color: var(--white) !important;
  padding: 0.6rem 1.5rem; border-radius: 8px; margin-left: 0.5rem;
  font-size: 1.05rem;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }
.nav-cta.active { background: var(--navy) !important; color: var(--white) !important; }
.nav-cta.active::after { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; padding: 0.85rem 2rem;
  border-radius: 8px; font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition);
  letter-spacing: 0.03em;
}
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,62,0.3); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-white-sm { background: var(--white); color: var(--navy); font-size: 0.82rem; padding: 0.5rem 1.2rem; border-radius: 6px; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }
.btn-full { width: 100%; text-align: center; }
.mt { margin-top: 1.5rem; }

/* ============ HERO CAROUSEL ============ */
.hero { position: relative; height: 85vh; min-height: 560px; overflow: hidden; }
.carousel { width: 100%; height: 100%; position: relative; }
.carousel-track {
  display: flex; width: 400%; height: 100%;
  transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
}
.slide {
  width: 25%; flex-shrink: 0; background-size: cover; background-position: center;
  position: relative;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,27,46,0.75) 0%, rgba(28,43,74,0.5) 100%);
}
.hero-content {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center; color: var(--white); width: 90%; max-width: 780px; z-index: 2;
  animation: heroFadeIn 1.2s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 30px)); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem; font-weight: 500;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 700;
  line-height: 1.1; margin-bottom: 1.25rem; color: var(--white);
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.carousel-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 3; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background var(--transition), transform var(--transition); }
.dot.active { background: var(--gold); transform: scale(1.3); }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3); color: white;
  width: 50px; height: 50px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.carousel-arrow:hover { background: var(--gold); }
.carousel-arrow.left { left: 2rem; }
.carousel-arrow.right { right: 2rem; }

/* ============ SPLIT LAYOUT ============ */
.split-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }
.split-text { display: flex; flex-direction: column; align-items: flex-start; }
.body-text { color: var(--text-light); margin-bottom: 1rem; font-size: 1.02rem; }
.rounded-img { border-radius: var(--radius); object-fit: cover; width: 100%; height: 480px; }
.split-img { position: relative; }
.img-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--gold); color: var(--white);
  padding: 1rem 1.5rem; border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700;
  box-shadow: var(--shadow);
}

/* ZOOM ON HOVER */
.zoom-hover {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s;
  overflow: hidden;
}
.zoom-hover:hover { transform: scale(1.04); box-shadow: var(--shadow-lg); }

/* ============ PRODUCT CARDS ============ */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(28,43,74,0.07);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
  animation-delay: var(--delay);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-img-wrap { position: relative; overflow: hidden; height: 220px; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .card-img { transform: scale(1.08); }
.card-overlay {
  position: absolute; inset: 0; background: rgba(28,43,74,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
/* Devices with a real mouse/pointer: reveal the overlay on hover only */
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .card-overlay { opacity: 1; }
}
/* Touch devices (phones/tablets): show the overlay right away so one tap works */
@media (hover: none), (pointer: coarse) {
  .card-overlay { opacity: 1; background: rgba(28,43,74,0.35); }
}
.card-body { padding: 1.25rem 1.5rem 1.5rem; }
.card-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ============ WHY CHOOSE US ============ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem;
  text-align: center; box-shadow: 0 2px 16px rgba(28,43,74,0.06);
  border-bottom: 3px solid transparent;
  transition: all var(--transition); animation-delay: var(--delay);
}
.why-card:hover { border-bottom-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--silver));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--white); font-size: 1.5rem;
}
.why-card h4 { color: var(--navy); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: var(--text-light); }

/* ============ QUOTE SECTION ============ */
.quote-section { position: relative; padding: 5rem 0; overflow: hidden; }
.quote-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.quote-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.quote-inner { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 8rem; color: var(--gold); line-height: 0.5; margin-bottom: 1.5rem; opacity: 0.6; }
blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic; color: var(--white); line-height: 1.5; margin-bottom: 1.5rem;
}
cite { font-size: 0.9rem; color: var(--gold-light); letter-spacing: 0.1em; font-style: normal; }

/* ============ CTA BANNER ============ */
.cta-banner { background: linear-gradient(135deg, var(--light-bg) 0%, #E8ECF0 100%); }
.cta-inner { text-align: center; }
.cta-inner h2 { color: var(--navy); margin-bottom: 2rem; font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
.cta-inner h2 span { color: var(--gold); }

/* ============ PAGE HERO ============ */
.page-hero {
  position: relative; height: 50vh; min-height: 380px;
  background-size: cover; background-position: center; padding-top: 80px;
  display: flex; align-items: center; justify-content: center;
}
.page-hero-short { height: 38vh; min-height: 300px; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,27,46,0.78) 0%, rgba(28,43,74,0.55) 100%); }
.page-hero-content { position: relative; z-index: 1; text-align: center; color: white; padding: 0 2rem; }
.page-hero-content h1 { color: white; margin-bottom: 0.75rem; }
.page-hero-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ============ PROMISE SECTION ============ */
.promise-section { position: relative; padding: 4rem 0; overflow: hidden; }
.promise-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); }
.promise-inner { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.promise-inner h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.promise-inner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.8; }

/* ============ TEAM ============ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem 1.5rem;
  text-align: center; box-shadow: 0 2px 16px rgba(28,43,74,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--silver));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--white); font-size: 1.8rem;
}
.team-card h4 { color: var(--navy); margin-bottom: 0.25rem; }
.team-card p { color: var(--gold); font-size: 0.88rem; font-weight: 500; }

/* ============ CONTACT PAGE ============ */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.contact-card {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px rgba(28,43,74,0.07); text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-top-color: var(--gold); }
.contact-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--silver));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--white); font-size: 1.5rem;
}
.contact-card h4 { color: var(--navy); margin-bottom: 0.75rem; }
.contact-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1rem; }
.contact-link { color: var(--gold); font-weight: 500; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.4rem; transition: color var(--transition); word-break: break-all; }
.contact-link:hover { color: var(--navy); }

.team-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.team-list-item { display: flex; align-items: center; gap: 1rem; }
.tl-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--silver));
  display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem;
}
.team-list-item strong { display: block; color: var(--navy); font-size: 1rem; }
.team-list-item span { color: var(--text-light); font-size: 0.85rem; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ============ ENQUIRY PAGE ============ */
.enquiry-layout { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.enquiry-form-wrap h2 { margin-bottom: 0.5rem; }

.enquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: 8px;
  border: 1.5px solid var(--border); font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,62,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { 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='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

.radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; padding-top: 0.25rem; }
.radio-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.92rem; color: var(--text); }
.radio-label input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; }

.form-note { text-align: center; font-size: 0.85rem; color: var(--text-light); margin-top: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }

.form-success { text-align: center; padding: 3rem 2rem; }
.success-icon { font-size: 4rem; color: #22C55E; margin-bottom: 1rem; }
.form-success h3 { color: var(--navy); margin-bottom: 0.75rem; }
.form-success p { color: var(--text-light); margin-bottom: 2rem; }
.success-actions { display: flex; justify-content: center; }

.enquiry-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(28,43,74,0.07);
  border-left: 4px solid var(--gold);
}
.sidebar-card h4 { color: var(--navy); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.sidebar-card h4 i { color: var(--gold); }
.sidebar-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }
.sidebar-link { color: var(--gold); font-size: 0.85rem; font-weight: 500; word-break: break-all; }
.highlight-card { text-align: center; background: var(--light-bg); border-left: none; }
.highlight-card h4 { justify-content: center; }

/* ============ FOOTER ============ */
.footer { background: #0d1b2e; color: rgba(255,255,255,0.8); padding: 2.25rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 1.5rem;
  align-items: start;
  padding-left: 0;
}
.footer-brand {
  padding-left: 0;
}
.footer-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 1.25rem;
  margin-left: -1.8rem;
  display: block;
}
.footer-logo-secondary {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin-bottom: 1.25rem;
  margin-left: -1.8rem;
}
.footer-brand p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  padding-left: 0;
}
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links h5, .footer-contact h5 {
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.footer-links a {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
  padding: 0.15rem 0;
}
.footer-links a:hover { color: var(--white); }
.footer-contact p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.65;
  padding: 0.1rem 0;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 1rem; }
.footer .container {
  padding-left: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 2rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); letter-spacing: 0.02em; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.5s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}
.wa-tooltip {
  position: absolute; right: 72px; background: var(--navy-dark); color: white;
  padding: 0.4rem 0.9rem; border-radius: 6px; font-size: 0.8rem; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.wa-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--navy-dark);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; transition-delay: var(--delay, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .enquiry-layout { grid-template-columns: 1fr; }
  .enquiry-sidebar { grid-row: 1; display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section-pad { padding: 3rem 0; }
  .split-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-layout.reverse { direction: ltr; }
  .rounded-img { height: 300px; }
  .img-badge { bottom: -12px; right: 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .enquiry-sidebar { grid-template-columns: 1fr; }
  .nav { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: white; padding: 1rem; box-shadow: var(--shadow); gap: 0.25rem; }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
  .hero-btns { flex-direction: column; align-items: center; }
  .carousel-arrow { display: none; }
}

/* ---- INDUSTRIES GRID ---- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.industry-card { border-radius: 12px; overflow: hidden; }
.industry-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.industry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.industry-card:hover .industry-img-wrap img { transform: scale(1.07); }
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,0.82) 0%, rgba(13,27,46,0.2) 60%, transparent 100%);
}
.industry-label {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  text-align: center;
}
.industry-label i { font-size: 1.3rem; color: var(--gold); }
.industry-label span { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- INDUSTRIES GRID v2 — label below image ---- */
.industry-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}
.industry-img-wrap { position: relative; height: 200px; overflow: hidden; }
.industry-img-wrap img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.industry-card:hover .industry-img-wrap img { transform: scale(1.06); }
.industry-overlay { display: none; }
.industry-label {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.9rem 0.5rem;
  color: var(--navy);
  background: #fff;
}
.industry-label i { font-size: 1.1rem; color: var(--gold); }
.industry-label span { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); }

/* ---- INDUSTRIES FIX — overlay + label on image ---- */
.industry-overlay {
  display: block !important;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,0.85) 0%, rgba(13,27,46,0.15) 60%, transparent 100%);
}
.industry-label {
  position: absolute !important;
  bottom: 1rem;
  left: 0;
  right: 0;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: #fff !important;
  background: transparent !important;
}
.industry-label i { font-size: 1.2rem; color: var(--gold) !important; }
.industry-label span { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #fff !important; }

/* ---- MOSAIC GRID ---- */
.mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1rem;
}
.mosaic-large {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.mosaic-tall {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.mosaic-small {
  grid-column: 3;
}
.mosaic-grid .industry-img-wrap {
  height: 100%;
}
.mosaic-grid .industry-card {
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
}

@media (max-width: 768px) {
  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .mosaic-large, .mosaic-tall { grid-column: auto; grid-row: auto; }
  .mosaic-grid .industry-img-wrap { height: 180px; }
}

/* ---- MOSAIC GRID v3 — fixed ---- */
.mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  grid-template-rows: 260px 260px;
  gap: 1rem;
}
.mosaic-large {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.mosaic-tall {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.mosaic-small {
  grid-column: 3;
  grid-row: auto;
  height: 100%;
}
.mosaic-grid .industry-card {
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
}
.mosaic-grid .industry-img-wrap {
  height: 100%;
  position: relative;
}

@media (max-width: 900px) {
  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .mosaic-large { grid-column: 1; grid-row: 1 / span 2; }
  .mosaic-tall  { grid-column: 2; grid-row: 1 / span 2; }
  .mosaic-small { grid-column: auto; grid-row: auto; }
}

@media (max-width: 600px) {
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .mosaic-large, .mosaic-tall { grid-column: 1; grid-row: auto; }
  .mosaic-grid .industry-img-wrap { height: 200px; }
}

/* ---- MOSAIC v4 — left big, mid tall, right 2x2 ---- */
.mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 1rem;
  height: 540px;
}
.mosaic-left, .mosaic-mid { height: 100%; }
.mosaic-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 100%;
}
.mosaic-right .industry-card { border-radius: 14px; overflow: hidden; height: 100%; }
.mosaic-right .industry-img-wrap { height: 100%; position: relative; }
.mosaic-left .industry-card,
.mosaic-mid .industry-card { border-radius: 14px; overflow: hidden; }

@media (max-width: 900px) {
  .mosaic-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .mosaic-left { grid-column: 1 / span 2; height: 280px; }
  .mosaic-mid  { grid-column: 1; height: 220px; }
  .mosaic-right { grid-column: 2; height: 220px; grid-template-columns: 1fr; grid-template-rows: repeat(4, 1fr); }
}

@media (max-width: 580px) {
  .mosaic-grid { grid-template-columns: 1fr; height: auto; }
  .mosaic-left, .mosaic-mid { grid-column: 1; height: 220px; }
  .mosaic-right { grid-column: 1; height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
}

/* ---- MOSAIC v5 — big left + 3x2 right grid ---- */
.mosaic-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 1rem;
  align-items: stretch;
}
.mosaic-left {
  height: 100%;
  min-height: 500px;
}
.mosaic-left .industry-card {
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
}
.mosaic-left .industry-img-wrap {
  height: 100%;
  position: relative;
}
.mosaic-right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 100%;
}
.mosaic-right .industry-card {
  border-radius: 14px;
  overflow: hidden;
}
.mosaic-right .industry-img-wrap {
  height: 240px;
  position: relative;
}

@media (max-width: 900px) {
  .mosaic-grid { grid-template-columns: 1fr; }
  .mosaic-left { min-height: 280px; }
  .mosaic-right { grid-template-columns: 1fr 1fr; }
  .mosaic-right .industry-img-wrap { height: 180px; }
}

@media (max-width: 580px) {
  .mosaic-right { grid-template-columns: 1fr; }
}

/* ---- INDUSTRIES MOSAIC FINAL ---- */
.ind-mosaic {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  align-items: stretch;
}
.ind-big { display: flex; flex-direction: column; }
.ind-big .ind-img-wrap { border-radius: 14px; overflow: hidden; flex: 1; position: relative; min-height: 0; }
.ind-big .ind-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ind-right-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ind-card { display: flex; flex-direction: column; }
.ind-img-wrap { border-radius: 12px; overflow: hidden; height: 180px; position: relative; }
.ind-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ind-card:hover .ind-img-wrap img,
.ind-big:hover .ind-img-wrap img { transform: scale(1.05); }
.ind-name {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  padding: 0.6rem 0 0.2rem;
}

@media (max-width: 900px) {
  .ind-mosaic { grid-template-columns: 1fr; }
  .ind-big .ind-img-wrap { height: 260px; }
  .ind-right-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .ind-right-grid { grid-template-columns: 1fr 1fr; }
  .ind-img-wrap { height: 140px; }
}

/* ---- NAV DROPDOWN ---- */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 240px;
  z-index: 999;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.2s, color 0.2s;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover, .dropdown-item.active { background: var(--navy); color: #fff; }

/* ---- PRODUCT CATEGORY GRID ---- */
.prod-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.prod-cat-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.prod-cat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }
.prod-cat-img-wrap { position: relative; height: 220px; overflow: hidden; }
.prod-cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prod-cat-card:hover .prod-cat-img-wrap img { transform: scale(1.06); }
.prod-cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,46,0.35), transparent); }
.prod-cat-body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.prod-cat-body h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.3; }
.prod-cat-body p { font-size: 0.83rem; color: #666; line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.prod-cat-link { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600; color: var(--gold); letter-spacing: 0.03em; }
.prod-cat-link i { transition: transform 0.2s; }
.prod-cat-card:hover .prod-cat-link i { transform: translateX(4px); }

/* ---- BREADCRUMB ---- */
.breadcrumb-bar {
  background: #f5f5f3;
  border-bottom: 1px solid #e8e8e4;
  padding: 0.75rem 0;
}
.breadcrumb-bar .container {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  row-gap: 0.3rem;
}
.breadcrumb-bar a { color: var(--navy); text-decoration: none; font-weight: 500; }
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar i { font-size: 0.65rem; color: #bbb; }
.breadcrumb-bar span { color: #999; }

/* ---- SUBCATEGORY SECTIONS ---- */
.subcat-section { margin-bottom: 3.5rem; }
.subcat-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.75rem; }
.subcat-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy); white-space: nowrap; }
.subcat-divider { flex: 1; height: 1px; background: linear-gradient(to right, #d4aa5f, transparent); }
.subcat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.subcat-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.subcat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.11); }
.subcat-img-wrap { height: 200px; overflow: hidden; }
.subcat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.subcat-card:hover .subcat-img-wrap img { transform: scale(1.05); }
.placeholder-card .placeholder-inner {
  height: 200px;
  background: #f0f0ee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #bbb;
}
.placeholder-card .placeholder-inner i { font-size: 2rem; }
.placeholder-card .placeholder-inner span { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 0.04em; }
.subcat-card-body { padding: 1rem 1.1rem 1.25rem; }
.subcat-card-body h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; }
.subcat-card-body p { font-size: 0.8rem; color: #777; line-height: 1.5; margin-bottom: 0.75rem; }
.btn-enquire {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.subcat-card:hover .btn-enquire { gap: 0.5rem; }

@media (max-width: 1024px) {
  .prod-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .subcat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .prod-cat-grid { grid-template-columns: 1fr; }
  .subcat-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- COATED ABRASIVE CATEGORY GRID ---- */
.ca-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.ca-grid-3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .ca-grid-3col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ca-grid-3col { grid-template-columns: 1fr; } }
.ca-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ca-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.13); }
.ca-img-wrap { position: relative; height: 300px; overflow: hidden; }
.ca-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ca-card:hover .ca-img-wrap img { transform: scale(1.05); }
.ca-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,46,0.55) 0%, transparent 60%); }
.ca-number {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
.ca-body { padding: 1.5rem 1.75rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.ca-body h3 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.3; }
.ca-body p { font-size: 0.85rem; color: #666; line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.ca-cta { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.ca-card:hover .ca-cta { gap: 0.7rem; }

/* ---- PRODUCT DETAIL PAGE ---- */
.pd-header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #eee;
}
.pd-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: #999;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.pd-back:hover { color: var(--navy); }
.pd-title { font-family: var(--font-serif); font-size: 2.2rem; color: var(--navy); line-height: 1.2; }
.pd-desc { font-size: 0.92rem; color: #555; line-height: 1.85; margin-bottom: 1.5rem; }

/* Gallery */
.pd-gallery { display: grid; grid-template-columns: 1fr 160px; gap: 1rem; }
.pd-main-img { border-radius: 14px; overflow: hidden; background: #f5f5f3; height: 480px; }
.pd-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; transition: opacity 0.2s; }
.pd-thumbs { display: flex; flex-direction: column; gap: 0.75rem; }
.pd-thumb {
  border-radius: 10px;
  overflow: hidden;
  height: 110px;
  background: #f5f5f3;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 0.4rem; }
.pd-thumb.active { border-color: var(--gold); }
.pd-thumb:hover { border-color: var(--navy); }
.pd-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 1.5rem;
  cursor: default;
}

/* Also Explore */
.also-explore-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy); margin-bottom: 1.5rem; }
.also-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 700px) { .also-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .also-grid { grid-template-columns: 1fr; } }
.also-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 0.6rem; }
.also-img { border-radius: 12px; overflow: hidden; height: 180px; background: transparent; box-shadow: none; transition: transform 0.3s; }
.also-img img { width: 100%; height: 100%; object-fit: contain; padding: 0.5rem; transition: transform 0.4s; }
.also-card:hover .also-img { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.also-card span { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600; color: var(--navy); text-align: center; letter-spacing: 0.03em; }

@media (max-width: 900px) {
  .ca-grid { grid-template-columns: 1fr; }
  .pd-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .pd-gallery { grid-template-columns: 1fr; }
  .pd-thumbs { flex-direction: row; }
  .pd-thumb { height: 80px; width: 80px; }
}
