/* ========================================
   AFRICOOL TECHNOLOGY - REDESIGNED
   Premium Dark Theme with Amber Accents
   ======================================== */

:root {
  /* Primary Colors - Dark Premium */
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-card: #242424;
  --bg-elevated: #2d2d2d;
  
  /* Accent Colors - Warm Amber/Gold */
  --accent-primary: #f4a261;
  --accent-secondary: #e76f51;
  --accent-gold: #d4a373;
  --accent-gradient: linear-gradient(135deg, #f4a261, #e76f51);
  
  /* Text Colors */
  --text-primary: #fafafa;
  --text-secondary: #a0a0a0;
  --text-muted: #6b6b6b;
  
  /* Functional */
  --success: #2dd4bf;
  --error: #ef4444;
  
  /* Effects */
  --glow-amber: 0 0 30px rgba(244, 162, 97, 0.3);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.4s 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: 90px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

/* Subtle background pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(244, 162, 97, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(231, 111, 81, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-secondary);
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-secondary);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.98);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

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

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-link {
  padding: 0.6rem 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 30px;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

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

.nav-cta {
  background: var(--accent-gradient);
  color: #0d0d0d !important;
  font-weight: 600;
}

.nav-cta:hover {
  box-shadow: var(--glow-amber);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(244, 162, 97, 0.3);
  background: rgba(244, 162, 97, 0.1);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Dropdown */
.mobile-dropdown {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(244, 162, 97, 0.1);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  z-index: 999;
}

.mobile-dropdown.active {
  max-height: 400px;
  padding: 1rem;
}

.mobile-dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-dropdown-content a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  border-radius: 10px;
  transition: var(--transition-fast);
}

.mobile-dropdown-content a:hover,
.mobile-dropdown-content a.active {
  background: rgba(244, 162, 97, 0.1);
  color: var(--accent-primary);
}

@media (max-width: 992px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(244, 162, 97, 0.08) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.06) 0%, transparent 70%);
  animation: heroGlow 10s ease-in-out infinite reverse;
}

@keyframes heroGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(244, 162, 97, 0.1);
  border: 1px solid rgba(244, 162, 97, 0.25);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #0d0d0d;
  box-shadow: var(--glow-amber);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(244, 162, 97, 0.4);
  color: #0d0d0d;
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(244, 162, 97, 0.4);
  color: var(--accent-primary);
}

.btn-secondary:hover {
  background: rgba(244, 162, 97, 0.1);
  border-color: var(--accent-primary);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-number span {
  color: var(--accent-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   SECTIONS
   ======================================== */

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

.section-alt {
  background: var(--bg-secondary);
}

.container-xl {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(244, 162, 97, 0.1);
  border: 1px solid rgba(244, 162, 97, 0.25);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ========================================
   SERVICE CARDS
   ======================================== */

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

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-smooth);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px) rotate(2deg);
  border-color: rgba(244, 162, 97, 0.2);
  box-shadow: var(--shadow-elevated);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(244, 162, 97, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-primary);
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--accent-gradient);
  color: #0d0d0d;
}

.service-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.service-card h4 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ========================================
   QUICK LINKS
   ======================================== */

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

.quick-link-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.quick-link-card:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: rgba(244, 162, 97, 0.2);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.ql-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: rgba(244, 162, 97, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent-primary);
  transition: var(--transition-smooth);
}

.quick-link-card:hover .ql-icon {
  background: var(--accent-gradient);
  color: #0d0d0d;
}

.quick-link-card h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.quick-link-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 992px) {
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .quick-links-grid { grid-template-columns: 1fr; }
}

/* ========================================
   PRODUCTS GRID
   ======================================== */

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

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-4px) rotate(-2deg);
  border-color: rgba(244, 162, 97, 0.2);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.product-image {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: rgba(244, 162, 97, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: var(--transition-smooth);
}

.product-card:hover .product-image {
  background: var(--accent-gradient);
  color: #0d0d0d;
}

.product-card h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.product-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

@media (max-width: 576px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ========================================
   GALLERY GRID
   ======================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  will-change: transform;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 1;
  transform: none;
}

.gallery-card.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
}

