:root {
  /* Primary color palette */
  --primary-color: #1565c0;     /* Richer blue for primary branding */
  --primary-light: #5e92f3;     /* Lighter blue for accents */
  --primary-dark: #003c8f;      /* Darker blue for contrast */
  
  /* Secondary colors */
  --accent-color: #e63946;      /* Distinctive red for highlights and CTAs */
  --accent-light: #ff6659;      /* Lighter red */
  --accent-dark: #ab000d;       /* Darker red */
  
  /* Neutral colors */
  --text-dark: #212121;         /* Nearly black for main text */
  --text-medium: #424242;       /* Dark gray for secondary text */
  --text-light: #f5f5f5;        /* Off-white for text on dark backgrounds */
  
  /* Background colors */
  --bg-light: #f8f9fa;          /* Very light gray for main background */
  --bg-medium: #e9ecef;         /* Light gray for section backgrounds */
  --bg-card: #ffffff;           /* White for cards */
  
  /* Borders and shadows */
  --border-color: #dee2e6;      /* Light gray for borders */
  --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 8px 16px rgba(0, 0, 0, 0.1);
  
  /* Spacing variables */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== BASE STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  direction: rtl;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--bg-light);
  box-shadow: var(--shadow-large);
  overflow: hidden;
}

/* ===== HEADER STYLES ===== */
.site-header {
  background-image: linear-gradient(rgba(21, 101, 192, 0.8), rgba(21, 101, 192, 0.8)), url('images/snow-mountains.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: var(--space-lg) var(--space-md);
  border-bottom: none !important;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-right: 8rem; /* This moves ורד הנדסה to the left (closer to right edge) */
  padding-left: 6rem;  /* This moves contact info to the right (closer to left edge) */
}

.site-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.site-contact {
  display: flex;
  gap: var(--space-lg);
}

.site-contact .contact-item {
  display: flex;
  align-items: center;
}

.site-contact .icon {
  width: 24px;
  height: 24px;
  margin-left: var(--space-sm);
}

.contact-link {
  color: white;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--accent-light);
}

.contact-label {
  font-weight: bold;
  color: white;
  margin-left: var(--space-sm);
  font-size: 1rem;
}

/* ===== NAVIGATION ===== */
.main-nav {
  background-color: white;
  box-shadow: var(--shadow-small);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
}

.nav-link {
  color: var(--text-medium);
  font-size: 1.1rem;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--text-dark);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--text-dark);
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: var(--space-md) var(--space-lg);
  background-color: var(--bg-medium);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.9rem;
}

.breadcrumb-list li {
  position: relative;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '›';
  margin-right: var(--space-sm);
  color: var(--text-medium);
}

.breadcrumb-list li:last-child {
  color: var(--text-medium);
  font-weight: 500;
}

.breadcrumb-list a {
  color: var(--primary-color);
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

/* ===== CUSTOM HEADINGS ===== */
.custom-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.custom-heading-line {
  display: block;
  height: 2px;
  background-color: var(--primary-dark);
  margin-top: 2px;
  width: 100%;
}

.page-title, 
.section-title, 
.info-title {
  color: var(--primary-dark);
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.page-title::after,
.section-title::after,
.info-title::after {
  display: none !important;
}

/* ===== HERO SECTION ===== */
.home-hero {
  position: relative;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

/* Social buttons positioned at top-left (appears as top-right in RTL) */
.home-hero .social-buttons {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-small);
  border: 2px solid transparent;
  font-size: 0;
  line-height: 1;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.social-btn.facebook {
  background-color: #1877f2;
  color: white;
}

.social-btn.facebook:hover {
  background-color: #166fe5;
  border-color: var(--primary-color);
}

.social-btn.youtube {
  background-color: #ff0000;
  color: white;
}

.social-btn.youtube:hover {
  background-color: #cc0000;
  border-color: var(--primary-color);
}

.social-btn svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

/* Hero heading - keep it simple to preserve underline */
.home-hero .custom-heading {
  display: inline-block;
  margin-bottom: 1rem;
  margin-top: 0; /* Remove extra margin */
}

/* Make sure the title is large and prominent */
.home-hero .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0;
  line-height: 1.2;
}

/* Ensure the underline displays properly */
.home-hero .custom-heading-line {
  display: block;
  height: 3px;
  background-color: var(--primary-dark);
  margin-top: 5px;
  width: 100%;
}

/* Hero subtitle */
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-top: var(--space-md);
  font-weight: 400;
}

/* Reset other custom-heading sections to normal behavior */
.home-sections .custom-heading,
.product-details-section .custom-heading,
.related-products .custom-heading {
  display: inline-block !important;
  width: auto !important;
}

/* ===== PRODUCT HERO ===== */
.product-hero {
  background-color: var(--bg-medium);
  padding: var(--space-lg) var(--space-lg);
  text-align: center;
  border-radius: var(--radius-md);
  margin: var(--space-md) var(--space-lg);
}

.product-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-top: var(--space-sm);
}

