/* ========================================
   BIZOMAX TILES — Global Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #1a1a2e;
  --accent: #c9a84c;
  --accent-dark: #b08a3a;
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --border-gray: #eee;
  --dark-footer: #0f0f1a;
  --text: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  top: 0 !important;
  position: static !important;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: 'Poppins', sans-serif; border: none; outline: none; }
input, textarea, select { font-family: 'Poppins', sans-serif; outline: none; }

/* Google Translate hide */
.goog-te-banner-frame, .goog-te-banner-frame.skiptranslate, .skiptranslate,
.goog-te-gadget, #google_translate_element { display: none !important; }
iframe.skiptranslate { display: none !important; }
body { top: 0 !important; }

/* ── Loading Screen ── */
.loading-screen {
  position: fixed; inset: 0; z-index: 100000;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s cubic-bezier(0.77,0,0.175,1);
}
.loading-screen.hide { transform: translateY(-100%); }
.loading-tiles { position: relative; width: 80px; height: 80px; }
.loading-tile {
  position: absolute; width: 34px; height: 34px; background: var(--white);
  border-radius: 4px;
}
.loading-tile:nth-child(1) { top: -40px; left: -40px; }
.loading-tile:nth-child(2) { top: -40px; right: -40px; }
.loading-tile:nth-child(3) { bottom: -40px; left: -40px; }
.loading-tile:nth-child(4) { bottom: -40px; right: -40px; }
.loading-logo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: var(--accent); font-size: 14px; font-weight: 700;
  letter-spacing: 0.2em; white-space: nowrap; opacity: 0;
}

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--accent); z-index: 100001; transition: width 0.1s linear;
}

/* ── Custom Cursor (Desktop) ── */
.cursor-dot {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 100002;
  transform: translate(-50%, -50%); transition: opacity 0.3s;
}
.cursor-ring {
  width: 30px; height: 30px; border: 2px solid var(--accent); border-radius: 50%;
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 100002;
  transform: translate(-50%, -50%); transition: transform 0.3s, opacity 0.3s;
}
.cursor-hover .cursor-dot { opacity: 0; }
.cursor-hover .cursor-ring { transform: translate(-50%, -50%) scale(2); }
@media (max-width: 768px) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
  padding: 18px 40px; display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 12px 40px;
}
.navbar-logo {
  font-size: 22px; font-weight: 800; color: var(--accent);
  letter-spacing: 0.05em; display: flex; align-items: center; gap: 10px;
}
.navbar-logo img { height: 40px; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--white); font-size: 14px; font-weight: 500;
  position: relative; padding: 4px 0; transition: color 0.3s;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-btn {
  background: transparent; color: var(--white); border: none; cursor: pointer;
  font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 20px; transition: all 0.3s;
}
.navbar.scrolled .lang-btn { color: var(--text); }
.lang-btn:hover { background: rgba(201,168,76,0.15); color: var(--accent); }

.admin-login-btn {
  padding: 6px 18px; border-radius: 20px; border: 1px solid var(--accent);
  color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  background: transparent; transition: all 0.3s;
}
.admin-login-btn:hover { background: var(--accent); color: var(--white); }

/* Mobile Menu */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 10001;
  background: none; border: none; padding: 5px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--white); transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: var(--white); z-index: 10000; padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.77,0,0.175,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  display: block; padding: 14px 0; color: var(--text); font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--border-gray); transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 14px 20px; }
}

