/* ============================================
   HYDRA SURE - Complete Stylesheet
   Single CSS file for all pages
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #0066CC;
  --primary-dark: #0052A3;
  --primary-light: #3385D6;
  --dark-blue: #003366;
  --darker-blue: #00264D;
  --light-blue: #E8F4FD;
  --pale-blue: #F0F8FF;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --light-gray: #E5E7EB;
  --mid-gray: #9CA3AF;
  --dark-gray: #333333;
  --text-body: #4B5563;
  --accent-gold: #F5A623;
  --accent-gold-dark: #D4911E;
  --success: #10B981;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 80%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-blue);
  text-wrap: balance;
}

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

p {
  color: var(--text-body);
  line-height: 1.65;
  text-wrap: pretty;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}


@media (max-width: 768px) {
  .logo-img {
    height: 143px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  img {
  max-width: 45%;
  }
}
@media (max-width: 450px) {
  .logo-img {
    height: 70px;
  }
  img {
  max-width: 70%;
  }
}
/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

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

.section-header p {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0, 102, 204, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

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

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

.btn-catalogue {
  background: #5dc8ea;
  color: var(--dark-blue);
  font-weight: 700;
  padding: 10px 22px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.btn-catalogue:hover {
  background: #4391a8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.btn-catalogue svg {
  width: 16px;
  height: 16px;
}

.btn-amazon {
  background: #FF9900;
  color: #111;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(255, 153, 0, 0.3);
}

.btn-amazon:hover {
  background: #E68A00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-blue);
  letter-spacing: -0.02em;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
}

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

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

.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--dark-gray);
  position: relative;
  padding: 4px 0;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

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

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

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-blue);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-gray);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--light-blue);
  color: var(--primary);
}

.mobile-menu .btn-catalogue {
  margin-top: 8px;
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-brand .nav-logo {
  color: var(--white);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.7);
}

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

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   PAGE HERO / BANNER (reused on inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 100%);
  padding: 120px 0 60px;
  margin-top: var(--nav-height);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.8);
}

.page-hero .breadcrumb a:hover {
  color: var(--white);
}

.page-hero .breadcrumb span {
  color: rgba(255,255,255,0.5);
}

/* ============================================
   HOME PAGE - Hero Section
   ============================================ */
.hero {
  margin-top: var(--nav-height);
  min-height: auto;
  padding: 80px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #004488 50%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 800;
}

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

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image{
width:520px;
max-width:100%;
height:auto;
object-fit:contain;
animation: floatHero 5s ease-in-out infinite;
border-radius: 20px;
}

@keyframes floatHero{
0%{transform:translateY(0px)}
50%{transform:translateY(-12px)}
100%{transform:translateY(0px)}
}

.hero-image-placeholder {
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-image-placeholder svg {
  width: 80px;
  height: 80px;
  color: rgba(255,255,255,0.3);
}

.hero-image-placeholder span {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* ============================================
   HOME PAGE - Trust Bar
   ============================================ */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--light-gray);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  text-align: center;
  padding: 8px 16px;
}

.trust-item .trust-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-item .trust-label {
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 500;
}

/* ============================================
   HOME PAGE - Categories
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.category-icon {
  width: 64px;
  height: 64px;
  background: var(--light-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--transition);
}

.category-card:hover .category-icon {
  background: var(--primary);
  color: var(--white);
}

.category-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: color var(--transition);
}

.category-card:hover .category-icon svg {
  color: var(--white);
}

.category-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 0.875rem;
  color: var(--text-body);
}

/* ============================================
   HOME PAGE - Product Collage / Ad Section
   ============================================ */
.collage-section {
  background: var(--off-white);
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.collage-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--light-blue), var(--pale-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  background: #5dc8ea;
}

.collage-item:hover {
  transform: scale(1.02);
}

.collage-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--dark-blue), var(--primary));
}

.collage-item:nth-child(1) .collage-content {
  color: var(--white);
  padding: 40px;
}

.collage-item:nth-child(1) .collage-content h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
}

.collage-item:nth-child(1) .collage-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.collage-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.7);
}

.collage-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.5;
}

.collage-placeholder span {
  font-size: 0.8rem;
  font-weight: 500;
}

/* ============================================
   HOME PAGE - Why Choose Us
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
}

/* ============================================
   HOME PAGE - Testimonials
   ============================================ */
.testimonials-section {
  background: var(--off-white);
}

.testimonials-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--accent-gold);
  fill: var(--accent-gold);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--primary);
  display: block;
  line-height: 0.5;
  margin-bottom: 12px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--mid-gray);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--dark-gray);
}

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

.testimonial-btn svg {
  width: 18px;
  height: 18px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  cursor: pointer;
  transition: all var(--transition);
}

.testimonial-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   HOME PAGE - CTA Banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-layout {
  display: flex;
  gap: 32px;
}