/* ===== PRODUCT DETAILS SECTION ===== */
.product-details-section {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-lg);
  background-color: white;
}

/* ===== PRODUCT GALLERY ===== */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.main-image {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  background-color: white;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.enlarge-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background-color: rgba(255,255,255,0.8);
  color: var(--primary-dark);
  border: 1px solid var(--border-color);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
}

.image-controls {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  display: flex;
  gap: var(--space-sm);
}

.gallery-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--border-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.gallery-btn:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
}

.gallery-btn img {
  width: 20px;
  height: 20px;
}

.thumbnail-gallery-container {
  display: flex;
  align-items: center;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  position: relative;
}

.thumbnail-gallery {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  width: 100%;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.thumbnail:hover {
  border-color: var(--primary-light);
}

.thumbnail.active {
  border-color: var(--primary-color);
}

.zoom-icon-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--primary-dark);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.zoom-icon-btn:hover {
  background-color: var(--primary-light);
  color: white;
}

.zoom-icon-btn svg {
  width: 20px;
  height: 20px;
}

.zoom-icon-btn.repositioned {
  position: absolute;
  right: -90px;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--primary-dark);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.zoom-icon-btn.repositioned svg {
  width: 40px;
  height: 40px;
}

.zoom-icon-btn.repositioned:hover {
  background-color: var(--primary-light);
  color: white;
}

.youtube-demo {
  margin-top: 2rem !important;
  padding-top: 1rem !important;
  text-align: center;
}

.youtube-demo .custom-heading h4 {
  font-size: 1.8rem !important;
  color: var(--primary-dark);
  margin: 0;
}

.youtube-demo .custom-heading {
  margin-bottom: 10px;
}

.youtube-thumbnail {
  width: 25%;
  margin: 0 auto;
  margin-top: 1rem !important;
}

.youtube-thumbnail img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
  cursor: pointer;
  border: 1px solid var(--border-color);
}

/* ===== PRODUCT INFO ===== */
.product-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.product-main-info,
.product-resources,
.agents-info {
  margin-top: 10px;
  margin-bottom: var(--space-md);
}

.product-main-info {
  margin-bottom: 2rem !important;
}

.product-resources {
  margin-bottom: 2rem !important;
}

.agents-info {
  margin-top: 2rem !important;
}

.info-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.features-list li {
  position: relative;
  padding-right: 20px;
  line-height: 1.6;
}

.features-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

/* ===== RESOURCES GRID ===== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.resource-link {
  display: flex;
  align-items: center;
  padding: var(--space-md);
  background-color: var(--bg-medium);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.resource-link:hover {
  background-color: var(--primary-light);
  color: white;
}

.resource-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--space-md);
}

.resource-img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.resource-text {
  font-weight: 500;
}

/* ===== AGENTS INFO ===== */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.agent-card {
  background-color: var(--bg-medium);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.agent-name {
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.agent-location {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.agent-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.agent-contact-item {
  display: flex;
  align-items: center;
}

.icon.small {
  width: 16px;
  height: 16px;
  margin-left: var(--space-sm);
}

.agent-link {
  font-size: 0.9rem;
}

/* ===== RELATED PRODUCTS ===== */
.related-products {
  padding: var(--space-xl) var(--space-lg);
  background-color: var(--bg-medium);
  text-align: center;
}

.related-products-in-gallery {
  margin-top: -0.3rem !important;
  padding-top: 0.5rem;
  background-color: var(--bg-medium);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.related-products-in-gallery .custom-heading {
  margin-bottom: 10px;
}

.related-products-in-gallery .related-products-slider {
  margin-top: 0rem;
  background-color: var(--bg-medium);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: -1rem;
}

.related-products-in-gallery .related-product {
  border: 1px solid var(--border-color);
}

.related-products-in-gallery h4 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-lg);
  position: relative;
}

.related-products-slider {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.related-product {
  width: 220px;
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-small);
  transition: transform var(--transition-medium);
}

.related-product:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.related-product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--text-dark);
}

