/* =========================================
   MOBILEHUB — PREMIUM LIGHT VISUAL SYSTEM
   PART 1: RESET / VARIABLES / HEADER / HERO
========================================= */

:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-soft: #f0f2f5;

  --text: #111318;
  --text-soft: #626873;
  --text-muted: #8a9099;

  --accent: #155eef;
  --accent-dark: #0b4bc4;
  --accent-soft: #eaf1ff;

  --success: #16a34a;
  --border: #e5e7eb;

  --shadow-sm: 0 6px 20px rgba(17, 19, 24, 0.06);
  --shadow-md: 0 16px 45px rgba(17, 19, 24, 0.09);
  --shadow-lg: 0 25px 70px rgba(17, 19, 24, 0.12);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --container: 1180px;

  --font-body: "Inter", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;

  --transition: 0.28s ease;
}


/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

ul {
  list-style: none;
}


/* =========================================
   GLOBAL CONTAINER
========================================= */

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  color: var(--text-soft);
}


/* =========================================
   EYEBROWS
========================================= */

.eyebrow,
.eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow-dark {
  color: var(--accent);
}


/* =========================================
   HEADER
========================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition:
    background var(--transition),
    box-shadow var(--transition);
}

.header:hover {
  background: rgba(255, 255, 255, 0.96);
}

.nav-container {
  min-height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}


/* =========================================
   LOGO
========================================= */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;

  white-space: nowrap;
}

.logo-icon {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 11px;

  background: var(--text);
  color: #fff;

  box-shadow: var(--shadow-sm);
}

.accent {
  color: var(--accent);
}


/* =========================================
   NAVIGATION
========================================= */

.navbar {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  position: relative;

  display: inline-flex;
  align-items: center;

  padding: 10px 14px;

  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;

  border-radius: 9px;

  transition:
    color var(--transition),
    background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface-soft);
}

.nav-links a.active::after {
  content: "";

  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;

  height: 2px;

  border-radius: 20px;
  background: var(--accent);
}


/* =========================================
   NAV ACTIONS
========================================= */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 11px 16px;

  background: var(--text);
  color: #fff;

  border-radius: 10px;

  font-size: 0.82rem;
  font-weight: 700;

  transition:
    transform var(--transition),
    background var(--transition);
}

.nav-contact:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.nav-contact i {
  color: #fff;
}


/* =========================================
   HAMBURGER
========================================= */

.menu-btn {
  width: 42px;
  height: 42px;

  display: none;
  place-items: center;

  border: 1px solid var(--border);
  border-radius: 11px;

  background: var(--surface);
  color: var(--text);

  font-size: 1rem;

  cursor: pointer;

  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.menu-btn:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-2px);
}


/* =========================================
   BUTTON SYSTEM
========================================= */

.btn {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 0 20px;

  border-radius: 11px;

  font-size: 0.86rem;
  font-weight: 700;

  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;

  box-shadow: 0 10px 25px rgba(21, 94, 239, 0.2);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 14px 30px rgba(21, 94, 239, 0.25);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--text);
}

.btn-light {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-light:hover {
  background: var(--surface-soft);
}

.btn-outline:not(.hero-buttons .btn-outline) {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.btn-outline:not(.hero-buttons .btn-outline):hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}


/* =========================================
   HERO
========================================= */

.hero {
  position: relative;
  min-height: 720px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #101217;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(21, 94, 239, 0.3),
      transparent 32%
    ),
    linear-gradient(
      115deg,
      #0c0e12 0%,
      #171a20 55%,
      #101217 100%
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(10, 12, 16, 0.92),
      rgba(10, 12, 16, 0.5),
      rgba(10, 12, 16, 0.2)
    );
}

.hero-container {
  position: relative;
  z-index: 2;

  min-height: 720px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-content {
  max-width: 680px;
}

.hero-content h1 {
  margin: 20px 0;

  color: #fff;
  font-weight: 600;
}

.hero-content h1 strong {
  color: #78a8ff;
  font-weight: 600;
}

.hero-content > p {
  max-width: 590px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 1rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;

  margin-top: 28px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: rgba(255, 255, 255, 0.64);

  font-size: 0.78rem;
  font-weight: 600;
}

.trust-item i {
  color: #72a3ff;
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
  position: relative;

  min-height: 500px;

  display: grid;
  place-items: center;
}

.hero-device {
  position: relative;

  width: min(100%, 480px);

  overflow: hidden;

  border-radius: 30px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.06);

  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.35);

  transform: rotate(2deg);

  transition: transform 0.5s ease;
}

