/* Google Fonts: Outfit (Headings) & Plus Jakarta Sans (Body) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Reset & Variables */
:root {
  --primary-dark: #0f172a;    /* Slate 900 */
  --primary-slate: #1e293b;   /* Slate 800 */
  --text-dark: #0f172a;
  --text-muted: #64748b;      /* Slate 500 */
  --text-light: #f8fafc;
  --accent: #f97316;          /* Orange 500 */
  --accent-hover: #ea580c;    /* Orange 600 */
  --accent-light: #ffedd5;    /* Orange 100 */
  --bg-main: #f8fafc;         /* Slate 50 */
  --bg-card: #ffffff;
  --bg-dark-section: #0b0f19; /* Deep dark blue */
  --success: #22c55e;         /* Green 500 (WA color) */
  --success-hover: #16a34a;   /* Green 600 */
  --border-color: #e2e8f0;    /* Slate 200 */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Typography & Layout Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

.btn-whatsapp {
  background-color: var(--success);
  color: #fff;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

.btn-whatsapp:hover {
  background-color: var(--success-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-slate);
}

.btn-outline:hover {
  background-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
}

.logo span {
  color: var(--accent);
}

.logo-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-slate);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

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

.nav-cta {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-dark);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(255, 237, 213, 0.5) 0%, rgba(255, 255, 255, 0) 50%),
              radial-gradient(circle at 10% 80%, rgba(226, 232, 240, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
}

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

.hero-content {
  max-width: 650px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(249, 115, 22, 0.08);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.hero-tag i {
  font-size: 12px;
}

.hero-title {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.trust-info h4 {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
}

.trust-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border: 8px solid #fff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  transform: rotate(1deg);
  transition: transform 0.5s ease;
}

.hero-image-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background-color: var(--primary-dark);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: float 4s ease-in-out infinite;
}

.hero-badge-icon {
  background-color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.hero-badge-text h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 2px;
}

.hero-badge-text p {
  font-size: 12px;
  color: #94a3b8;
}

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

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(249, 115, 22, 0.3);
}

.product-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #ffffff;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  mix-blend-mode: multiply;
}

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

.product-moq-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  background-color: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.product-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-specs {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-bottom: 20px;
}

.spec-item {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.spec-item i {
  color: var(--accent);
}

.product-card .btn {
  width: 100%;
}

/* File Guidelines Section */
.guidelines-section {
  background-color: var(--bg-dark-section);
  color: #fff;
}

.guidelines-section .section-title {
  color: #fff;
}

.guidelines-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.guidelines-content h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 16px;
}

.guidelines-desc {
  color: #94a3b8;
  margin-bottom: 32px;
}

.file-formats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.format-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 16px 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.format-box:hover {
  background-color: rgba(249, 115, 22, 0.1);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.format-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 8px;
}

.format-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  display: block;
}

.format-desc {
  font-size: 10px;
  color: #64748b;
  display: block;
}

.guidelines-tips {
  list-style: none;
}

.guidelines-tips li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  color: #cbd5e1;
  font-size: 15px;
}

.guidelines-tips li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--accent);
}

.guidelines-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.guidelines-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background-color: var(--accent);
  filter: blur(120px);
  opacity: 0.15;
}

.card-badge {
  background-color: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
}

.guidelines-card h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}

.guidelines-card p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 24px;
}

/* Features (Keunggulan) Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, 0.2);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  background-color: var(--accent);
  color: #fff;
  transform: rotate(5deg);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
}

/* Order Steps (Cara Pemesanan) Section */
.steps-wrapper {
  position: relative;
  margin-top: 40px;
}

.steps-line {
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: var(--border-color);
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.step-card {
  text-align: center;
  padding: 0 10px;
}

.step-number {
  width: 90px;
  height: 90px;
  background-color: var(--bg-card);
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover .step-number {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Portfolio Section */
.portfolio-filters {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 24px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--primary-slate);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

/* Portfolio Infinite Marquee */
.portfolio-marquee-outer {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 8px 0;
}

.portfolio-marquee-outer::before,
.portfolio-marquee-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.portfolio-marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-page, #fff), transparent);
}
.portfolio-marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-page, #fff), transparent);
}

.portfolio-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.portfolio-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.portfolio-marquee-item {
  width: 260px;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  background: #ffffff;
  cursor: pointer;
}

.portfolio-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  display: block;
  padding: 6px;
  box-sizing: border-box;
  mix-blend-mode: multiply;
}

.portfolio-marquee-item:hover img {
  transform: scale(1.07);
}

.portfolio-marquee-item .portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 16px 14px 12px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.portfolio-marquee-item:hover .portfolio-overlay {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .portfolio-marquee-item {
    width: 180px;
    height: 180px;
  }
}

.portfolio-slider-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.portfolio-slider-track-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  background-color: #f8fafc;
}

.portfolio-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.portfolio-slide {
  min-width: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--border-color);
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 10;
  transition: all 0.3s;
}

.slider-btn:hover {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev-btn {
  left: -23px;
}

.slider-btn.next-btn {
  right: -23px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  width: 100%;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background-color: var(--accent);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .portfolio-slider-container {
    padding: 0 10px;
  }
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .slider-btn.prev-btn {
    left: 15px;
  }
  .slider-btn.next-btn {
    right: 15px;
  }
  .portfolio-slide {
    aspect-ratio: 1/1;
  }
}

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background-color: var(--border-color);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.portfolio-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-category {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.portfolio-title {
  color: #fff;
  font-size: 18px;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 800px;
  max-height: 80vh;
  position: relative;
  animation: zoom 0.3s ease;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 4px solid #fff;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--accent);
}

@keyframes zoom {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Contact & Location Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 12px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 15px;
  font-weight: 650;
  margin-bottom: 4px;
}

.contact-text p {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-text a:hover {
  color: var(--accent);
}

.hours-list {
  list-style: none;
  font-size: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
}

.hours-time {
  color: var(--text-muted);
}

.hours-row.closed .hours-time {
  color: #ef4444;
  font-weight: 600;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 100%;
  min-height: 400px;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer Section */
footer {
  background-color: var(--primary-dark);
  color: #fff;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: #94a3b8;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-list li i {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-icon-btn {
  width: 60px;
  height: 60px;
  background-color: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.whatsapp-icon-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.whatsapp-icon-btn:hover {
  background-color: var(--success-hover);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.6);
}

.whatsapp-tooltip {
  background-color: var(--primary-dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: var(--primary-dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  .products-grid, .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guidelines-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-line {
    display: none;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 30px;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    gap: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: left 0.4s ease;
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .menu-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    padding-top: 120px;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-badge {
    left: 10px;
    bottom: -10px;
  }
  .products-grid, .portfolio-grid, .features-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  .file-formats {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}
