@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 156, 202, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(46, 156, 202, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 156, 202, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

:root {
  --primary: #25274d;
  --primary-dark: #1b1d3a;
  --accent: #2e9cca;
  --accent-dark: #c8860f;
  --white: #ffffff;
  --light: #f5f7fa;
  --text: #2d3748;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow: 0 10px 40px rgba(37, 39, 77, 0.12);
  --shadow-hover: 0 20px 60px rgba(37, 39, 77, 0.2);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 0 5%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 80px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 90px;
  background: #fff;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 80px;
  width: auto;
}

.nav-logo-text .brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo-text .tagline {
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-logo img {
  transition: var(--transition);
  filter: brightness(0) invert(1);
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  color: rgb(15, 29, 58);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(46, 156, 202, 0.1);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border-top: 3px solid var(--accent);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Sub-dropdown */
.sub-dropdown {
  position: relative;
}

.sub-dropdown>a::after {
  content: ' ›';
  float: right;
  font-size: 1rem;
}

.sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: var(--transition);
  border-top: 3px solid var(--accent);
}

.sub-dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-menu a,
.sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text);
  transition: var(--transition);
}

.dropdown-menu a:hover,
.sub-menu a:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 26px;
}

.nav-contact-btn {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 12px 28px !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(46, 156, 202, 0.3);
}

.nav-contact-btn:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 156, 202, 0.4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f1d3b;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #25274d 50%, #2c2f5d 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 5% 40px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/hero_banner.png') center/cover no-repeat;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(46, 156, 202, 0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 156, 202, 0.15);
  border: 1px solid rgba(46, 156, 202, 0.4);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.hero-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 156, 202, 0.4);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px 5%;
}

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

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

.section-badge {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}

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

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: var(--light);
  padding: 80px 5%;
}

.team-section .section-title {
  color: var(--primary);
}

.team-section .section-desc {
  color: var(--text-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.team-member {
  position: relative;
  background: transparent;
  padding-bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-img-wrap {
  overflow: hidden;
  margin-bottom: 0;
  height: 100%;
}

.team-member img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.team-member:hover img {
  transform: scale(1.1);
}

.team-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #39a334;
  /* Green badge matching the reference */
  color: #fff;
  padding: 10px 24px;
  border-top-right-radius: 16px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.team-badge .name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.team-badge .role {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  margin-top: 2px;
}

@media(max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 120px 5% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/hero_banner.png') center/cover;
  opacity: 0.1;
}

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

.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb span::before {
  content: '/';
  margin-right: 8px;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #2c2f5d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.card-body {
  padding: 28px;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Product Cards */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.product-card-header {
  background: linear-gradient(135deg, var(--primary), #2c2f5d);
  padding: 32px 24px;
  text-align: center;
}

.product-card-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.product-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

/* Product card image header */
.product-card-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

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

.product-card-body {
  padding: 24px;
}

.product-card-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-body li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.product-card-body li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
}

.product-card-body li:last-child {
  border-bottom: none;
}

/* ===== BRANDS ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.brand-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--border);
  transition: var(--transition);
  min-height: 90px;
  position: relative;
  overflow: hidden;
}

.brand-item img {
  /* max-width: 120px;
  max-height: 52px; */
  width: auto;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%) opacity(0.6); */
  transition: filter 0.4s ease, transform 0.4s ease;
  display: block;
  margin: 0 auto;
}

.brand-item:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(37, 39, 77, 0.15);
}

.brand-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

/* shimmer overlay on hover */
.brand-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(46, 156, 202, 0.08));
  opacity: 0;
  transition: opacity 0.3s;
}

.brand-item:hover::after {
  opacity: 1;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-badge {
  display: inline-block;
  background: rgba(46, 156, 202, 0.12);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 20px;
}

.about-desc {
  color: var(--text-light);
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--light);
  padding: 14px;
  border-radius: 8px;
}

.about-feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.about-feature-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 29, 58, 0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay-text {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #2c2f5d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--light);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 39, 77, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: var(--primary);
  color: var(--white);
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.btn-submit:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Map */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 5% 30px;
}

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

.footer-brand .brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .brand-tag {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.87rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.social-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 0.4s ease;
  z-index: 2;
}

/* Hover effects with Brand Colors */
.social-btn.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  transform: translateY(-6px) rotate(8deg);
  box-shadow: 0 10px 20px rgba(24, 119, 242, 0.4);
}

.social-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: transparent;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 10px 20px rgba(214, 36, 159, 0.4);
}

.social-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  transform: translateY(-6px) rotate(-8deg);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.social-btn.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
}

.social-btn:hover svg {
  transform: scale(1.15);
  color: #fff;
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.footer-contact-item span:first-child {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(.22, 1, .36, 1), transform 0.65s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.cards-grid .card:nth-child(1).reveal {
  transition-delay: 0s;
}

.cards-grid .card:nth-child(2).reveal {
  transition-delay: 0.1s;
}

.cards-grid .card:nth-child(3).reveal {
  transition-delay: 0.2s;
}

.cards-grid .card:nth-child(4).reveal {
  transition-delay: 0.3s;
}

.brands-grid .brand-item:nth-child(odd).reveal {
  transform: translateX(-24px);
}

.brands-grid .brand-item:nth-child(even).reveal {
  transform: translateX(24px);
}

.brands-grid .brand-item.visible {
  transform: translateX(0) !important;
}

/* Float animation on about image */
.about-img {
  animation: float 5s ease-in-out infinite;
}

/* Pulse on WhatsApp btn */
.whatsapp-float {
  animation: pulse-ring 2.2s infinite;
}

/* Card icon spin on hover */
.card:hover .card-icon {
  animation: spin-slow 1s linear;
}

/* Divider shimmer */
.divider {
  background: linear-gradient(90deg, var(--accent) 25%, #fff8e1 50%, var(--accent) 75%);
  background-size: 400px 100%;
  animation: shimmer 2.5s infinite linear;
}

/* Stat numbers pop */
.stat-num {
  animation: countUp 0.6s ease both;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: pulse-ring 2.2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
}

/* ===== CATEGORY CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.product-card-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--light);
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.product-card-body ul {
  list-style: none;
  padding: 0;
}

.product-card-body ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.product-card-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

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

  .about-img {
    animation: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 5%;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
  }

  .nav-logo img {
    height: 48px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    padding: 40px 5%;
    gap: 15px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 12px;
    border-radius: 8px;
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-menu,
  .sub-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 20px;
    border-top: none;
    border-left: 3px solid var(--accent);
    margin: 4px 0;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .sub-dropdown.open .sub-menu {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .about-grid-rev {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .about-img img {
    height: 260px;
  }

  .section {
    padding: 50px 5%;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-member {
    display: flex;
    flex-direction: column;
  }

  .team-member img {
    aspect-ratio: 16/10;
  }

  .team-badge {
    position: relative;
    border-top-right-radius: 0;
    width: 100%;
    padding: 20px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .footer {
    padding: 50px 5% 24px;
  }

  .footer-grid {
    gap: 28px;
  }

  .page-banner {
    padding: 100px 5% 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

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

  .hero-btns,
  .slide-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .nav-logo-text .brand {
    font-size: 1.1rem;
  }

  .nav-contact-btn {
    display: none;
  }
}

/* ===== HAMBURGER ANIMATION ===== */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}