.hero-device:hover {
  transform: rotate(0deg) translateY(-5px);
}

.hero-device img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.floating-chip {
  position: absolute;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 11px 15px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;

  background: rgba(20, 22, 28, 0.82);
  color: #fff;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  font-size: 0.75rem;
  font-weight: 700;

  box-shadow: var(--shadow-md);
}

.floating-chip i {
  color: #78a8ff;
}

.chip-one {
  top: 16%;
  left: 0;
}

.chip-two {
  right: 0;
  bottom: 17%;
}


/* =========================================
   LOCATION BAR
========================================= */

.location-bar {
  position: relative;
  z-index: 5;

  margin-top: -1px;

  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.location-inner {
  min-height: 92px;

  display: flex;
  align-items: center;
  gap: 16px;
}

.location-icon {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: var(--accent-soft);
  color: var(--accent);
}

.location-text {
  display: flex;
  flex-direction: column;
  gap: 2px;

  flex: 1;
}

.location-text span {
  color: var(--text-muted);

  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.location-text strong {
  color: var(--text);

  font-size: 0.84rem;
  font-weight: 600;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--accent);

  font-size: 0.8rem;
  font-weight: 700;

  transition: gap var(--transition);
}

.location-link:hover {
  gap: 12px;
}


/* =========================================
   CATEGORY STRIP
========================================= */

.category-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.category-scroll {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 0;

  overflow-x: auto;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-item {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 9px 13px;

  border: 1px solid var(--border);
  border-radius: 10px;

  background: var(--surface);

  color: var(--text-soft);

  font-size: 0.77rem;
  font-weight: 700;

  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.category-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.category-icon {
  width: 25px;
  height: 25px;

  display: grid;
  place-items: center;

  border-radius: 7px;

  background: var(--surface-soft);
  color: var(--accent);

  font-size: 0.7rem;
}


/* =========================================
   INTRO SECTION
========================================= */

.intro-section {
  padding: 110px 0;

  background: var(--bg);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.25fr;
  gap: 50px;
  align-items: start;
}

.intro-label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intro-label > span {
  color: var(--accent);

  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}

.intro-label > div {
  width: 40px;
  height: 1px;

  background: var(--accent);
}

.intro-label p {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.intro-content {
  max-width: 700px;
}

.intro-content h2 {
  margin-bottom: 24px;
}

.intro-content p {
  max-width: 650px;

  font-size: 1rem;
  line-height: 1.85;
}

.intro-stat {
  padding-top: 10px;

  display: flex;
  flex-direction: column;
  gap: 4px;

  border-left: 1px solid var(--border);
  padding-left: 24px;
}

.intro-stat strong {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--text);
}

.intro-stat span {
  max-width: 100px;

  color: var(--text-muted);

  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;

  margin-bottom: 55px;
}

.section-heading > div {
  max-width: 620px;
}

.section-heading h2 {
  margin-top: 12px;
}

.section-heading > p {
  max-width: 390px;

  font-size: 0.9rem;
  line-height: 1.8;
}

.section-heading.centered {
  display: block;

  max-width: 700px;

  margin-inline: auto;
  margin-bottom: 55px;

  text-align: center;
}

.section-heading.centered > p {
  max-width: 600px;
  margin: 18px auto 0;
}


/* =========================================
   PRODUCT SECTION BASE
========================================= */

.products-section {
  padding: 110px 0;

  background: var(--surface);
}

.product-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  background: var(--bg);

  box-shadow: var(--shadow-sm);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.product-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-feature.reverse-card {
  grid-template-columns: 1fr 1fr;
}

.product-feature.reverse-card .product-image {
  order: 2;
}

.product-feature.reverse-card .product-info {
  order: 1;
}

.product-image {
  position: relative;
  min-height: 380px;

  overflow: hidden;

  background: var(--surface-soft);
}

.product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.product-feature:hover .product-image img {
  transform: scale(1.035);
}

.product-tag {
  position: absolute;
  top: 20px;
  left: 20px;

  padding: 7px 11px;

  border-radius: 8px;

  background: #fff;
  color: var(--text);

  font-size: 0.68rem;
  font-weight: 800;

  box-shadow: var(--shadow-sm);
}

.product-info {
  padding: 50px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.product-number {
  color: var(--accent);

  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-info h3 {
  margin-top: 12px;

  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.product-info > p {
  max-width: 470px;

  margin-top: 16px;

  line-height: 1.8;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 24px;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 8px 10px;

  border: 1px solid var(--border);
  border-radius: 8px;

  background: var(--surface);

  color: var(--text-soft);

  font-size: 0.7rem;
  font-weight: 700;
}

.product-meta i {
  color: var(--accent);
}

.availability-btn,
.mini-enquiry {
  margin-top: 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border-radius: 10px;

  background: var(--text);
  color: #fff;

  font-size: 0.78rem;
  font-weight: 700;

  transition:
    background var(--transition),
    transform var(--transition);
}

.availability-btn {
  min-height: 45px;
  padding: 0 17px;
}

.availability-btn:hover,
.mini-enquiry:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.availability-btn i {
  color: #65d98b;
}























































































































/* =========================================================
   MOBILEHUB — STYLE.CSS
   PART 2
   Products • Accessories • CTA • Forms • Footer
   ========================================================= */


/* =========================================================
   PRODUCTS SECTION
   ========================================================= */

.products-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.product-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 65px;
}

.product-feature {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 500px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.product-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-dark);
}

.product-feature.reverse-card {
    grid-template-columns: 0.95fr 1.05fr;
}

.product-feature.reverse-card .product-image {
    order: 2;
}

.product-feature.reverse-card .product-info {
    order: 1;
}

.product-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #f1f3f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.product-feature:hover .product-image img {
    transform: scale(1.045);
}

.product-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 13px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px;
}

.product-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 25px;
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
}

.product-info h3 {
    margin: 0 0 18px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.product-info > p {
    max-width: 480px;
    margin: 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.product-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--bg-soft);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.product-meta i {
    color: var(--accent);
}


/* =========================================================
   AVAILABILITY BUTTON
   ========================================================= */

.availability-btn,
.mini-enquiry {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.availability-btn {
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--text-dark);
    color: var(--white);
    font-size: 13px;
}

.availability-btn i {
    color: #25d366;
    font-size: 16px;
}

.availability-btn:hover {
    transform: translateY(-2px);
    background: var(--accent);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.availability-btn:hover i {
    color: var(--white);
}


/* =========================================================
   ACCESSORY SECTION
   ========================================================= */

.accessory-section {
    padding: 120px 0;
    background: var(--white);
}

.accessory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 60px;
}

.accessory-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.accessory-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.accessory-image {
    height: 220px;
    overflow: hidden;
    background: #f1f3f5;
}

.accessory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.accessory-card:hover .accessory-image img {
    transform: scale(1.06);
}

.accessory-content {
    padding: 24px;
}

.accessory-content > span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.accessory-content h3 {
    margin: 9px 0 10px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 21px;
    letter-spacing: -0.025em;
}

.accessory-content p {
    min-height: 50px;
    margin: 0 0 20px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
}

.mini-enquiry {
    padding: 10px 13px;
    border-radius: 9px;
    background: var(--bg-soft);
    color: var(--text-dark);
    font-size: 11px;
}

.mini-enquiry:hover {
    background: var(--text-dark);
    color: var(--white);
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.why-content h2 {
    max-width: 600px;
    margin: 15px 0 25px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.why-content > p {
    max-width: 540px;
    margin: 0 0 28px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.why-point:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.why-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--text-dark);
    color: var(--white);
}

.why-point h3 {
    margin: 0 0 7px;
    color: var(--text-dark);
    font-size: 17px;
}

.why-point p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   STORE CTA
   ========================================================= */

.store-cta {
    padding: 110px 0;
    background: var(--white);
}

.store-cta-card {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 70px;
    overflow: hidden;
    border-radius: 30px;
    background: var(--text-dark);
    color: var(--white);
}

.store-cta-card::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: 5%;
    top: -180px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.store-cta-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: 15%;
    bottom: -150px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.store-cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.store-cta-content h2 {
    margin: 14px 0 18px;
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.store-cta-content p {
    max-width: 500px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.8;
}

.store-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.store-cta-mark {
    position: relative;
    z-index: 2;
    width: 170px;
    height: 170px;
    flex: 0 0 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}

.store-cta-mark i {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 30px;
}

.store-cta-mark span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
}


/* =========================================================
   QUICK ENQUIRY
   ========================================================= */

.quick-enquiry,
.contact-enquiry {
    padding: 120px 0;
    background: var(--bg-soft);
}

.enquiry-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: center;
}

.enquiry-info h2 {
    max-width: 550px;
    margin: 14px 0 20px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.enquiry-info > p {
    max-width: 490px;
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.enquiry-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.enquiry-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    transition: color .3s ease;
}

.enquiry-contact a:hover {
    color: var(--accent);
}

.enquiry-contact i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--white);
    color: var(--accent);
}

.enquiry-form-wrap {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    outline: none;
    border-radius: 11px;
    background: var(--bg-soft);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.form-group input {
    height: 52px;
    padding: 0 15px;
}

.form-group textarea {
    min-height: 135px;
    padding: 15px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0,0,0,.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.enquiry-submit {
    width: 100%;
    margin-top: 3px;
}

.form-note {
    margin: -8px 0 0;
    color: var(--text-muted);
    font-size: 11px;
    text-align: center;
}


/* =========================================================
   ABOUT PAGE — INTRO
   ========================================================= */

.about-intro {
    padding: 120px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 26px;
    display: block;
}

.image-label {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 15px 18px;
    border-radius: 13px;
    background: rgba(255,255,255,.93);
    backdrop-filter: blur(12px);
}

.image-label span {
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

.image-label strong {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 18px;
}

.about-intro-content h2 {
    max-width: 580px;
    margin: 14px 0 24px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.03;
    letter-spacing: -.05em;
}

.about-intro-content > p {
    max-width: 570px;
    margin: 0 0 17px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.85;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 35px;
}

.about-highlight {
    display: flex;
    gap: 13px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--bg-soft);
}

.highlight-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--text-dark);
    color: var(--white);
}

.about-highlight h3 {
    margin: 0 0 4px;
    font-size: 13px;
}

.about-highlight p {
    margin: 0;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   APPROACH
   ========================================================= */

.approach-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 60px;
}

.approach-card {
    position: relative;
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.approach-number {
    position: absolute;
    top: 25px;
    right: 27px;
    color: #c9cdd2;
    font-size: 11px;
    font-weight: 800;
}

.approach-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    border-radius: 13px;
    background: var(--text-dark);
    color: var(--white);
}

.approach-card h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 24px;
}

