/* Tonner Pack - Unified Styles */

/* CSS Variables */
:root {
  --primary: #0a3d62;
  --primary-light: #e6f0f8;
  --text: #333;
  --text-light: #666;
  --background: #fff;
  --background-alt: #f8f9fa;
  --border: #eaeaea;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.05);
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 60px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  line-height: 70px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.logo-img {
  height: 45px;
  width: auto;
  display: block;
  margin-right: 12px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin-right: 2rem;
}

.nav-links li {
  margin-left: 2rem;
  position: relative;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #1e40af);
  transition: width 0.3s ease;
}

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

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 1rem 1rem 1rem 6rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  background-color: var(--background-alt);
  transform: scale(1.1);
}

/* Button Styles */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(10, 61, 98, 0.3);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 2px 10px rgba(10, 61, 98, 0.1);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(10, 61, 98, 0.25);
}

/* Contact Styles */
.contact {
  padding: 4rem 0;
  background: var(--background);
}

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

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-details a {
  color: var(--primary);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--background-alt);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.1);
}

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

/* Footer Styles */
.footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.footer-section p,
.footer-section li {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.8;
}

/* Page-specific Styles */

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    position: relative;
    background-color: var(--background-alt);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    width: 640px;
    height: 360px;
    min-width: 300px;
    max-width: 100%;
    margin: 0 auto;
}

.hero-image .video-wrapper {
    width: 100%;
    height: 100%;
}

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

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
}

/* Products Section */
.section {
    padding: 60px 0;
}

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

.section-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-description {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-block h3 {
    color: var(--primary);
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.content-block p {
    margin-bottom: 20px;
}

.content-block ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-block li {
    margin-bottom: 10px;
}

.desc-image {
    text-align: center;
    margin-bottom: 30px;
}

.description-image {
    max-width: 25%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.product-card {
    background-color: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    background-color: var(--background-alt);
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
}

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

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

/* Video Section */
.video-container {
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Products Page Specific Styles */
.products {
    padding: 4rem 0;
    background: var(--background-light);
}

.products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-info {
    padding: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1rem;
}

.product-features li {
    padding: 0.25rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.product-features li:before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--background);
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--radius);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

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

.modal h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.spec-table th,
.spec-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.spec-table th {
    background: var(--background-alt);
    font-weight: 600;
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  header {
    height: 70px;
    line-height: 70px;
  }
  
  .header-container {
    padding: 0 1rem;
  }
  
  .logo-img {
    height: 35px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    margin-right: 0;
  }
  
  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .menu-toggle {
    display: flex !important;
  }
  
  .nav-links li {
    margin: 0;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 0 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .hero {
    padding-bottom: 30px;
  }
  
  .hero .container {
    display: flex;
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    order: 1;
  }
  
  .hero-image {
    order: 0;
    margin-bottom: 30px;
    width: 100%;
    max-width: 640px;
    height: auto;
    aspect-ratio: 16/9;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .tags {
    justify-content: center;
  }
  
  .section-header {
    padding: 0 15px;
  }
  
  .content-block {
    padding: 0 15px;
  }
  
  .content-block h3 {
    font-size: 1.2rem;
  }
  
  .description-image {
    max-width: 25%;
  }

  .hero p {
    font-size: 1rem;
  }

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

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

  .modal-content {
    margin: 10% auto;
    width: 95%;
    padding: 1.5rem;
  }
}

/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact-btn:hover::before {
  left: 100%;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
}

.viber-btn {
  background: linear-gradient(135deg, #665CAC, #7360F2);
}

.viber-btn:hover {
  background: linear-gradient(135deg, #7360F2, #665CAC);
}

.facebook-btn {
  background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.facebook-btn:hover {
  background: linear-gradient(135deg, #42A5F5, #1877F2);
}

.contact-btn .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.contact-btn .tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
}

.contact-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Sample Order Section Styles */
.sample-order-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.sample-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.platform-image {
    flex-shrink: 0;
}

.platform-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.platform-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}



.platform-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-content .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.platform-content .btn:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .sample-platforms {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .platform-card {
        padding: 1.5rem;
    }
    
    .platform-image img {
        width: 100px;
        height: 100px;
    }
}

/* Contact links section styles */
.contact-links-section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-links-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.contact-link-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.5rem;
}

.whatsapp-color {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.viber-color {
    background: linear-gradient(135deg, #665CAC, #7360F2);
}

.facebook-color {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.contact-link-info {
    flex: 1;
}

.contact-link-info h4 {
    margin: 0 0 8px 0;
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-link-info p {
    margin: 0 0 12px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-link-url {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    word-break: break-all;
    transition: color 0.3s ease;
}

.contact-link-url:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .floating-contact {
    right: 15px;
    bottom: 15px;
    gap: 12px;
  }
  
  .contact-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .contact-btn .tooltip {
    display: none;
  }
  
  .contact-links-section {
    margin: 30px 0;
    padding: 20px;
  }
  
  .contact-links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-link-item {
    padding: 20px;
    gap: 15px;
  }
  
  .contact-link-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .contact-link-info h4 {
    font-size: 1.2rem;
  }
  
  .contact-link-info p {
    font-size: 0.9rem;
  }
  
  .contact-link-url {
    font-size: 0.85rem;
  }
  
  /* Tonner Bag in use image layout for mobile */
  .content-block div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .content-block div[style*="display: flex"] img {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .content-block div[style*="display: flex"] div {
    width: 100% !important;
  }
}

/* Map Location Component Styles */
.map-location {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.location-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.location-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.location-details h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.location-details .address {
    margin: 0 0 0.5rem 0;
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

.location-details .description {
    margin: 0;
    color: #777;
    font-size: 0.95rem;
}

.location-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.map-btn,
.copy-address-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.map-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.copy-address-btn {
    background: #f8f9fa;
    color: #555;
    border: 2px solid #e9ecef;
}

.copy-address-btn:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-2px);
}

.copy-address-btn.copied {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-color: #28a745;
}

.map-icon,
.copy-icon {
    font-size: 1.1rem;
}

/* Responsive Design for Map Location */
@media (max-width: 768px) {
    .map-location {
        padding: 1.5rem 0;
    }
    
    .location-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .location-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .location-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .map-btn,
    .copy-address-btn {
        justify-content: center;
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .location-details .address {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .location-card {
        padding: 1rem;
    }
    
    .location-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .location-details h3 {
        font-size: 1.1rem;
    }
    
    .location-details .address {
        font-size: 0.95rem;
    }
    
    .map-btn,
    .copy-address-btn {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }
}