/* ── Language Dropdown ── */
.lang-dropdown {
  position: fixed; top: 70px; right: 40px; z-index: 10002;
  background: var(--white); border: 2px solid var(--accent);
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 24px; display: none; max-width: 600px; width: 90vw;
}
.lang-dropdown.open { display: block; }
.lang-dropdown h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--primary);
}
.lang-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.lang-item {
  padding: 8px 10px; border-radius: 8px; cursor: pointer; font-size: 13px;
  font-weight: 500; transition: all 0.2s; text-align: center; white-space: nowrap;
  border: 1px solid transparent;
}
.lang-item:hover { background: rgba(201,168,76,0.1); border-color: var(--accent); }
.lang-item.active { background: var(--accent); color: var(--white); }
@media (max-width: 600px) { .lang-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Hero Section ── */
.hero-section {
  position: relative; width: 100%; height: 100vh; overflow: hidden;
  background-image: none;
  background-size: cover; background-position: center;
}
.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.65));
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 20px;
}
.hero-badge {
  display: inline-block; padding: 10px 24px; border: 1px solid rgba(201,168,76,0.5);
  border-radius: 30px; color: var(--accent); font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; margin-bottom: 24px; backdrop-filter: blur(5px);
  background: rgba(201,168,76,0.08);
}
.hero-title {
  font-size: clamp(32px, 5vw, 64px); font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 16px; min-height: 1.2em;
}
.hero-title .cursor-blink {
  display: inline-block; width: 3px; height: 1em; background: var(--accent);
  margin-left: 4px; vertical-align: text-bottom;
  animation: blink 1s infinite;
}
.hero-sub { color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 400; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-gold {
  padding: 14px 36px; background: var(--accent); color: var(--white);
  border-radius: 4px; font-size: 15px; font-weight: 600; letter-spacing: 0.03em;
  transition: all 0.3s; border: 2px solid var(--accent);
}
.btn-gold:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(201,168,76,0.3); }
.btn-outline-white {
  padding: 14px 36px; background: transparent; color: var(--white);
  border-radius: 4px; font-size: 15px; font-weight: 600; letter-spacing: 0.03em;
  transition: all 0.3s; border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--white); font-size: 28px;
  animation: bounce 2s infinite;
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute; background: rgba(201,168,76,0.3); border-radius: 2px;
}

/* ── Section Commons ── */
.section { padding: 100px 0; }
.section-light { background: var(--light-gray); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-overline {
  font-size: 12px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--primary);
  margin-bottom: 12px;
}
.section-subtitle { font-size: 15px; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* ── Manufacturing Showcase ── */
.manufacturing-section {
  min-height: 80vh; position: relative; padding: 100px 0;
  background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1920');
  background-attachment: fixed; background-size: cover; background-position: center;
}
.manufacturing-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(26,26,46,0.88);
}
.manufacturing-section .container { position: relative; z-index: 2; }
.mfg-pill {
  display: inline-block; padding: 8px 20px; background: rgba(201,168,76,0.15);
  border: 1px solid var(--accent); border-radius: 20px;
  color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.mfg-title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--white); margin-bottom: 12px; }
.mfg-sub { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 650px; margin-bottom: 12px; }
.mfg-est { color: var(--accent); font-weight: 700; font-size: 14px; margin-bottom: 40px; }
.mfg-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.mfg-card {
  background: var(--white); padding: 30px 20px; border-radius: 8px; text-align: center;
  transition: transform 0.3s; cursor: default;
}
.mfg-card:hover { transform: translateY(-5px); }
.mfg-card-icon { font-size: 32px; margin-bottom: 12px; }
.mfg-card-title { font-size: 15px; font-weight: 700; color: var(--primary); }
.mfg-images { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 40px; }
.mfg-img {
  border-radius: 8px; overflow: hidden; position: relative; cursor: pointer;
  height: 200px;
}
.mfg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.mfg-img:hover img { transform: scale(1.1); }
.mfg-img::after {
  content: ''; position: absolute; inset: 0; background: rgba(201,168,76,0);
  transition: background 0.3s;
}
.mfg-img:hover::after { background: rgba(201,168,76,0.2); }
.btn-outline-gold {
  padding: 14px 36px; background: transparent; border: 2px solid var(--accent);
  color: var(--accent); border-radius: 4px; font-size: 15px; font-weight: 600;
  transition: all 0.3s; display: inline-block;
}
.btn-outline-gold:hover { background: var(--accent); color: var(--white); }

@media (max-width: 768px) {
  .mfg-cards { grid-template-columns: repeat(2, 1fr); }
  .mfg-images { grid-template-columns: repeat(2, 1fr); }
  .manufacturing-section { background-attachment: scroll; }
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--primary); padding: 60px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center;
}
.stat-item .stat-number {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: var(--accent);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }

/* ── About Brief ── */
.about-brief { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrapper {
  position: relative; border: 4px solid var(--accent); border-radius: 8px;
  overflow: hidden;
}
.about-img-wrapper img { width: 100%; height: 400px; object-fit: cover; }
.about-badge {
  position: absolute; top: 20px; left: -10px; background: var(--accent); color: var(--white);
  padding: 8px 20px; font-size: 12px; font-weight: 700; transform: rotate(-3deg);
}
.about-text .section-overline { text-align: left; }
.about-text h2 { font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.about-text p { color: var(--text-light); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.about-checks { margin-bottom: 24px; }
.about-checks li {
  padding: 6px 0; color: var(--text); font-size: 14px; font-weight: 500;
}
.about-checks li span { color: var(--accent); margin-right: 8px; font-weight: 700; }
.btn-text-gold {
  color: var(--accent); font-weight: 600; font-size: 15px; display: inline-flex;
  align-items: center; gap: 8px; transition: gap 0.3s;
}
.btn-text-gold:hover { gap: 14px; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* ── Product Categories ── */
.categories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.category-card {
  height: 350px; border-radius: 8px; overflow: hidden; position: relative;
  cursor: pointer; transition: all 0.4s;
}
.category-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s;
}
.category-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.category-card-content {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
}
.category-card-content h3 { color: var(--white); font-size: 20px; font-weight: 700; }
.category-card-content p { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 4px; }
.category-cta {
  color: var(--accent); font-size: 13px; font-weight: 600; margin-top: 8px;
  opacity: 0; transform: translateY(10px); transition: all 0.3s;
}
.category-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.category-card:hover img { transform: scale(1.1); }
.category-card:hover .category-cta { opacity: 1; transform: translateY(0); }
.category-card:hover { outline: 2px solid var(--accent); }
.category-card-viewall {
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  flex-direction: column; height: 350px; border-radius: 8px; cursor: pointer;
  transition: all 0.4s;
}
.category-card-viewall h3 { color: var(--accent); font-size: 22px; font-weight: 700; }
.category-card-viewall:hover { background: #242447; transform: translateY(-8px); }
@media (max-width: 768px) { .categories-grid { grid-template-columns: 1fr; } }

/* ── Parallax Divider ── */
.parallax-divider {
  height: 400px; position: relative;
  background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1920');
  background-attachment: fixed; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.parallax-divider::before {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.7);
}
.parallax-content {
  position: relative; z-index: 2; text-align: center; padding: 0 20px;
}
.gold-line { width: 60px; height: 2px; background: var(--accent); margin: 0 auto 20px; }
.parallax-content p {
  color: var(--white); font-size: clamp(20px, 3vw, 32px); font-weight: 300;
  font-style: italic; max-width: 700px; line-height: 1.5;
}
@media (max-width: 768px) { .parallax-divider { background-attachment: scroll; } }

/* ── By Space ── */
.space-cards {
  display: flex; gap: 20px; overflow-x: auto; padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}
.space-card {
  min-width: 260px; height: 380px; border-radius: 8px; overflow: hidden;
  position: relative; cursor: pointer; scroll-snap-align: start; flex-shrink: 0;
}
.space-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s;
}
.space-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
  transition: background 0.3s;
}
.space-card-content {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
  transform: translateY(20px); transition: transform 0.3s;
}
.space-card-content h3 { color: var(--accent); font-size: 20px; font-weight: 700; }
.space-card-btn {
  color: var(--white); font-size: 13px; font-weight: 600; margin-top: 8px;
  opacity: 0; transition: opacity 0.3s;
}
.space-card:hover img { transform: scale(1.1); }
.space-card:hover .space-card-content { transform: translateY(0); }
.space-card:hover .space-card-btn { opacity: 1; }

/* ── Trust Section ── */
.trust-section { padding: 100px 0; }
.marquee-container { overflow: hidden; margin-bottom: 60px; }
.marquee-track {
  display: flex; gap: 30px; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track.reverse { animation-direction: reverse; }
.marquee-item {
  font-size: 15px; font-weight: 500; color: var(--text); flex-shrink: 0;
}
.trust-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.trust-stats .big-stat {
  font-size: 56px; font-weight: 800; color: var(--accent); line-height: 1;
}
.trust-stats .stat-desc {
  font-size: 13px; color: var(--text-light); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 20px;
}
.cert-badge {
  background: var(--white); border: 2px solid var(--accent); border-radius: 8px;
  padding: 16px; text-align: center; transition: transform 0.3s;
}
.cert-badge:hover { transform: translateY(-3px); }
.cert-badge .check { color: var(--accent); font-size: 24px; margin-bottom: 6px; }
.cert-badge p { font-size: 12px; font-weight: 700; color: var(--primary); }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trust-why li {
  padding: 10px 0; font-size: 14px; color: var(--text); border-bottom: 1px solid var(--border-gray);
}
.trust-why li span { color: var(--accent); margin-right: 8px; }
@media (max-width: 768px) { .trust-grid { grid-template-columns: 1fr; } }

/* ── Why Choose Us ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white); padding: 36px 28px; border-radius: 8px;
  border-top: 3px solid var(--accent); transition: all 0.4s;
  box-shadow: var(--shadow-sm);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.why-icon { font-size: 40px; margin-bottom: 16px; }
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

/* ── Testimonials ── */
.testimonials-section { padding: 80px 0; background: var(--light-gray); }
.testimonial-card {
  background: var(--white); padding: 30px; border-radius: 8px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.testimonial-stars { color: var(--accent); font-size: 18px; margin-bottom: 16px; }
.testimonial-text {
  font-style: italic; color: var(--text-light); font-size: 14px;
  line-height: 1.7; margin-bottom: 20px;
}
.testimonial-author { font-weight: 700; color: var(--primary); font-size: 15px; }
.testimonial-company { font-size: 13px; color: var(--text-lighter); }

/* ── Certifications Marquee ── */
.cert-marquee {
  padding: 25px 0; overflow: hidden; background: var(--white);
}
.cert-marquee-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.cert-marquee-item {
  color: var(--accent); font-size: 14px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; flex-shrink: 0;
}

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.4s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 220px; overflow: hidden; position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.1); }
.blog-date {
  position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--white);
  padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 600;
}
.blog-card-body { padding: 20px; }
.blog-card-body h3 {
  font-size: 16px; font-weight: 700; color: var(--primary);
  margin-bottom: 8px; transition: color 0.3s;
}
.blog-card:hover .blog-card-body h3 { color: var(--accent); }
.blog-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.blog-card-body a { color: var(--accent); font-size: 13px; font-weight: 600; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── Partner CTA ── */
.partner-cta {
  background: var(--primary); padding: 100px 0; position: relative; overflow: hidden;
}
.partner-cta::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(201,168,76,0.03) 20px, rgba(201,168,76,0.03) 40px
  );
}
.partner-grid {
  display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 40px;
  position: relative; z-index: 2; align-items: center;
}
.partner-stats .p-stat-num {
  font-size: 42px; font-weight: 800; color: var(--accent); line-height: 1;
}
.partner-stats .p-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 16px;
}
.partner-center { text-align: center; }
.partner-center .section-overline { color: var(--accent); }
.partner-center h2 { color: var(--white); font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.partner-center p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.partner-buttons {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 8px;
}
.partner-buttons .btn-gold,
.partner-buttons .btn-outline-white { white-space: nowrap; }
.partner-respond {
  color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 16px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.partner-contact { color: rgba(255,255,255,0.85); }
.partner-contact p { font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.partner-contact .btn-whatsapp {
  display: inline-block; padding: 10px 24px; background: #25D366; color: var(--white);
  border-radius: 4px; font-size: 14px; font-weight: 600; margin-top: 8px;
}
.partner-contact .work-hours {
  color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 12px;
}
@media (max-width: 768px) { .partner-grid { grid-template-columns: 1fr; text-align: center; } }

/* ── Footer ── */
.footer {
  background: var(--dark-footer); padding: 80px 0 0; color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
}
.footer-logo {
  font-size: 22px; font-weight: 800; color: var(--accent); margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
  font-size: 16px; transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer h4 {
  color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 20px;
  position: relative; padding-bottom: 10px;
}
.footer h4::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px;
  background: var(--accent);
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.3s;
}
.footer ul li a:hover { color: var(--accent); }
.footer-contact p { font-size: 14px; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-bottom { text-align: center !important; width: 100% !important; display: block !important; margin: 0 auto !important; padding: 20px !important;
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  text-align: center; font-size: 13px; margin-top: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── WhatsApp Button ── */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 9998;
}
.whatsapp-btn {
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  position: relative; transition: transform 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: pulseRing 2s infinite;
}
.whatsapp-pulse:nth-child(2) { animation-delay: 1s; }

/* ── Popup ── */
.inquiry-popup {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(5px);
  align-items: center; justify-content: center;
}
.inquiry-popup.show { display: flex; }
.popup-card {
  background: var(--white); max-width: 500px; width: 90%; border-radius: 16px;
  border-top: 4px solid var(--accent); padding: 50px 40px 40px; position: relative;
  animation: popupIn 0.5s ease;
}
.popup-close {
  position: absolute; top: 15px; right: 15px; width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid var(--border-gray); background: #f9f9f9;
  cursor: pointer; font-size: 18px; color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: all 0.3s;
}
.popup-close:hover { background: var(--accent); color: var(--white); transform: rotate(90deg); }
.popup-card h2 { font-size: 24px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.popup-card > p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }

/* ── Forms ── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--primary);
  margin-bottom: 6px;
}
.form-control {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border-gray);
  border-radius: 8px; font-size: 14px; transition: border-color 0.3s;
  background: var(--white);
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-control.error { border-color: #e74c3c; }
textarea.form-control { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--accent); color: var(--white);
  border: none; border-radius: 8px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
}
.btn-submit:hover { background: var(--accent-dark); }

/* ── Page Hero (Inner pages) ── */
.page-hero {
  padding: 140px 0 60px; text-align: center; position: relative;
  background: linear-gradient(135deg, var(--primary), #2d2d4e);
}
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 48px); font-weight: 700; }
.page-hero p { color: var(--accent); font-size: 16px; margin-top: 8px; }
.breadcrumb {
  margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 80px 0; }
.contact-map { border-radius: 12px; overflow: hidden; margin-bottom: 30px; }
.contact-map iframe { width: 100%; height: 300px; border: none; }
.contact-info-list p {
  font-size: 14px; color: var(--text); margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 10px;
}
.contact-info-list .icon { color: var(--accent); font-size: 18px; min-width: 20px; }
.contact-form-card {
  background: var(--white); padding: 40px; border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 {
  font-size: 24px; font-weight: 700; color: var(--primary); margin-bottom: 24px;
}
.contact-social { display: flex; gap: 12px; margin-top: 20px; }
.contact-social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-gray);
  display: flex; align-items: center; justify-content: center; color: var(--text-light);
  transition: all 0.3s;
}
.contact-social a:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── About Page Specific ── */
.about-hero {
  height: 70vh; position: relative; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; background-attachment: fixed;
}
.about-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.about-hero h1 {
  position: relative; z-index: 2; color: var(--white);
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
}
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 0; bottom: 0;
  width: 2px; background: var(--accent);
}
.timeline-item { margin-bottom: 30px; position: relative; }
.timeline-dot {
  position: absolute; left: -34px; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--accent); border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent);
}
.timeline-year { font-size: 16px; font-weight: 700; color: var(--accent); }
.timeline-desc { font-size: 14px; color: var(--text-light); }

