/* =============================================
   Login Computer — Premium Light Theme
   Plus Jakarta Sans · Green Primary · Red Accent
   ============================================= */

:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --surface: #ffffff;
  --text: #1f2937;
  --text-muted: #6b7280;
  --text-subtle: #9ca3af;
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #dcfce7;
  --accent: #dc2626;
  --accent-light: #fef2f2;
  --border: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 24px 48px rgba(22, 163, 74, 0.12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 32px;
  --header-h: 76px;
  --container: 1280px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

/*======================================
PREMIUM BACKGROUND
======================================*/

body{

overflow-x:hidden;

background:#ffffff;

position:relative;

}

.bg-blur{

position:fixed;

border-radius:50%;

filter:blur(130px);

opacity:.22;

pointer-events:none;

z-index:-1;

animation:blobMove 18s ease-in-out infinite alternate;

}

.bg1{

width:420px;

height:420px;

background:#22c55e;

top:-120px;

left:-120px;

}

.bg2{

width:450px;

height:450px;

background:#ef4444;

bottom:-150px;

right:-120px;

animation-delay:5s;

}

.bg3{

width:300px;

height:300px;

background:#84cc16;

top:45%;

left:50%;

transform:translate(-50%,-50%);

animation-delay:9s;

}

@keyframes blobMove{

0%{

transform:translate(0,0) scale(1);

}

100%{

transform:translate(80px,-60px) scale(1.2);

}

}


/*======================================
GLASS CARD
======================================*/

.glass{

background:rgba(255,255,255,.72);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.55);

box-shadow:

0 15px 45px rgba(0,0,0,.08);

}


/*======================================
HOVER
======================================*/

.service-card,

.product-card,

.review-card,

.thesis-card,

.contact-card{

transition:.45s cubic-bezier(.2,.8,.2,1);

}

.service-card:hover,

.product-card:hover,

.review-card:hover,

.thesis-card:hover,

.contact-card:hover{

transform:

translateY(-12px)

scale(1.02);

box-shadow:

0 25px 55px rgba(0,0,0,.12);

}


/*======================================
BUTTONS
======================================*/

.btn-primary,

.buy-btn,

.shop-btn,

.call-btn{

position:relative;

overflow:hidden;

}

.btn-primary::before,

.buy-btn::before,

.shop-btn::before,

.call-btn::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:120%;

height:100%;

background:

linear-gradient(

90deg,

transparent,

rgba(255,255,255,.45),

transparent

);

transition:.8s;

}

.btn-primary:hover::before,

.buy-btn:hover::before,

.shop-btn:hover::before,

.call-btn:hover::before{

left:120%;

}


/*======================================
IMAGE HOVER
======================================*/

.shop-banner img,

.product-card img,

.thesis-card img{

transition:1.2s;

}

.shop-banner:hover img,

.product-card:hover img,

.thesis-card:hover img{

transform:scale(1.08);

}


/*======================================
TITLE
======================================*/

.section-title h2{

position:relative;

display:inline-block;

}

.section-title h2::after{

content:"";

position:absolute;

bottom:-14px;

left:50%;

transform:translateX(-50%);

width:90px;

height:5px;

border-radius:50px;

background:linear-gradient(

90deg,

#16a34a,

#ef4444

);

}
con
img {
  max-width: 100%;
  display: block;
  transition: transform var(--transition);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

/* ---- Typography ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.section-desc {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.75;
}

.section-desc.mx-auto {
  margin-inline: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* ---- Glass (light) ---- */
.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9375rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.3);
}

.btn-outline {
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-sm {
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
}

.btn-disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-nav {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 0.625rem 1.25rem !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.2);
}

.btn-nav:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

.w-full {
  width: 100%;
}

/*=============================
APPLE NAVBAR
==============================*/

.site-header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:99999;

transition:.4s;

padding:18px 0;

}

.site-header.scrolled{

background:rgba(255,255,255,.88);

backdrop-filter:blur(18px);

box-shadow:0 10px 40px rgba(0,0,0,.08);

padding:12px 0;

}

.nav-container{

width:min(92%,1400px);

margin:auto;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

display:flex;

align-items:center;

gap:15px;

text-decoration:none;

}

.logo img{

width:58px;

height:58px;

border-radius:50%;

}

.logo h2{

font-size:26px;

font-weight:800;

color:#222;

}

.logo h2 span{

color:#16a34a;

}

.logo p{

font-size:13px;

color:#777;

}

.desktop-nav{

display:flex;

align-items:center;

gap:35px;

}

