/* =====================================================================
   AMO PVT LTD & IS ENTERPRISES - MAIN STYLESHEET
   Luxury Mining & Mineral Export Corporate Theme
   Compatible with Hostinger & Modern Browsers
   ===================================================================== */

/* --- 1. CSS VARIABLES (Derived from Logo Colors) --- */
:root {
  --color-dark-bg: #0b1118;
  --color-dark-surface: #131c26;
  --color-dark-card: #182330;
  --color-gold: #c59b27;
  --color-gold-light: #e5c158;
  --color-gold-dark: #9c7717;
  --color-emerald: #2d5a4c;
  --color-emerald-light: #3d7866;
  --color-light-bg: #f8f9fa;
  --color-light-surface: #ffffff;
  --color-text-dark: #1b2530;
  --color-text-muted: #64748b;
  --color-text-light: #f1f5f9;
  --color-text-dim: #94a3b8;
  --color-border: rgba(197, 155, 39, 0.25);
  --color-border-subtle: rgba(255, 255, 255, 0.1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-gold: 0 10px 30px -5px rgba(197, 155, 39, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* --- 2. GLOBAL RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

/* --- 3. TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2rem, 5vw, 3.8rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.responsive-card-heading {
  font-size: clamp(1.15rem, 4vw, 1.6rem);
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(197, 155, 39, 0.15);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  max-width: 100%;
  white-space: normal;
}

.section-title-wrap {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-title-wrap p {
  color: var(--color-text-dim);
  font-size: 1.1rem;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- 4. TOP BAR & NAVIGATION --- */
.top-bar {
  background: #06090e;
  border-bottom: 1px solid var(--color-border-subtle);
  font-size: 0.875rem;
  padding: 0.6rem 0;
  color: var(--color-text-dim);
  width: 100%;
  overflow-x: hidden;
}

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

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-info a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text-dim);
}

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

.top-badge {
  background: var(--color-emerald);
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 17, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
  width: 100%;
  overflow-x: hidden;
}

.main-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: rgba(11, 17, 24, 0.98);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 15px rgba(197, 155, 39, 0.4);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--color-gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-light);
  padding: 0.5rem 0.2rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: var(--color-gold);
  color: var(--color-dark-bg);
}

/* --- 5. BUTTONS & BADGES --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  max-width: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #0b1118;
  border-color: var(--color-gold-light);
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 155, 39, 0.6);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold-light);
  border-color: var(--color-gold);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: #0b1118;
  transform: translateY(-2px);
}

.btn-emerald {
  background: var(--color-emerald);
  color: #ffffff;
  border-color: var(--color-emerald-light);
}

.btn-emerald:hover {
  background: var(--color-emerald-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* --- 6. HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(11,17,24,0.7) 0%, rgba(11,17,24,0.95) 100%), url('../images/mining_hero.jpg') center/cover no-repeat;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-overlay-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--color-text-dim);
  margin-bottom: 2.2rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-subtle);
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--color-gold-light);
  margin-bottom: 0.2rem;
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--color-text-dim);
  margin-bottom: 0;
}

.hero-card-preview {
  background: rgba(19, 28, 38, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* --- 7. SECTION CARDS & CONTAINERS --- */
.page-section {
  padding: 6rem 0;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.page-section-alt {
  background-color: var(--color-dark-surface);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

/* Desktop Grid Layouts (Unchanged for Desktop) */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.product-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}

.mini-spec-card {
  background: var(--color-dark-card);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-subtle);
  width: 100%;
  box-sizing: border-box;
}