.tilt-card {
  border: 3px solid var(--accent); border-radius: 12px; overflow: hidden;
  position: relative; transition: transform 0.1s ease-out;
  box-shadow: var(--shadow-md);
}
.tilt-card img { width: 100%; height: 100%; object-fit: cover; }
.tilt-badge {
  position: absolute; bottom: 20px; right: 20px; background: var(--accent);
  color: var(--white); padding: 8px 20px; border-radius: 4px;
  font-size: 14px; font-weight: 700;
}

/* Mission/Vision/Values */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mvv-card {
  background: var(--white); padding: 60px 40px; border-radius: 8px;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
  border-top: 4px solid var(--accent); transition: all 0.4s; min-height: 400px;
}
.mvv-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.mvv-watermark {
  position: absolute; top: -20px; right: -10px; font-size: 180px; font-weight: 900;
  color: var(--accent); opacity: 0.05; line-height: 1; pointer-events: none;
}
.mvv-icon { font-size: 48px; margin-bottom: 16px; color: var(--accent); }
.mvv-line { width: 40px; height: 2px; background: var(--accent); margin-bottom: 16px; }
.mvv-card h3 { font-size: 28px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.mvv-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.mvv-card ul li { padding: 6px 0; font-size: 14px; color: var(--text-light); }
.mvv-card ul li span { color: var(--accent); margin-right: 8px; }
.mvv-gold-bar {
  position: absolute; left: 0; top: 20%; width: 4px; height: 60%;
  background: var(--accent); border-radius: 2px;
}
@media (max-width: 768px) { .mvv-grid { grid-template-columns: 1fr; } }

/* Process steps */
.process-steps {
  display: flex; gap: 0; overflow-x: auto; padding-bottom: 20px;
}
.process-step {
  min-width: 150px; text-align: center; padding: 20px 16px; position: relative;
  flex-shrink: 0;
}
.process-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent);
  color: var(--white); font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.process-step h4 { font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.process-step p { font-size: 11px; color: var(--text-light); }

/* QC Cards */
.qc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.qc-card {
  background: var(--white); padding: 30px 20px; border-radius: 8px; text-align: center;
  border-top: 3px solid var(--accent); transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.qc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.qc-card .icon { font-size: 36px; margin-bottom: 12px; }
.qc-card h4 { font-size: 15px; font-weight: 700; color: var(--primary); }
@media (max-width: 768px) { .qc-grid { grid-template-columns: repeat(2, 1fr); } }

/* Glass cards */
.glass-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15); padding: 30px 20px;
  border-radius: 12px; text-align: center; transition: all 0.3s;
}
.glass-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.glass-card .icon { font-size: 32px; margin-bottom: 10px; }
.glass-card h4 { color: var(--white); font-size: 15px; font-weight: 600; }

