/* =============================
   ROZINE - Global Styles
   ============================= */

@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');

:root {
  --primary: #1B7A5C;
  --primary-dark: #0F4A36;
  --secondary: #20965A;
  --secondary-dark: #176E43;
  --dark: #0F4A36;
  --dark-alt: #083020;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --bg-light: #EEEEEE;
  --white: #fff;
  --border: #d8d8d8;
  --success: #28a745;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 20px auto 0;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,122,92,0.4);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32,150,90,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* =============================
   HEADER / NAVBAR
   ============================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

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

.nav-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
}

.nav-logo span {
  font-family: "Playball", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
}

header.scrolled .nav-logo span {
  color: #1a1a1a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--white);
  font-family: "Playball", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 4px;
}

header.scrolled .nav-links a {
  color: #1a1a1a;
}

header.scrolled .nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

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

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

.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

header.scrolled .nav-call {
  color: #1a1a1a;
}

.nav-call i {
  color: var(--secondary);
  font-size: 1rem;
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 5, 20, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9980;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-overlay.open {
  display: block;
  opacity: 1;
}

@media (min-width: 769px) {
  .mobile-menu {
    box-shadow: none;
  }
}

/* Mobile Drawer Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 290px;
  max-width: 85vw;
  background: rgba(8, 18, 60, 0.82);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 10px 0 50px rgba(0, 0, 0, 0.45);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  overflow-y: auto;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.22s ease;
}
.mobile-nav a i {
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.22s ease;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-left-color: var(--secondary);
  padding-left: 28px;
}
.mobile-nav a:hover i,
.mobile-nav a.active i {
  color: var(--secondary);
}
.mobile-menu-footer {
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu-footer a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
}
.mobile-menu-footer a i {
  background: rgba(32, 150, 90, 0.18);
  padding: 9px;
  border-radius: 50%;
  font-size: 0.82rem;
}
.mobile-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.mobile-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

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

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

header.scrolled .hamburger span {
  background: var(--dark);
}

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

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

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

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 14vh;
  padding-bottom: 14vh;
  background: #061510;
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,21,16,0.78) 0%, rgba(10,40,25,0.65) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(27,122,92,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(32,150,90,0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--secondary);
}

.hero-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

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

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
}

.stat-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.hero-form .form-group {
  margin-bottom: 16px;
}

.hero-form input,
.hero-form select,
.hero-form textarea,
.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  box-sizing: border-box;
}

.hero-form input::placeholder,
.hero-form select::placeholder,
.hero-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(32,150,90,0.2);
}

/* Fix browser autofill override */
.hero-form input:-webkit-autofill,
.hero-form input:-webkit-autofill:hover,
.hero-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px rgba(8,30,20,0.9) inset;
  box-shadow: 0 0 0 1000px rgba(8,30,20,0.9) inset;
  border: 1px solid rgba(255,255,255,0.2);
  caret-color: var(--white);
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.cs-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  box-sizing: border-box;
}

.cs-selected.selected-active {
  color: #ffffff;
}

.custom-select.open .cs-selected {
  border-color: var(--primary);
  background: transparent;
  box-shadow: 0 0 0 3px rgba(32,150,90,0.2);
}

.cs-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: rgba(255,255,255,0.6);
}

.custom-select.open .cs-arrow {
  transform: rotate(180deg);
}

.cs-options {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: rgba(10,20,30,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  z-index: 999;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.custom-select.open .cs-options {
  display: block;
  animation: csSlideDown 0.2s ease;
}

@keyframes csSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cs-options li {
  padding: 11px 16px;
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.cs-options li:hover {
  background: rgba(255,255,255,0.15);
}

.cs-options li.cs-active {
  background: rgba(255,255,255,0.12);
  color: var(--secondary);
  font-weight: 600;
}

.hero-form .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* =============================
   SERVICES / FEATURES CARDS
   ============================= */

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

.products-home-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

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

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
}

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

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

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(27,122,92,0.1), rgba(32,150,90,0.1));
  color: var(--primary);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

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

/* =============================
   ABOUT SECTION
   ============================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: stretch;
}

.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  padding-bottom: 30px;
  min-height: 100%;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 560px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 5rem;
}

.about-img-placeholder p {
  font-size: 1.1rem;
  margin-top: 12px;
  opacity: 0.85;
}

@keyframes badgeFloat {
  0%   { transform: translateY(0px) rotate(-1deg); }
  25%  { transform: translateY(-8px) rotate(1deg); }
  50%  { transform: translateY(-4px) rotate(-1deg); }
  75%  { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(-1deg); }
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--white);
  border: 3px solid #20965A;
  animation: badgeFloat 3s ease-in-out infinite;
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
}


.about-badge h3 {
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 800;
}

.about-badge p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.about-text h2 span {
  color: var(--primary);
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text);
}

.about-features li i {
  color: var(--success);
  font-size: 1rem;
}

/* =============================
   TESTIMONIALS
   ============================= */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

/* ---- Testimonial Carousel ---- */
.testi-carousel-wrap {
  overflow: hidden;
  position: relative;
  padding: 16px 0 32px;
}

.testi-carousel-wrap::before,
.testi-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.testi-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light), transparent);
}
.testi-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light), transparent);
}