.approach-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   ABOUT PRODUCTS
   ========================================================= */

.about-products {
    padding: 120px 0;
    background: var(--white);
}

.about-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 60px;
}

.about-product-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.about-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.about-product-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 12px;
    background: var(--bg-soft);
    color: var(--accent);
}

.about-product-card > span {
    color: #a0a5ab;
    font-size: 10px;
    font-weight: 800;
}

.about-product-card h3 {
    margin: 8px 0 10px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 22px;
}

.about-product-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding-top: 22px;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 800;
}

.text-link i {
    transition: transform .3s ease;
}

.text-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   VALUES
   ========================================================= */

.values-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.values-visual {
    position: relative;
}

.values-image {
    overflow: hidden;
    border-radius: 26px;
}

.values-image img {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
}

.values-badge {
    position: absolute;
    right: -25px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--text-dark);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.values-badge > i {
    color: var(--accent);
    font-size: 20px;
}

.values-badge div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.values-badge strong {
    font-size: 13px;
}

.values-badge span {
    color: rgba(255,255,255,.55);
    font-size: 10px;
}

.values-content h2 {
    margin: 14px 0 20px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -.05em;
}

.values-content > p {
    max-width: 520px;
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 35px;
}

.value-item {
    display: flex;
    gap: 15px;
}