.products-sidebar {
  width: 260px;
  flex-shrink: 0;
}

.filter-group {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}

.filter-group h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--dark-blue);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 4px;
}

.filter-option:hover {
  background: var(--light-blue);
  color: var(--primary);
}

.filter-option.active {
  background: var(--primary);
  color: var(--white);
  font-weight: 500;
}

.filter-option .count {
  margin-left: auto;
  font-size: 0.8rem;
  opacity: 0.7;
}

.sort-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark-gray);
  background: var(--white);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.products-main {
  flex: 1;
  min-width: 0;
}

.products-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.products-count {
  font-size: 0.9rem;
  color: var(--text-body);
}

.products-count strong {
  color: var(--dark-blue);
}

/* Mobile filter toggle */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark-gray);
  background: var(--white);
}

.mobile-filter-btn svg {
  width: 18px;
  height: 18px;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.product-card-image {
  height: 200px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-image svg {
  width: 48px;
  height: 48px;
  color: var(--mid-gray);
  opacity: 0.4;
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.product-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-card-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--dark-blue);
  line-height: 1.3;
}

.product-card-body p {
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.product-card-footer .btn {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.product-rating svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
  fill: var(--accent-gold);
}

.product-rating span {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-left: 4px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination button {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  padding: 0 8px;
}

.pagination button:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination button.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination button svg {
  width: 16px;
  height: 16px;
}

/* No results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-body);
}

.no-results svg {
  width: 48px;
  height: 48px;
  color: var(--mid-gray);
  margin-bottom: 16px;
}

.no-results h3 {
  margin-bottom: 8px;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.product-detail-image {
  flex: 1;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.product-detail-image svg {
  width: 80px;
  height: 80px;
  color: var(--mid-gray);
  opacity: 0.3;
}

.product-detail-info {
  flex: 1;
}

.product-detail-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-detail-info h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.product-detail-rating svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  fill: var(--accent-gold);
}

.product-detail-rating span {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-left: 4px;
}

.product-detail-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.product-detail-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text-body);
}

.product-features {
  margin-bottom: 24px;
}

.product-features h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text-body);
}

.product-features li svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

.product-buy-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.product-specs {
  margin-top: 40px;
}

.product-specs h3 {
  margin-bottom: 16px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr:nth-child(even) {
  background: var(--off-white);
}

.specs-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--light-gray);
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--dark-blue);
  width: 40%;
}

/* Recommended products */
.recommended-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid var(--light-gray);
  border-radius: 50px;
  color: var(--text-body);
  transition: all var(--transition);
  background: var(--white);
}

.gallery-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.gallery-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

/* .gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
} */
/* .gallery-item {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 12px;
  background: #f2f3f5;
  position: relative;
} */

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 51, 102, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-placeholder-icon {
  color: var(--mid-gray);
  opacity: 0.4;
}

.gallery-placeholder-icon svg {
  width: 40px;
  height: 40px;
}

.gallery-item.video-item .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
}

.play-btn-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.gallery-item.video-item:hover .play-btn-icon {
  background: var(--white);
  transform: scale(1.1);
}

.play-btn-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-left: 3px;
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 800px;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
}

.lightbox-placeholder {
  width: 600px;
  height: 400px;
  background: var(--dark-gray);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.5);
}