.gallery-card.tall {
  grid-row: span 2;
  aspect-ratio: 1/2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-card:hover img {
  transform: scale(1.08) rotate(1deg);
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13, 13, 13, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.gallery-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}

@media (max-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.875rem; }
  .gallery-card.wide,
  .gallery-card.large,
  .gallery-card.tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
  .gallery-card { border-radius: 12px; }
  .gallery-overlay { padding: 1rem; }
  .gallery-content h4 { font-size: 0.95rem; }
  .gallery-content p { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .gallery-grid { gap: 0.5rem; }
  .gallery-card { border-radius: 10px; }
  .gallery-overlay { padding: 0.75rem; }
  .gallery-content h4 { font-size: 0.85rem; margin-bottom: 0.2rem; }
  .gallery-content p { font-size: 0.75rem; }
}

/* ========================================
   PROCESS TIMELINE
   ======================================== */

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

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0.3;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: scale(1.05);
}

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: #0d0d0d;
  box-shadow: var(--glow-amber);
  position: relative;
  z-index: 2;
}

.process-step h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.step-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

@media (max-width: 992px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
}

@media (max-width: 576px) {
  .process-timeline { grid-template-columns: 1fr; }
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-wrapper h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.quick-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quick-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.quick-action-btn.call {
  background: var(--accent-gradient);
  color: #0d0d0d;
}

.quick-action-btn.call:hover {
  box-shadow: var(--glow-amber);
  transform: translateY(-2px);
}

.quick-action-btn.wa {
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #0d0d0d;
}

.quick-action-btn.wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45, 212, 191, 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  background: var(--bg-primary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.btn-submit {
  padding: 1rem;
  background: var(--accent-gradient);
  color: #0d0d0d;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-amber);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-fast);
}

.info-card:hover {
  border-color: rgba(244, 162, 97, 0.2);
  transform: translateX(6px) scale(1.02);
  transition: transform 0.3s ease;
}

.info-card i {
  font-size: 1.5rem;
  color: var(--accent-primary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(244, 162, 97, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card.wa i {
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
}

.info-card div h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.info-card div a,
.info-card div p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.info-card a:hover {
  color: var(--accent-primary);
}

.map-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.map-container {
  height: 180px;
}

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

.map-actions {
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
}

.map-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.625rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-fast);
}

.map-action-btn:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.hours-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hours-header i {
  font-size: 1.25rem;
  color: var(--accent-primary);
}

.hours-header h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin: 0;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.hours-item span:first-child {
  color: var(--text-muted);
}

.hours-item span:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
  padding: 150px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
}

.page-header h1 {
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-header h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ========================================
   FOOTER
   ======================================== */

.main-footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

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

.footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.footer-brand-motto {
  font-size: 0.65rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.8rem;
}

.trust-badge i {
  color: var(--accent-primary);
}

.trust-badge span {
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-gradient);
  border-color: var(--accent-primary);
  color: #0d0d0d;
  transform: translateY(-3px);
}

.footer-column h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent-primary);
  display: inline-block;
}

.footer-links-list,
.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list li a,
.footer-services-list li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.footer-links-list li a:hover,
.footer-services-list li a:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

.footer-links-list li a i {
  font-size: 0.5rem;
  color: var(--accent-primary);
}

