/* ============================================
   SN TRADERS — Premium Construction Website
   Design System & Creative Contact / Product Styling
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap');

:root {
  --blue-900: #0c1a3a; 
  --blue-800: #102a5a; 
  --blue-700: #1a3f7a;
  --blue-600: #1e56a0; 
  --blue-500: #2563eb; 
  --blue-400: #5b8dee;
  --blue-100: #dbeafe; 
  --blue-50:  #eff6ff;

  --brand-blue: #3C87C9;
  --green-600: #3C87C9; 
  --green-500: #0284c7;
  --green-100: #e0f2fe;
  --green-50:  #f0f9ff;

  --red-600: #c62828; 
  --red-500: #dc3545;

  --yellow-500: #f59e0b; 
  --yellow-400: #fbbf24; 
  --yellow-100: #fef3c7;

  --white:    #ffffff; 
  --gray-50:  #f8fafc; 
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0; 
  --gray-300: #cbd5e1; 
  --gray-400: #94a3b8;
  --gray-500: #64748b; 
  --gray-600: #475569; 
  --gray-700: #334155;
  --gray-800: #1e293b; 
  --gray-900: #0f172a;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,.18);

  --radius-md: 10px; 
  --radius-lg: 16px; 
  --radius-xl: 24px; 
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === PAGE LOADER === */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--blue-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

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

.loader-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1.5rem;
}

.loader-line-track {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-line-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow-400), var(--blue-400));
  animation: loaderPulse 1.2s infinite ease-in-out;
  transform-origin: left;
}

@keyframes loaderPulse {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(0.7); }
  100% { transform: scaleX(1); }
}

/* === ANIMATIONS === */
.reveal-hero {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal-hero[data-delay="1"] { animation-delay: 0.15s; }
.reveal-hero[data-delay="2"] { animation-delay: 0.3s; }
.reveal-hero[data-delay="3"] { animation-delay: 0.45s; }
.reveal-hero[data-delay="4"] { animation-delay: 0.6s; }

@keyframes heroFadeUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-left {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-right {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.stagger-1{transition-delay:.1s}.stagger-2{transition-delay:.2s}
.stagger-3{transition-delay:.3s}.stagger-4{transition-delay:.4s}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.15rem 0;
  transition: all .4s var(--ease);
}

.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.03);
  padding: .7rem 0;
}

.navbar .container {
  max-width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: all .4s var(--ease);
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: all .4s var(--ease);
}

.navbar.scrolled .nav-logo {
  padding: 4px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.navbar.scrolled .nav-logo-img {
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.nav-links a {
  font-weight: 500;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  padding: .5rem 1.1rem;
  border-radius: var(--radius-full);
  transition: all .3s var(--ease);
  letter-spacing: .2px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}

.navbar.scrolled .nav-links a {
  color: var(--gray-600);
}

.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active {
  color: var(--blue-600);
  background: var(--blue-50);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: all .3s var(--ease);
}

.navbar.scrolled .nav-hamburger span {
  background: var(--gray-800);
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Inner Page Navbar Styling */
body.inner-page .navbar {
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  padding: .7rem 0;
}
body.inner-page .nav-links a {
  color: var(--gray-600);
}
body.inner-page .nav-links a:hover, body.inner-page .nav-links a.active {
  color: var(--blue-600);
  background: var(--blue-50);
}
body.inner-page .nav-hamburger span {
  background: var(--gray-800);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,26,58,.72) 0%, rgba(12,26,58,.48) 45%, rgba(12,26,58,.78) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 2rem;
}

.hero-logo {
  width: auto;
  height: clamp(180px, 28vh, 260px);
  max-width: min(95%, 560px);
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease);
}

.hero-logo:hover {
  transform: scale(1.04);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -.5px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin: 0 auto 1rem;
  font-weight: 400;
  line-height: 1.75;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 2.25rem;
  font-weight: 500;
}

.hero-location svg {
  width: 18px;
  height: 18px;
  fill: var(--yellow-400);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.85rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all .35s var(--ease);
  letter-spacing: .2px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(30deg);
  transition: all 0.6s ease;
}

.btn:hover::after {
  left: 130%;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,99,235,.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37,99,235,.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37,211,102,.45);
}

.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border: 2px solid var(--blue-100);
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
  transform: translateY(-3px) scale(1.02);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
  transition: opacity .4s var(--ease);
}

.scroll-indicator .mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,.55);
  border-radius: 3px;
  animation: mouseScroll 2s infinite;
}

@keyframes scrollBounce {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(8px)}
}

@keyframes mouseScroll {
  0%{opacity:1;transform:translateX(-50%) translateY(0)}
  100%{opacity:0;transform:translateX(-50%) translateY(10px)}
}

/* === SECTION COMMON === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: .75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: .75rem;
  letter-spacing: -.3px;
}

.section-header p {
  font-size: 1.02rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* === TRUST HIGHLIGHTS SECTION === */
.trust-section {
  padding: 5.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

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

.trust-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease);
  border: 1px solid transparent;
  position: relative;
}