/* ── Hide Google Translate default UI ── */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { font-size: 0 !important; }

/* ── Toast ── */
.toast {
  position: fixed; top: 20px; right: 20px; z-index: 100003;
  background: #2ecc71; color: var(--white); padding: 14px 24px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  transform: translateX(120%); transition: transform 0.3s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.toast.show { transform: translateX(0); }
.toast.error { background: #e74c3c; }

/* ── Success Animation ── */
.success-overlay {
  position: fixed; inset: 0; z-index: 100004;
  background: rgba(201,168,76,0.95); display: none;
  align-items: center; justify-content: center; flex-direction: column;
}
.success-overlay.show { display: flex; }
.success-check { font-size: 64px; color: var(--white); margin-bottom: 16px; }
.success-text { color: var(--white); font-size: 20px; font-weight: 600; }

/* ── Page Transition ── */
.page-transition {
  position: fixed; top: 0; left: 0; width: 0; height: 100%; z-index: 100005;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.77,0,0.175,1);
}
.page-transition.active { width: 100%; }

/* ── Edit Mode ── */
.edit-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99998;
  background: var(--accent); color: var(--white); padding: 10px 20px;
  display: none; align-items: center; justify-content: center; gap: 16px;
  font-size: 13px; font-weight: 600;
}
.edit-bar.show { display: flex; }
.edit-bar button {
  padding: 6px 16px; border-radius: 4px; font-size: 12px; font-weight: 600;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.5); background: transparent;
  color: var(--white); transition: all 0.3s;
}
.edit-bar button:hover { background: rgba(255,255,255,0.2); }
.edit-pill {
  position: fixed; top: 80px; left: 20px; z-index: 99997;
  background: var(--accent); color: var(--white); padding: 8px 16px;
  border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer;
  display: none;
}