.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testiScroll 32s linear infinite;
}

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

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

.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  width: 340px;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.testi-stars {
  color: #ffc107;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.testi-card p {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.75;
  font-size: 0.93rem;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-author h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .testi-card { width: 280px; padding: 22px 20px 18px; }
  .testi-carousel-wrap::before,
  .testi-carousel-wrap::after { width: 60px; }
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.testimonial-stars {
  color: #ffc107;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

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

.products-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  color: var(--text);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  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-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--secondary);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-body {
  padding: 24px;
}

.product-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  transition: var(--transition);
}

.gallery-item:nth-child(2) .gallery-img { background: linear-gradient(135deg, #667eea, #764ba2); }
.gallery-item:nth-child(3) .gallery-img { background: linear-gradient(135deg, #f093fb, #f5576c); }
.gallery-item:nth-child(5) .gallery-img { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.gallery-item:nth-child(6) .gallery-img { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.gallery-item:nth-child(7) .gallery-img { background: linear-gradient(135deg, #fa709a, #fee140); }
.gallery-item:nth-child(8) .gallery-img { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.gallery-item:nth-child(9) .gallery-img { background: linear-gradient(135deg, #ffecd2, #fcb69f); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

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

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

.gallery-overlay i {
  font-size: 2rem;
  margin-bottom: 8px;
}

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

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* =============================
   CAREER
   ============================= */

.jobs-grid {
  display: grid;
  gap: 20px;
}

.job-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.job-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.job-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.job-meta i {
  color: var(--primary);
}

.job-type {
  padding: 6px 16px;
  background: rgba(27,122,92,0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

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

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

.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

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

.contact-item a:hover {
  color: var(--primary);
}

/* =============================
   FORMS
   ============================= */

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

.form-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(27,122,92,0.05);
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,122,92,0.1);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--success);
}

.form-success i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* =============================
   MAP
   ============================= */

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  box-shadow: var(--shadow);
}

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

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

footer {
  background: #04100A;
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.social-btn.facebook:hover { background: #1877f2; }
.social-btn.instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.twitter:hover { background: #1da1f2; }
.social-btn.youtube:hover { background: #ff0000; }
.social-btn.linkedin:hover { background: #0077b5; }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 6px;
}

.footer-col ul li a i {
  font-size: 0.7rem;
  color: var(--secondary);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
}

/* Footer small map column */
.footer-map {
  border-radius: 10px;
  overflow: hidden;
  height: 148px;
  margin-top: 4px;
  border: 1px solid rgba(255,255,255,0.08);
}

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

.footer-map-addr {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.52);
  margin-top: 10px;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.footer-map-addr i {
  color: var(--secondary);
  margin-top: 2px;
  flex-shrink: 0;
}

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

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

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

/* =============================
   FLOATING WIDGETS
   ============================= */

.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  text-decoration: none;
  color: white;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.float-whatsapp {
  background: #25d366;
}

.float-call {
  background: #1a73e8;
}

.float-query {
  background: var(--secondary);
}

.float-label {
  position: absolute;
  right: 65px;
  background: var(--dark);
  color: white;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.float-btn:hover .float-label {
  opacity: 1;
}

/* WhatsApp Chat Box */
.whatsapp-box {
  display: none;
  position: fixed;
  bottom: 110px;
  right: 24px;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 9998;
  overflow: hidden;
}

.whatsapp-box.open {
  display: block;
  animation: slideUp 0.3s ease;
}

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

.wa-header {
  background: #075e54;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.wa-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
}

.wa-info h4 {
  color: white;
  font-size: 0.95rem;
}

.wa-info span {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
}

.wa-body {
  padding: 20px;
  background: #ece5dd;
}

.wa-bubble {
  background: white;
  border-radius: 12px 12px 12px 0;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  margin-bottom: 6px;
  max-width: 240px;
}

.wa-time {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: right;
}

.wa-footer {
  padding: 16px 20px;
  display: flex;
  gap: 10px;
}

.wa-footer input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.9rem;
  outline: none;
}

.wa-send {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.wa-send:hover {
  background: #128c7e;
}

/* Query Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9997;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: slideDown 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  background: none;
  border: none;
}

.modal-close:hover {
  color: var(--dark);
}

/* =============================
   PAGE BANNER
   ============================= */

.page-banner {
  background: linear-gradient(135deg, var(--dark), var(--dark-alt));
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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.03'%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");
}

.page-banner h1 {
  color: white;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

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

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

.breadcrumb .current {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* =============================
   FLOATING ENQUIRY BUTTON
   ============================= */

.float-enquiry {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a73e8 0%, #0f55c0 100%);
  color: white;
  border-radius: 0 50px 50px 0;
  padding: 14px 16px;
  gap: 0;
  width: 52px;
  box-shadow: 4px 4px 24px rgba(26, 115, 232, 0.45);
  text-decoration: none;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              gap 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
}

.float-enquiry:hover {
  width: 148px;
  padding: 14px 20px 14px 16px;
  gap: 10px;
  box-shadow: 6px 6px 30px rgba(26, 115, 232, 0.6);
  color: white;
}

.float-enquiry-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
}

.float-enquiry-text {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  overflow: hidden;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease 0.05s;
}

.float-enquiry:hover .float-enquiry-text {
  max-width: 110px;
  opacity: 1;
}

/* Pulse ring animation on the icon */
.float-enquiry::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 0 50px 50px 0;
  background: rgba(255, 255, 255, 0.15);
  animation: enquiryPulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes enquiryPulse {
  0%   { opacity: 0.7; transform: translateY(-50%) scale(1); }
  70%  { opacity: 0; transform: translateY(-50%) scale(1.6); }
  100% { opacity: 0; transform: translateY(-50%) scale(1.6); }
}

@media (max-width: 768px) {
  .float-enquiry { padding: 11px 13px; width: 46px; }
  .float-enquiry:hover { width: 136px; padding: 11px 16px 11px 13px; }
  .float-enquiry-icon { font-size: 1.1rem; }
  .float-enquiry-text { font-size: 0.8rem; }
}

/* =============================
   SCROLL TO TOP
   ============================= */

.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 24px;
  width: 46px;
  height: 46px;
  background: #1a1a1a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: #000;
  transform: translateY(-3px);
}

/* =============================
   PRELOADER
   ============================= */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.preloader-panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--dark);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 1;
}

.preloader-panel.left  { left: 0; }
.preloader-panel.right { right: 0; }

.preloader.hidden .preloader-panel.left  { transform: translateX(-100%); }
.preloader.hidden .preloader-panel.right { transform: translateX(100%); }

.preloader.hidden {
  pointer-events: none;
}

.preloader img {
  position: relative;
  z-index: 2;
  animation: logoZoomIn 1.2s ease forwards;
}

@keyframes logoZoomIn {
  0%   { transform: scale(0.1); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}

/* =============================
   CTA BANNER
   ============================= */

.cta-banner {
  position: relative;
  padding: 100px 0;
  background-image: url('../images/img-4.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
}

.cta-text h2 {
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =============================
   NOTIFICATION TOAST
   ============================= */

.toast {
  position: fixed;
  top: 30px;
  right: 24px;
  background: var(--success);
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 99999;
  transform: translateX(120%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateX(0);
}

/* =============================
   TEAM SECTION
   ============================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

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

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

.team-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

.team-info {
  padding: 20px;
}

.team-info h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-info span {
  font-size: 0.85rem;
  color: var(--primary);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.team-social a {
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-light);
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--primary);
  color: white;
}

/* =============================
   VALUES
   ============================= */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* =============================
   FAQ
   ============================= */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: var(--white);
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question i {
  transition: var(--transition);
  color: var(--primary);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 18px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  background: var(--white);
}

.faq-item.open .faq-answer {
  display: block;
}

/* =============================
   ANIMATED COUNTER
   ============================= */

.counter-section {
  background: linear-gradient(135deg, var(--dark-alt) 0%, var(--primary) 50%, var(--dark) 100%);
  padding: 60px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item h3 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
}

.counter-item p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-top: 6px;
}

/* =============================
   RESPONSIVE
   ============================= */

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .section-title h2 {
    font-size: 1.7rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
    aspect-ratio: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cta-actions {
    justify-content: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-badge {
    display: none;
  }
}

/* =============================
   CONTACT HOME SECTION
   ============================= */

.contact-home-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
}

.contact-home-img {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.contact-home-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.567) 40%, rgba(240, 240, 240, 0));
  display: flex;
  align-items: flex-end;
  padding: 36px 32px;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: white;
}

.ci-item i {
  font-size: 1rem;
  color: #ff6b35;
  margin-top: 3px;
  flex-shrink: 0;
}

.ci-item span {
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.92;
}

.contact-home-form {
  background: var(--white);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-home-form h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-home-form > p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.chf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.chf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.chf-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.3px;
}

.chf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.chf-input-wrap i {
  position: absolute;
  left: 14px;
  color: var(--text-light);
  font-size: 0.85rem;
  pointer-events: none;
}

.chf-input-wrap input,
.chf-input-wrap textarea {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--dark);
  background: #f9fafb;
  transition: var(--transition);
  outline: none;
  font-family: inherit;
}

.chf-input-wrap input:focus,
.chf-input-wrap textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,122,92,0.1);
}

.chf-textarea {
  align-items: flex-start;
}

.chf-textarea i {
  top: 13px;
}

.chf-textarea textarea {
  min-height: 110px;
  resize: vertical;
}

.chf-group:not(:last-child) {
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .contact-home-card {
    grid-template-columns: 1fr;
  }
  .contact-home-img {
    min-height: 260px;
  }
  .contact-home-form {
    padding: 32px 24px;
  }
  .chf-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .page-banner h1 {
    font-size: 1.8rem;
  }
  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }
  .whatsapp-box {
    width: 290px;
    right: 10px;
  }
  .floating-widgets {
    right: 14px;
    bottom: 20px;
  }
}

/* =============================
   SOCIAL MEDIA FEED
   ============================= */

.social-feed-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sfb-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.sfb-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  color: white;
}

.sfb-fb { background: #1877f2; }
.sfb-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.sfb-yt { background: #ff0000; }
.sfb-li { background: #0077b5; }
.sfb-tw { background: #000; }

.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

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

.sf-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.sf-post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 12px;
}

.sf-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sf-user {
  flex: 1;
}

.sf-user strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.sf-user span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.sf-platform-icon {
  font-size: 1.2rem;
  opacity: 0.8;
  transition: var(--transition);
}

.sf-platform-icon:hover {
  opacity: 1;
  transform: scale(1.15);
}

.sf-post-img {
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 2.8rem;
  color: white;
  position: relative;
}

.sf-img-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.3);
  padding: 4px 12px;
  border-radius: 20px;
}

.sf-post-body {
  padding: 14px 16px;
}

.sf-post-body p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

.sf-post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
}

.sf-post-footer span {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.sf-post-footer a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  transition: var(--transition);
}

.sf-post-footer a:hover {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .social-feed-grid {
    grid-template-columns: 1fr;
  }
  .sfb-btn span {
    display: none;
  }
  .sfb-btn {
    padding: 12px 16px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    justify-content: center;
  }
}

/* =============================
   PRODUCT LIST SECTION
   ============================= */
.product-list-section {
  padding: 60px 0 40px;
}

.product-category {
  margin-bottom: 44px;
}

.product-cat-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #1a5fb4 0%, #4a9fd4 55%, transparent 100%);
  color: #fff;
  padding: 7px 20px 7px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px 0 0 3px;
  margin-bottom: 18px;
  position: relative;
}

.product-cat-header i {
  font-size: 0.9rem;
  opacity: 0.85;
}

.product-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 32px;
}

.product-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 6px;
  transition: background 0.18s ease;
}

.product-item:hover {
  background: #f0f6ff;
}

.product-item-bullet {
  width: 7px;
  height: 7px;
  background: #1a5fb4;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.product-item span {
  font-size: 0.9rem;
  color: #2c2c2c;
  line-height: 1.5;
}

.product-item span em {
  font-size: 0.82rem;
  color: #666;
  font-style: italic;
}

.product-item-single {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .product-items {
    grid-template-columns: 1fr;
  }
  .product-item-single {
    grid-column: auto;
  }
  .product-cat-header {
    font-size: 0.78rem;
    padding: 6px 16px 6px 12px;
  }
}