.footer-services-list li a i {
  color: var(--accent-primary);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(244, 162, 97, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-value-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-decoration: none;
}

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

.footer-hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hours h5 {
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-hours h5 i {
  color: var(--accent-primary);
}

.footer-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-hours-list li .day {
  color: var(--text-muted);
}

.footer-hours-list li .time {
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ========================================
   UTILITIES
   ======================================== */

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animations */
.animate-on-scroll,
.service-card,
.product-card,
.process-step,
.quick-link-card,
.info-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Gallery cards are visible by default - no reveal animation */
.gallery-card {
  opacity: 1;
  transform: none;
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-title {
  animation: bounce 2s infinite;
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

@media (max-width: 1024px) {
  .section { padding: 84px 0; }
  .hero { padding: 110px 0 70px; }
  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 2rem; }
}

@media (max-width: 768px) {
  .container-xl { padding: 0 1rem; }
  .section { padding: 72px 0; }
  .hero { min-height: auto; padding: 110px 0 54px; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.7rem); }
  .hero-desc { font-size: 1rem; line-height: 1.65; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1rem; }
  .stat-number { font-size: 1.6rem; }
  .page-header { padding: 130px 0 50px; }
}

@media (max-width: 420px) {
  .brand-name { font-size: 0.98rem; }
  .brand-tagline { font-size: 0.58rem; }
  .mobile-toggle { width: 42px; height: 42px; }
  .btn { padding: 0.88rem 1rem; font-size: 0.94rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================
   CTA / POLICY
   ======================================== */

.section-cta {
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.1), rgba(231, 111, 81, 0.05));
  border-top: 1px solid rgba(244, 162, 97, 0.1);
  border-bottom: 1px solid rgba(244, 162, 97, 0.1);
}

.cta-box {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(244, 162, 97, 0.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(244, 162, 97, 0.1) 0%, transparent 60%);
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}

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

.process-cta {
  margin-top: 4rem;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f4a261, #e76f51);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.process-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.process-cta h3 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.process-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.btn-white {
  background: #fff;
  color: #0d0d0d;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--text-primary);
}

.policy-content p,
.policy-content li {
  color: var(--text-secondary);
  line-height: 1.8;
}

.policy-content ul {
  padding-left: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .cta-box { padding: 3rem 1.5rem; }
  .cta-box h3 { font-size: 1.5rem; }
  .process-cta { padding: 3rem 1.5rem; }
}

/* ========================================
   SITE LOADER
   ======================================== */

body.is-loading {
  overflow: hidden;
  touch-action: none;
}

.site-loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease-out;
  overflow: hidden;
}

.site-loader.is-loaded {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 560px;
}

.loader-spinner {
  width: 80px;
  height: 80px;
  background: url('../assets/snowflake.png') no-repeat center center;
  background-size: contain;
  animation: spin 2s linear infinite, pulse 1.5s ease-in-out infinite;
  margin: 0 auto 1rem;
}

.loader-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.loader-tagline {
  font-size: 0.72rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}

.loader-progress {
  width: min(320px, 80vw);
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 1px solid rgba(244, 162, 97, 0.2);
}

.loader-progress-bar {
  width: 40%;
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 999px;
  transform: translateX(-120%);
  animation: loaderIndeterminate 1.15s ease-in-out infinite;
}

.loader-text,
.site-loader p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  color: var(--accent-primary);
  letter-spacing: 0.05em;
  animation: fadePulse 1.5s ease-in-out infinite;
}

.site-loader .snow-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.loader-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.loader-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(244, 162, 97, 0.35);
  filter: blur(0.1px);
  animation: loaderParticleFloat 4.2s linear infinite;
}

.loader-particle:nth-child(1) { left: 18%; top: -10%; animation-delay: -0.6s; }
.loader-particle:nth-child(2) { left: 42%; top: -20%; width: 4px; height: 4px; animation-duration: 5.4s; animation-delay: -2.1s; }
.loader-particle:nth-child(3) { left: 66%; top: -15%; width: 5px; height: 5px; animation-duration: 4.8s; animation-delay: -1.4s; }
.loader-particle:nth-child(4) { left: 86%; top: -25%; width: 3px; height: 3px; animation-duration: 6.2s; animation-delay: -3.3s; }

/* Falling snow particles */
.site-loader::before,
.site-loader::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
}

.site-loader::before {
  background: linear-gradient(transparent, rgba(244, 162, 97, 0.1));
  animation: snowFall 10s linear infinite;
  opacity: 0.3;
}

.site-loader::after {
  background: linear-gradient(transparent, rgba(231, 111, 81, 0.1));
  animation: snowFall 15s linear infinite;
  opacity: 0.2;
  animation-delay: -5s;
}

/* Keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes fadePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes loaderIndeterminate {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@keyframes loaderParticleFloat {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translate3d(-20px, 120vh, 0); opacity: 0; }
}

@keyframes snowFall {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