.related-product-image {
  width: 100%;
  height: 160px;
  object-fit: contain;
  padding: var(--space-md);
  background-color: white;
}

.related-product-info {
  padding: var(--space-md);
  text-align: center;
  background-color: var(--primary-light);
  color: white;
}

.related-product-info .manufacturer {
  color: white;
  font-size: 0.9rem;
}

.related-product-info .model {
  font-size: 0.8rem;
  opacity: 0.9;
}

.manufacturer {
  display: block;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.model {
  display: block;
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--space-xl) var(--space-lg);
  background-color: var(--primary-dark);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color var(--transition-fast);
}

.cta-button:hover {
  background-color: var(--accent-dark);
  color: white;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--primary-dark);
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  color: var(--primary-light);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  margin-top: var(--space-xs);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav a {
  color: white;
}

.footer-nav a:hover {
  color: var(--primary-light);
}

.footer-contact p {
  margin-bottom: var(--space-sm);
}

.footer-contact a {
  color: white;
}

.footer-contact a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding: var(--space-md);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== LIGHTBOX & MODAL STYLES ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 2px solid white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid white;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 90%;
  max-width: 800px;
  background-color: white;
  border-radius: var(--radius-md);
  position: relative;
  padding: var(--space-md);
}

.close-modal {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 36px;
  height: 36px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.modal-video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.modal-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
}

/* YouTube Modal */
.youtube-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.youtube-modal-content {
  position: relative;
  width: 80%;
  max-width: 900px;
}

.youtube-close {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.youtube-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-md);
}

/* ===== UTILITIES & MISC ===== */
a {
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
}

a:hover {
  border-bottom: none;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .product-details-section {
    grid-template-columns: 1fr;
  }
  
  .resources-grid, 
  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .header-content {
    padding-right: 4rem;
    padding-left: 3rem;
  }
  
  .zoom-icon-btn.repositioned {
    right: -70px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
    padding-right: 2rem;
    padding-left: 1.5rem;
  }
  
  .site-contact {
    justify-content: center;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    background-color: white;
    padding: var(--space-md);
    box-shadow: var(--shadow-medium);
    gap: var(--space-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-medium);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .home-hero {
    padding: var(--space-lg) var(--space-md);
  }
  
  .home-hero .social-buttons {
    position: static;
    justify-content: center;
    margin-bottom: var(--space-md);
  }
  
  .home-hero .page-title {
    font-size: 2rem;
  }

  .social-btn {
    width: 36px;
    height: 36px;
  }

  .social-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .related-products-slider {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }
  
  .related-product {
    max-width: 100%;
    width: 100%;
  }
  
  .youtube-thumbnail {
    width: 50% !important;
  }
  
  .related-products-in-gallery .related-products-slider {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  
  .related-products-in-gallery .related-product {
    width: 80%;
  }
  
  .resources-grid, 
  .agents-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-heading::after {
    margin: var(--space-xs) auto 0;
  }
  
  .thumbnail-gallery-container {
    width: 100%;
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .zoom-icon-btn.repositioned {
    position: static;
    margin-bottom: var(--space-md);
    width: 60px;
    height: 60px;
  }
  
  .zoom-icon-btn.repositioned svg {
    width: 30px;
    height: 30px;
  }
  
  .product-hero {
    margin: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 2rem;
  }
  
  .header-content {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  
  .home-hero .page-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }

  .social-btn {
    width: 32px;
    height: 32px;
  }

  .social-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .site-contact {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .breadcrumb-list {
    font-size: 0.8rem;
  }
  
  .main-image {
    height: 300px;
  }
  
  .thumbnail {
    width: 60px;
    height: 60px;
  }
  
  .youtube-thumbnail {
    width: 100%;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  
  .lightbox-prev {
    left: -45px;
  }
  
  .lightbox-next {
    right: -45px;
  }
  
  .lightbox-close, 
  .youtube-close {
    top: -30px;
    right: -10px;
  }
  
  .contact-info .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 0 var(--space-xs);
  }
}