.lightbox-placeholder svg {
  width: 60px;
  height: 60px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -10px;
  color: var(--white);
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 20px;
  height: 20px;
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  max-width:900px;
  margin:0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.about-story-content {
  max-width:900px;
  margin:0 auto;
  flex: 1;
}

.about-story-content h2 {
  text-align:center;
  margin-bottom: 16px;
}


.about-story-content p {
  text-align:justify;
margin-bottom:16px;
}

.about-story-image {
  flex: 1;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story-image svg {
  width: 60px;
  height: 60px;
  color: var(--mid-gray);
  opacity: 0.3;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--transition);
}

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

.mv-card .mv-icon {
  width: 56px;
  height: 56px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mv-card .mv-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.mv-card h3 {
  margin-bottom: 12px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-gray);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.timeline-year {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-content h4 {
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.9rem;
}

.timeline-spacer {
  flex: 1;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

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

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.value-card h4 {
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

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

.team-card-image {
  height: 200px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-image svg {
  width: 48px;
  height: 48px;
  color: var(--mid-gray);
  opacity: 0.3;
}

.team-card-body {
  padding: 20px;
}

.team-card-body h4 {
  margin-bottom: 4px;
}

.team-card-body p {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contact-card p {
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--primary);
  font-weight: 500;
}

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

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.business-hours {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 500px;
  margin: 0 auto 48px;
}

.business-hours h3 {
  text-align: center;
  margin-bottom: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--off-white);
  font-size: 0.9rem;
}

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

.hours-row .day {
  font-weight: 600;
  color: var(--dark-blue);
}

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

.social-section {
  text-align: center;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.social-link {
  width: 50px;
  height: 50px;
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--dark-gray);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 20px;
    display: flex;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .collage-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 300px;
  }

  .collage-item {
    min-height: 200px;
  }

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

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

  .product-detail {
    flex-direction: column;
  }

  .product-detail-image {
    position: static;
    min-height: 350px;
  }

  .recommended-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story {
    flex-direction: column;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 56px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .btn-catalogue {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trust-bar .container {
    flex-direction: column;
    gap: 16px;
  }

  .trust-item .trust-number {
    font-size: 1.5rem;
  }

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

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

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

  .collage-item:nth-child(1) {
    grid-column: span 1;
  }

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

  /* Products page mobile */
  .products-layout {
    flex-direction: column;
  }

  .products-sidebar {
    width: 100%;
  }

  .products-sidebar.mobile-open {
    display: block;
  }

  .mobile-filter-btn {
    display: flex;
  }

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

  /* Product detail mobile */
  .product-detail {
    flex-direction: column;
  }

  .product-detail-image {
    min-height: 280px;
  }

  .recommended-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  /* About mobile */
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 40px;
  }

  .timeline-item::before {
    left: 20px;
  }

  .timeline-spacer {
    display: none;
  }

  /* Contact mobile */
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .testimonial-card {
    padding: 24px;
  }

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

.floating-buttons {
  position: fixed;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 800;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  text-decoration: none;
  animation: slideInUp 0.5s ease-out;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

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

.floating-btn-call:hover {
  background: var(--primary-dark);
}

.floating-btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.floating-btn-whatsapp:hover {
  background: #1faa50;
}

.floating-btn svg {
  width: 24px;
  height: 24px;
}

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

@media (max-width: 768px) {
  .floating-buttons {
    left: 12px;
    bottom: 12px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .floating-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* Images */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Videos */
.gallery-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.gallery-item img {
  transition: transform 0.4s ease;
}

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

.products-search{
margin-bottom:20px;
}

.products-search input{
width:100%;
padding:10px 14px;
border-radius:6px;
border:1px solid #ddd;
font-size:14px;
}

.gallery-video {
width: 100%;
height: 100%;
overflow: hidden;
background: #000;
}


.gallery-video video {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.gallery-item:hover video {
transform: scale(1.05);
transition: transform 0.4s ease;
}

.gallery-item{
position:relative;
width:100%;
height:300px;
border-radius:12px;
overflow:hidden;
background:#f2f3f5;
cursor:pointer;
}

/* images */

.gallery-item img{
width:100%;
height:100%;
object-fit:contain;
display:block;
transition:transform .4s ease;
background:#fff;
padding:10px;
}

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

/* video */

.gallery-video video{
width:100%;
height:100%;
object-fit:contain;
display:block;
background:#000;
}

.gallery-item.video-item .play-overlay{
position:absolute;
inset:0;
display:flex;
align-items:center;
justify-content:center;
background:rgba(0,0,0,.25);
}

.play-btn-icon{
width:70px;
height:70px;
border-radius:50%;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 30px rgba(0,0,0,.4);
transition:.3s;
}

.gallery-item.video-item:hover .play-btn-icon{
transform:scale(1.15);
}

.gallery-item.video-item{
position:relative;
cursor:pointer;
}

.gallery-item video{
width:100%;
height:100%;
object-fit:cover;
pointer-events:none;
}

.play-overlay{
position:absolute;
inset:0;
display:flex;
align-items:center;
justify-content:center;
background:rgba(0,0,0,0.25);
}

.play-btn-icon{
width:70px;
height:70px;
border-radius:50%;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 30px rgba(0,0,0,.4);
transition:.3s;
}

.play-btn-icon svg{
width:32px;
height:32px;
color:#000;
margin-left:4px;
}

.gallery-item.video-item:hover .play-btn-icon{
transform:scale(1.15);
}

.buy-amazon-btn{
display:flex;
align-items:center;
justify-content:center;
gap:8px;

background:#FF9900;
color:#111;

font-weight:700;
font-size:14px;

padding:10px 16px;

border-radius:8px;

text-decoration:none;

margin-top:10px;

transition:all .25s ease;
}

.buy-amazon-btn svg{
width:18px;
height:18px;
}

.buy-amazon-btn:hover{
background:#e88a00;
transform:translateY(-2px);
}


.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Slider container */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden; 
  max-width: 520px;
}

/* Slides */
.hero-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

/* ✅ DOTS FIXED CENTER */
.hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  margin-top: 12px;
}

/* Dot */
.hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Active dot */
.hero-dots .dot.active {
  width: 22px;
  border-radius: 10px;
  background: #fff;
}

.hero-dots {
  position: relative;
  z-index: 5;
}

.hero-slide {
  z-index: 1;
}