.trust-card:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon.blue { background: var(--blue-50); color: var(--blue-600); }
.trust-icon.red { background: #fef2f2; color: var(--red-500); }
.trust-icon.yellow { background: var(--yellow-100); color: var(--yellow-500); }
.trust-icon.green { background: #e0f2fe; color: #3C87C9; }

.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .4rem;
  letter-spacing: -.1px;
}

.trust-card p {
  font-size: .86rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* === ABOUT SECTION === */
.about-section {
  padding: 7rem 0;
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.about-image-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.about-image-wrapper:hover img {
  transform: scale(1.04);
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -.3px;
}

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

.heading-accent-line {
  width: 48px;
  height: 3px;
  background: var(--blue-500);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: .35rem;
}

.btn-green {
  background: linear-gradient(135deg, var(--green-600), #026ca6);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(3, 137, 207, 0.3);
}

.btn-green:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(3, 137, 207, 0.45);
}

.stat-label {
  font-size: .85rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* === PRODUCTS SECTION === */
.products-section {
  padding: 7rem 0;
  background: var(--white);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-premium {
  border: 1px solid var(--gray-200);
  background: linear-gradient(180deg, #ffffff 0%, #fcfdfe 100%);
}

.product-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--yellow-400));
  opacity: 0.8;
  transition: height 0.3s ease;
}

.product-card-premium:hover::before {
  height: 6px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-300);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .6s var(--ease);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.12));
}

.product-card:hover .product-image img {
  transform: scale(1.09);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(12,26,58,.88);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: var(--radius-full);
  letter-spacing: .5px;
  box-shadow: var(--shadow-sm);
}

.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #b45309;
  background: #fef3c7;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 0.5rem;
}

.product-body {
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .4rem;
}

.product-body p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-buttons {
  margin-top: auto;
  display: flex;
  gap: .75rem;
}

.product-buttons .btn {
  flex: 1;
  justify-content: center;
  padding: .7rem 1rem;
  font-size: .88rem;
}

/* === CEMENT BRANDS PROCUREMENT SHOWCASE === */
.brands-section {
  padding: 6rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.brand-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cement-brand-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.cement-brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-400);
}

.cement-brand-img-box {
  height: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.cement-brand-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.1));
}

.cement-brand-card:hover .cement-brand-img-box img {
  transform: scale(1.08);
}

.cement-brand-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.35rem;
}

.cement-brand-tag {
  font-size: 0.78rem;
  color: var(--blue-600);
  font-weight: 600;
  background: var(--blue-50);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

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

@media (max-width: 640px) {
  .brand-cards-grid { grid-template-columns: repeat(2, 1fr); }
}


/* === CREATIVE CONTACT PAGE STYLING === */
.contact-hero-creative {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  color: var(--white);
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-creative::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.creative-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-card-creative {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-card-creative:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-400);
}

.contact-card-creative.phone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
}

.contact-card-creative.wa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #25D366, #128C7E);
}

.contact-card-creative.mail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ea4335, #ff6b6b);
}

.contact-card-creative.insta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045);
}

.contact-card-creative.fb-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1877f2, #0056b3);
}

.contact-card-creative.geo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow-500), #f97316);
}

.creative-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.creative-icon-wrapper.phone {
  background: var(--blue-50);
  color: var(--blue-600);
}

.creative-icon-wrapper.wa {
  background: #ecfdf5;
  color: #25D366;
}

.creative-icon-wrapper.mail {
  background: #fef2f2;
  color: #dc2626;
}

.creative-icon-wrapper.insta {
  background: #fdf2f8;
  color: #e1306c;
}

.creative-icon-wrapper.fb {
  background: #eff6ff;
  color: #1877f2;
}

.creative-icon-wrapper.geo {
  background: var(--yellow-100);
  color: #d97706;
}

.btn-email {
  background: #ea4335;
  color: #ffffff !important;
}

.btn-email:hover {
  background: #d93025;
  box-shadow: 0 4px 14px rgba(234, 67, 53, 0.4);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff !important;
}

.btn-instagram:hover {
  opacity: 0.92;
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.4);
}

.btn-facebook {
  background: #1877f2;
  color: #ffffff !important;
}

.btn-facebook:hover {
  background: #166fe5;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.4);
}

.live-badge-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.gps-coords-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: monospace;
  font-size: 0.78rem;
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.map-card-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  margin-bottom: 4rem;
}

.map-view-box {
  position: relative;
  min-height: 380px;
  background: #e2e8f0;
}

.map-view-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-info-box {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === FINAL CTA === */
.final-cta {
  position: relative;
  padding: 7rem 0;
  color: var(--white);
  overflow: hidden;
  text-align: center;
  background: var(--blue-900);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
}

/* === FOOTER === */
.footer {
  background: var(--blue-900);
  color: var(--white);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

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

.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: .92rem;
  margin-top: 1.2rem;
  line-height: 1.7;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: .3px;
}

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

.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color .3s ease;
}

.footer-links a:hover {
  color: var(--yellow-400);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}

/* === RESPONSIVE MEDIA QUERIES === */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .creative-contact-grid { grid-template-columns: 1fr; }
  .map-card-wrapper { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
    border-bottom: 1px solid var(--gray-200);
    align-items: flex-start;
  }
  .nav-links.open a { color: var(--gray-800); }
  .products-grid, .trust-grid, .footer-grid { grid-template-columns: 1fr; }
}