.desktop-nav a{

text-decoration:none;

font-weight:600;

color:#333;

transition:.3s;

position:relative;

}

.desktop-nav a:hover{

color:#16a34a;

}

.desktop-nav a::after{

content:"";

position:absolute;

bottom:-8px;

left:50%;

transform:translateX(-50%);

width:0;

height:3px;

background:#16a34a;

transition:.3s;

border-radius:30px;

}

.desktop-nav a:hover::after{

width:80%;

}

.call-btn{

background:linear-gradient(135deg,#16a34a,#dc2626);

padding:14px 26px;

border-radius:60px;

color:#fff!important;

}

.call-btn::after{

display:none;

}

.call-btn:hover{

transform:translateY(-3px);

box-shadow:0 20px 35px rgba(22,163,74,.35);

}

.hamburger{

display:none;

background:none;

border:none;

cursor:pointer;

}

.hamburger span{

display:block;

width:30px;

height:3px;

background:#222;

margin:6px;

transition:.35s;

border-radius:20px;

}

/*===================
MOBILE MENU
===================*/

.mobile-menu{

position:absolute;

top:100%;

left:0;

width:100%;

background:#fff;

display:flex;

flex-direction:column;

max-height:0;

overflow:hidden;

transition:max-height .45s ease;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.mobile-menu.active{

max-height:520px;

}

.mobile-menu a{

padding:18px 30px;

text-decoration:none;

font-weight:600;

color:#333;

border-bottom:1px solid #eee;

}

.mobile-call{

background:#16a34a;

color:#fff!important;

text-align:center;

margin:15px;

border-radius:15px;

}

@media(max-width:992px){

.desktop-nav{

display:none;

}

.hamburger{

display:block;

}

}

/* ---- Hero ---- */
.hero-section {
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(22, 163, 74, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(220, 38, 38, 0.04), transparent 50%),
    var(--bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-title .gradient-text {
  display: block;
  margin-top: 0.25rem;
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-slider-wrap {
  position: relative;
}

.hero-slider-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-slider {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 4 / 3;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
}

.slide-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
}

.hero-float-card {
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.hero-float-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-float-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 600;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  transition: var(--transition);
  padding: 0;
}

.dot.active,
.dot:hover {
  background: var(--primary);
  transform: scale(1.25);
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-slide {
    aspect-ratio: auto;
    height: 480px;
  }
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text .section-title {
  text-align: left;
}

.about-text .section-desc {
  margin-top: 1rem;
}

.about-features {
  list-style: none;
  margin: 1.75rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.about-features li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.about-visual {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.about-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.about-stat span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.375rem;
  display: block;
}

.about-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ---- Stats ---- */
.stats-section {
  padding: 3rem 0;
  background: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-card h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-card p {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Thesis Gallery ---- */
.thesis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.thesis-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.thesis-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(22, 163, 74, 0.15);
}

.thesis-card img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  background: var(--bg-alt);
  padding: 1.5rem;
}

.thesis-content {
  padding: 1.5rem;
}

.thesis-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0.625rem 0 0.375rem;
  color: var(--text);
}

.thesis-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.color-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}

.badge-green { background: #16a34a; }
.badge-navy { background: #1e3a8a; }
.badge-black { background: #1f2937; }
.badge-white { background: #e5e7eb; color: #1f2937; }
.badge-red { background: #dc2626; }
.badge-maroon { background: #7f1d1d; }

@media (min-width: 640px) {
  .thesis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .thesis-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.service-icon {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.625rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Products ---- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}



.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-body {
  padding: 1.5rem;
}

.product-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
}

.badge-primary { background: var(--primary); }
.badge-accent { background: var(--accent); }
.badge-purple { background: #7c3aed; }
.badge-green { background: var(--primary); }

.product-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0.75rem 0 0.375rem;
}

.product-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
}

.product-price {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---- Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stars {
  color: #f59e0b;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.review-card p {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.review-card h4 {
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Order ---- */
.coming-soon-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.order-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.order-card-head {
  text-align: center;
}

.order-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.order-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.order-card-head p {
  color: var(--text-muted);
  line-height: 1.7;
}

.order-features {
  list-style: none;
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.order-features li {
  background: var(--bg-alt);
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.status-item {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.status-item h4 {
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.status-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.status-done {
  background: var(--primary-light);
  border-color: rgba(22, 163, 74, 0.2);
}

.status-done h4 { color: var(--primary-dark); }

.status-progress {
  background: #fef9c3;
  border-color: rgba(234, 179, 8, 0.3);
}

.status-progress h4 { color: #a16207; }

.status-soon {
  background: var(--accent-light);
  border-color: rgba(220, 38, 38, 0.15);
}

.status-soon h4 { color: var(--accent); }

.order-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.order-cta p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .order-grid {
    grid-template-columns: 1fr 1fr;
  }
}



/* ================= SECTION ================= */
.contact-section{
  padding: 80px 20px;
}

/* 🔥 narrower premium container */
.contact-section .container{
  max-width: 980px;
  margin:auto;
}

/* ================= HEADER ================= */
.contact-heading{
  text-align:center;
  margin-bottom: 35px;
  
}

.section-tag{
  display:inline-block;
  padding:6px 14px;
  font-size:12px;
  font-weight:600;
  border-radius:999px;

  color:#0a7a2f;
  background: rgba(10,122,47,0.08);
  border:1px solid rgba(10,122,47,0.2);
}

.contact-heading h2{
  font-size:34px;
}

.contact-heading h2 span{
  color:#0a7a2f;
}

.contact-heading p{
  max-width:580px;
  margin:auto;
  color:#666;
}

/* ================= MAIN FLOATING LAYOUT ================= */
.contact-grid{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:18px;

  padding:18px;
  border-radius:26px;

  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);

  border:1px solid rgba(255,255,255,0.6);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.08);
}

/* ================= LEFT FLOATING STACK ================= */
.contact-info{
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* 🔥 cyber floating tiles */
.info-box{
  display:flex;
  gap:12px;
  padding:14px;

  border-radius:18px;

  background: rgba(255,255,255,0.7);
  border:1px solid rgba(0,0,0,0.06);

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  transition:0.25s ease;
  position:relative;
  overflow:hidden;
}

/* neon edge glow on hover */
.info-box::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(135deg, transparent, rgba(10,122,47,0.25), transparent);
  opacity:0;
  transition:0.3s;
}

.info-box:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 18px 45px rgba(10,122,47,0.12);
}

.info-box:hover::before{
  opacity:1;
}

.icon{
  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:14px;

  background: linear-gradient(135deg, #eaf7ef, #f7fffa);
  color:#0a7a2f;

  box-shadow:0 8px 18px rgba(10,122,47,0.12);
}

/* ================= RIGHT MAP HERO ================= */
.map-wrapper{
  position:relative;
  height:520px;

  border-radius:28px;
  overflow:hidden;

  box-shadow:
    0 35px 90px rgba(0,0,0,0.15),
    0 0 0 1px rgba(10,122,47,0.08);
}

/* MAP */
.map-wrapper iframe{
  width:100%;
  height:100%;
  border:0;

  filter: contrast(1.15) saturate(1.2) brightness(1.05);
  transform: scale(1.03);
}

/* soft cyber glow overlay */
.map-wrapper::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;

  background:
    radial-gradient(circle at center, rgba(255,255,255,0.0), rgba(240,247,255,0.7)),
    linear-gradient(135deg, rgba(10,122,47,0.08), transparent 60%);
}

/* ================= CENTER FLOATING BUTTON ================= */
.map-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:3;
}

/* 🔥 cyber floating CTA */
.map-overlay button{
  padding:14px 22px;

  border-radius:999px;

  background: linear-gradient(135deg, #0a7a2f, #19b44a);
  color:#fff;

  font-size:14px;
  font-weight:700;

  border:1px solid rgba(255,255,255,0.3);

  cursor:pointer;

  box-shadow:
    0 20px 50px rgba(10,122,47,0.25),
    0 0 25px rgba(10,122,47,0.15);

  opacity:0.85;
  transform: scale(0.98);

  transition:0.25s ease;
}

/* hover = lift + glow */
.map-overlay button:hover{
  transform: scale(1.18);
  opacity:1;

  box-shadow:
    0 30px 70px rgba(10,122,47,0.35),
    0 0 40px rgba(10,122,47,0.25);
}

/* click feel */
.map-overlay button:active{
  transform: scale(1.08);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col li,
.footer-col a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-subtle);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* ---- Floating buttons ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

.back-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--primary);
  box-shadow: var(--shadow);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ---- Popup ---- */
#popupToggle {
  display: none;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

#popupToggle:checked ~ .popup-overlay {
  display: flex;
}

.popup-content {
  position: relative;
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: popupIn 0.4s ease;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.close-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: rotate(90deg);
}

.popup-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Ripple ---- */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ---- Utilities ---- */
@media (max-width: 639px) {
  .section {
    padding: 4rem 0;
  }

  .hero-float-card {
    right: 0.5rem;
    top: -0.5rem;
    padding: 1rem;
  }

  .hero-float-card h3 {
    font-size: 1.5rem;
  }
}

/* ---- Marketplace Page ---- */
.market-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.market-notice {
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 38, 38, 0.15);
  background: var(--accent-light);
  text-align: center;
}

.market-notice h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.market-notice p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.search-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-strong);
  background: var(--surface);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242 1.1a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 1rem center;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.25);
}

.in-store-badge {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}

.mini-product-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.mini-product-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
}

.mini-product-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.375rem;
}

.mini-product-card .product-price {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.store-banner {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.store-banner-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.store-banner h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
}

.store-banner p {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.store-banner .location {
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.0625rem;
}

.cta-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.cta-panel h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
}

.cta-panel p {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
/*======================================
SHOP SHOWCASE
======================================*/

.shop-section{

    width:100%;

    background:#ffffff;

    padding:90px 0;

}

.shop-banner{

    position:relative;

    width:92%;

    max-width:1500px;

    margin:auto;

    border-radius:34px;

    overflow:hidden;

    box-shadow:0 35px 80px rgba(0,0,0,.12);

}

.shop-banner img{

    width:100%;

    height:82vh;

    object-fit:cover;

    object-position:center;

    animation:zoomImage 18s linear infinite alternate;

    display:block;

}

@keyframes zoomImage{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.12);

    }

}


/*======================================
OVERLAY
======================================*/

.shop-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.72),

        rgba(0,0,0,.25),

        rgba(0,0,0,.08)

    );

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.shop-content{

    color:#fff;

    max-width:800px;

    padding:20px;

}

.shop-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(20px);

    padding:10px 22px;

    border-radius:999px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

.shop-content h2{

    font-size:64px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

}

.shop-content p{

    font-size:22px;

    opacity:.92;

    line-height:1.8;

    margin-bottom:40px;

}


/*======================================
BUTTONS
======================================*/

.shop-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.shop-btn{

    background:#16a34a;

    color:#fff;

    padding:18px 42px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.shop-btn:hover{

    transform:translateY(-6px);

    background:#15803d;

}

.shop-btn2{

    background:rgba(255,255,255,.18);

    color:#fff;

    text-decoration:none;

    backdrop-filter:blur(20px);

    padding:18px 42px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,.35);

    transition:.35s;

}

.shop-btn2:hover{

    background:#dc2626;

    transform:translateY(-6px);

}


/*======================================
CONTACT
======================================*/

.contact-section{

    padding:110px 0;

    background:#f8fafc;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1.3fr;

    gap:45px;

    align-items:center;

}

.contact-left{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.contact-card{

    background:#fff;

    border-radius:24px;

    padding:28px;

    display:flex;

    gap:20px;

    align-items:flex-start;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-icon{

    width:68px;

    height:68px;

    border-radius:18px;

    background:linear-gradient(135deg,#16a34a,#dc2626);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

}

.contact-card h3{

    font-size:22px;

    margin-bottom:10px;

}

.contact-card p{

    color:#555;

    line-height:1.8;

}

.contact-card a{

    color:#16a34a;

    text-decoration:none;

}

.contact-card a:hover{

    color:#dc2626;

}


/*======================================
MAP
======================================*/

.map-card{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    background:#fff;

    box-shadow:0 30px 70px rgba(0,0,0,.10);

}

.map-card iframe{

    width:100%;

    height:650px;

    border:none;

}

.map-button{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(20px);

    padding:18px 34px;

    border-radius:999px;

    color:#111;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.map-button:hover{

    background:#16a34a;

    color:#fff;

}


/*======================================
RESPONSIVE
======================================*/

@media(max-width:992px){

.contact-wrapper{

    grid-template-columns:1fr;

}

.shop-content h2{

    font-size:46px;

}

.shop-content p{

    font-size:18px;

}

.map-card iframe{

    height:450px;

}

}


@media(max-width:768px){

.shop-banner{

    width:100%;

    border-radius:0;

}

.shop-banner img{

    height:88vh;

    object-fit:cover;

}

.shop-content h2{

    font-size:34px;

}

.shop-content p{

    font-size:16px;

}

.shop-btn,

.shop-btn2{

    width:100%;

}

.contact-card{

    padding:22px;

}

.map-card{

    border-radius:20px;

}

.map-card iframe{

    height:330px;

}

}