.custom-card {
  background: var(--color-dark-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

.custom-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(197, 155, 39, 0.12);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.custom-card:hover .card-icon {
  background: var(--color-gold);
  color: var(--color-dark-bg);
}

.custom-card h3 {
  margin-bottom: 0.8rem;
}

.custom-card p {
  color: var(--color-text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- 8. FEATURE IMAGE BLOCKS --- */
.image-text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

.image-text-block.reverse {
  direction: rtl;
}

.image-text-block.reverse > * {
  direction: ltr;
}

.feature-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.feature-img-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-img-wrapper:hover img {
  transform: scale(1.05);
}

.feature-badge-over {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(11, 17, 24, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-gold);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-badge-over i {
  color: var(--color-gold-light);
  font-size: 1.3rem;
}

/* --- 9. ACCORDIONS & FAQS --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  background: var(--color-dark-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  width: 100%;
}

.faq-item.active {
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
  gap: 1rem;
}

.faq-question i {
  color: var(--color-gold-light);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 2rem 1.5rem 2rem;
  border-top: 1px solid var(--color-border-subtle);
}

.faq-answer p {
  color: var(--color-text-dim);
  font-size: 0.98rem;
  padding-top: 1rem;
}

/* --- 10. FORMS & INPUTS --- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(11, 17, 24, 0.7);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 12px rgba(197, 155, 39, 0.3);
  background: rgba(11, 17, 24, 0.9);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* Star Rating Control */
.star-rating-input {
  display: flex;
  gap: 0.5rem;
  font-size: 1.6rem;
  color: #475569;
  cursor: pointer;
  margin-bottom: 1rem;
}

.star-rating-input i.active,
.star-rating-input i:hover,
.star-rating-input i:hover ~ i {
  color: var(--color-gold-light);
}

/* --- 11. BREADCRUMB / INNER PAGE HERO --- */
.page-hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(180deg, #06090e 0%, var(--color-dark-bg) 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.1) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-dim);
  margin-top: 1rem;
}

.breadcrumb-list a:hover {
  color: var(--color-gold-light);
}

/* --- 12. FOOTER --- */
.main-footer {
  background: #05080c;
  border-top: 1px solid var(--color-border);
  padding: 5rem 0 2rem;
  color: var(--color-text-dim);
  width: 100%;
  overflow-x: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin: 1.2rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-text-dim);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact-info i {
  color: var(--color-gold-light);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

/* Floating WhatsApp & Call Widget (Strictly Fixed to Screen Viewport) */
.floating-widgets {
  position: fixed !important;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 99999 !important;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  transition: var(--transition);
  animation: floatPulse 2s infinite ease-in-out;
}

.float-whatsapp {
  background: #25d366;
}

.float-phone {
  background: var(--color-gold);
  color: #0b1118;
}

.float-btn:hover {
  transform: scale(1.12);
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- 13. OFF-CANVAS MOBILE DRAWER --- */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--color-dark-surface);
  border-left: 1px solid var(--color-border);
  z-index: 2000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.drawer-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.drawer-links a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-light);
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--color-border-subtle);
}

.drawer-links a.active, .drawer-links a:hover {
  color: var(--color-gold-light);
}

/* Flash alerts */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.alert-success {
  background: rgba(45, 90, 76, 0.3);
  border: 1px solid var(--color-emerald);
  color: #a7f3d0;
}

.alert-error {
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid #ef4444;
  color: #fca5a5;
}

/* --- 14. RESPONSIVE BREAKPOINTS (STRICT MOBILE FLOATING BUTTON FIX) --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-card-preview {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .image-text-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .image-text-block.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  /* Strict 100% viewport width constraint */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .page-section {
    padding: 3rem 0 !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .container {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .hero-overlay-glow {
    display: none !important;
  }

  /* Force Grid Cards to Flex Column */
  .card-grid-2, .card-grid-3, .card-grid-4 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 1.25rem !important;
    box-sizing: border-box !important;
  }

  .product-mini-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  .mini-spec-card {
    padding: 0.85rem 0.75rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .custom-card {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.25rem 1rem !important;
    margin: 0 !important;
    overflow: hidden !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .custom-card h3, .responsive-card-heading {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }

  .custom-card p {
    font-size: 0.9rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .custom-card ul {
    width: 100% !important;
  }

  .custom-card ul li {
    font-size: 0.85rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Header & Navigation Mobile */
  .nav-menu, .header-cta .btn {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
  }
  .header-inner {
    height: 70px;
  }
  .brand-logo img {
    width: 42px;
    height: 42px;
  }
  .brand-title {
    font-size: 1rem;
  }
  .brand-subtitle {
    font-size: 0.6rem;
  }
  .top-bar-inner {
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }
  .top-info {
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.78rem;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 3rem 0 2.5rem !important;
    min-height: auto;
  }
  
  .hero-content h1 {
    font-size: 1.75rem !important;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 0.95rem !important;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .hero-stats-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center;
    padding-top: 1.25rem;
  }

  .stat-item h3 {
    font-size: 1.75rem !important;
  }

  /* Feature Images Mobile */
  .feature-img-wrapper img {
    height: 220px !important;
  }

  .feature-badge-over {
    bottom: 0.85rem;
    left: 0.85rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
  }

  /* Footer Mobile */
  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.75rem !important;
    margin-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Floating Widgets Mobile Fix: Always Visible on Screen */
  .floating-widgets {
    position: fixed !important;
    bottom: 1.2rem !important;
    right: 1.2rem !important;
    left: auto !important;
    top: auto !important;
    z-index: 999999 !important;
    transform: none !important;
  }
  .float-btn {
    width: 46px !important;
    height: 46px !important;
    font-size: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .product-mini-grid {
    grid-template-columns: 1fr !important;
  }
  .section-tag {
    font-size: 0.72rem;
    padding: 0.25rem 0.65rem;
  }
  .btn {
    padding: 0.7rem 1.1rem;
    font-size: 0.85rem;
  }
  .floating-widgets {
    bottom: 1rem !important;
    right: 1rem !important;
  }
}