.value-check {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--text-dark);
    color: var(--white);
    font-size: 11px;
}

.value-item h3 {
    margin: 0 0 5px;
    font-size: 14px;
}

.value-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   LOCATION CTA
   ========================================================= */

.about-location-cta {
    padding: 100px 0;
    background: var(--white);
}

.about-location-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 40px 45px;
    border-radius: 22px;
    background: var(--text-dark);
    color: var(--white);
}

.location-cta-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255,255,255,.09);
    color: var(--accent);
    font-size: 23px;
}

.location-cta-content h2 {
    margin: 8px 0;
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: -.04em;
}

.location-cta-content p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
}

.location-cta-action {
    white-space: nowrap;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-intro {
    padding: 120px 0;
    background: var(--white);
}

.contact-method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 60px;
}

.contact-method {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--bg-soft);
    color: var(--accent);
    font-size: 17px;
}

.contact-method-icon.whatsapp-icon {
    color: #25d366;
}

.contact-method > div span {
    color: #9ca0a5;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.contact-method h3 {
    margin: 5px 0;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 17px;
}

.contact-method p {
    margin: 0;
    color: var(--text-muted);
    font-size: 11px;
}

.method-arrow {
    position: absolute;
    top: 25px;
    right: 23px;
    color: #b2b6bb;
    font-size: 11px;
}