[data-editable].editing { outline: 2px dashed var(--accent); cursor: text; }

/* Utility */
.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  /* Sections */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .section-subtitle { font-size: 14px; }

  /* Hero */
  .hero-section { height: 90vh; }
  .hero-badge { font-size: 9px; padding: 8px 16px; letter-spacing: 0.15em; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; }
  .hero-buttons { gap: 10px; }
  .btn-gold, .btn-outline-white { padding: 12px 24px; font-size: 13px; }

  /* Gold Marquee */
  .gold-marquee { padding: 10px 0; }
  .gold-marquee .marquee-track span { font-size: 11px; }

  /* Page Hero */
  .page-hero { padding: 100px 20px 40px; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 14px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 16px; }

  /* Partner CTA */
  .partner-grid { gap: 24px; }
  .partner-center h2 { font-size: 24px; }
  .partner-buttons { gap: 10px; }
  .partner-buttons .btn-gold,
  .partner-buttons .btn-outline-white { padding: 12px 20px; font-size: 13px; }

  /* Footer */
  .footer { padding: 50px 0 20px; }
  .footer-logo { font-size: 20px; }

  /* WhatsApp Float */
  .whatsapp-float { bottom: 16px; right: 16px; }
  .whatsapp-btn { width: 50px; height: 50px; font-size: 22px; }

  /* Contact page */
  .contact-info-card { padding: 24px; }
}

@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .btn-gold, .btn-outline-white { padding: 10px 18px; font-size: 12px; }
  .hero-section { height: 85vh; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item .stat-number { font-size: 32px; }
  .partner-buttons { flex-direction: column; align-items: center; }
}
/* ================================
   🔥 NAVBAR LOGO FINAL FIX
   ================================ */

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Image logo fix */
.navbar-logo img {
  height: 50px !important;
  width: auto !important;
  border-radius: 0 !important;
  object-fit: contain;
  display: block !important;
}

/* Text remove */
.navbar-logo span {
  display: none !important;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.08);
}

.social-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}