/* =========================================================
   STORE INFO
   ========================================================= */

.store-info-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.store-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.store-info-content h2 {
    margin: 14px 0 20px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -.05em;
}

.store-info-content > p {
    max-width: 520px;
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.store-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
}

.store-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.store-detail > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--white);
    color: var(--accent);
}

.store-detail > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.store-detail strong {
    color: var(--text-dark);
    font-size: 12px;
}

.store-detail span,
.store-detail a {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
}

.store-detail a:hover {
    color: var(--accent);
}

.store-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.store-image img {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
}

.store-image-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 100px;
    background: rgba(255,255,255,.92);
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   MAP
   ========================================================= */

.map-section {
    padding: 120px 0;
    background: var(--white);
}

.map-card {
    overflow: hidden;
    margin-top: 55px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.map-card iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}

.map-actions {
    display: flex;
    gap: 12px;
    padding: 22px;
}


/* =========================================================
   CONTACT CTA
   ========================================================= */

.contact-cta {
    padding: 100px 0;
    background: var(--bg-soft);
}

.contact-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 55px;
    border-radius: 25px;
    background: var(--text-dark);
    color: var(--white);
}

.contact-cta-card h2 {
    margin: 12px 0;
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -.045em;
}

.contact-cta-card p {
    margin: 0;
    color: rgba(255,255,255,.6);
    font-size: 13px;
}

.contact-cta-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 85px 0 0;
    background: #111214;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr .8fr 1fr;
    gap: 55px;
}

.footer-logo {
    color: var(--white) !important;
}

.footer-brand > p {
    max-width: 330px;
    margin: 20px 0;
    color: rgba(255,255,255,.5);
    font-size: 12px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    color: rgba(255,255,255,.65);
    font-size: 13px;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.footer-socials a:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-column h3 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: 12px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li a,
.footer-column p {
    color: rgba(255,255,255,.48);
    font-size: 12px;
    line-height: 1.7;
    transition: color .3s ease;
}

.footer-column li a:hover,
.footer-map-link:hover {
    color: var(--white);
}

.footer-location p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
}

.footer-location p i {
    margin-top: 4px;
    color: var(--accent);
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 15px;
    color: rgba(255,255,255,.75);
    font-size: 11px;
    font-weight: 700;
    transition: color .3s ease;
}

.copyright {
    margin-top: 65px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

.copyright p {
    margin: 0;
    color: rgba(255,255,255,.35);
    font-size: 10px;
}


/* =========================================================
   FLOATING BUTTONS
   ========================================================= */

.floating-call,
.floating-whatsapp {
    position: fixed;
    right: 22px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.floating-call {
    bottom: 85px;
    background: var(--text-dark);
}

.floating-whatsapp {
    bottom: 22px;
    background: #25d366;
}

.floating-call:hover,
.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 35px rgba(0,0,0,.2);
}


/* =========================================================
   BUTTON SAFETY
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 800;
    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    border: 1px solid var(--text-dark);
    background: var(--text-dark);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.btn-outline {
    border: 1px solid var(--border-dark);
    background: transparent;
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: var(--white);
}

.btn-light {
    border: 1px solid rgba(255,255,255,.2);
    background: var(--white);
    color: var(--text-dark);
}

.btn-light:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}


/* =========================================================
   ACCESSIBILITY / PERFORMANCE
   ========================================================= */

img {
    content-visibility: auto;
}

button,
a,
input,
textarea {
    -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}













































