@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
  /* Premium Navy/Sand Theme adapted for Clenix layout */
  --primary: #0A192F;       /* Deep Navy Blue */
  --primary-light: #112240; 
  --accent: #C4A47C;        /* Warm Gold / Sand */
  --accent-hover: #D6B995;
  --cta-red: #C0392B;       /* Pricelist CTA Red */
  --cta-red-glow: rgba(192, 57, 43, 0.45);
  
  --text-main: #4A5568;     
  --text-heading: #1A202C;  
  --text-light: #FFFFFF;    
  
  --bg-main: #FFFFFF;
  --bg-alt: #F4F7F6;        /* Light grey for sections */
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  
  --transition: all 0.3s ease;
  --shadow-card: 0 15px 40px rgba(10, 25, 47, 0.08);
  --shadow-hover: 0 20px 50px rgba(10, 25, 47, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
}

.section-subtitle {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 50px;
}
.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 2px;
  background: var(--accent);
}

h2.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 50px;
  color: var(--primary);
}

.text-center { text-align: center; }
.text-center .section-subtitle { padding-left: 0; }
.text-center .section-subtitle::before, .text-center .section-subtitle::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 30px; height: 2px;
  background: var(--accent);
  margin: 0 15px;
}

p { margin-bottom: 15px; }
a { text-decoration: none; color: var(--accent); transition: var(--transition); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.btn-secondary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
}
.btn-white:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}


.btn-accent {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-accent:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
/* Top Bar */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 10px 0;
  position: relative;
  z-index: 1002;
}
.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left, .top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-bar i, .top-bar svg {
  color: var(--accent);
  margin-right: 5px;
  vertical-align: middle;
}
.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--accent); }

/* Header */
header {
  background: #ffffff;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}
header.sticky {
  position: fixed;
  top: 0; left: 0; width: 100%;
  animation: slideDown 0.5s ease-in-out forwards;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--accent); }

.header-action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone-link {
  text-decoration: none;
  color: var(--cta-red);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.nav-phone-link:hover {
  color: #E74C3C;
}

.social-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 35px; height: 35px;
  border-radius: 50%;
  color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.social-icon-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.telegram-btn { background: #0088cc; }
.instagram-btn { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.instagram-btn:hover { opacity: 0.85; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 140px 0 200px;
  background: var(--primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

/* Overlapping Features (Clenix Style) */
.features-overlap {
  position: relative;
  z-index: 10;
  margin-top: -120px;
  padding-bottom: 80px;
}


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

.feature-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: rgba(196, 164, 124, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.feature-box:hover .feature-icon {
  background: var(--accent);
  color: #fff;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* About Section */
.about-section {
  padding: 60px 0;
  background: #fff;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  width: 90%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.about-badge {
  position: absolute;
  bottom: 20px; left: 10%;
  background: var(--accent);
  color: var(--primary);
  width: 130px; height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(196, 164, 124, 0.4);
  border: 8px solid #fff;
  z-index: 10;
}

.about-badge .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-mascot {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 180px;
  z-index: 5;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.about-list {
  list-style: none;
  margin: 30px 0;
}

.about-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--primary);
}

.about-list li svg {
  position: absolute;
  left: 0; top: 4px;
  fill: var(--accent);
  width: 20px; height: 20px;
}

/* Services Section */
.services-section {
  padding: 60px 0;
  background: var(--bg-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
  border-bottom: 4px solid var(--accent);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-price-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--primary);
  color: #fff;
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.service-content {
  padding: 30px;
  position: relative;
}

.service-icon {
  position: absolute;
  top: -35px; right: 30px;
  width: 70px; height: 70px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-content h3 { margin-bottom: 15px; font-size: 1.4rem; }
.service-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }

/* Call to Action Banner */
.cta-banner {
  padding: 60px 0;
  background: linear-gradient(rgba(10,25,47,0.85), rgba(10,25,47,0.85)), url('/pictures/8.jpg') center/cover;
  background-attachment: scroll;
  text-align: center;
  color: #fff;
}
@supports (background-attachment: fixed) {
  @media (hover: hover) {
    .cta-banner { background-attachment: fixed; }
  }
}

.cta-banner h2 { color: #fff; margin-bottom: 20px; font-size: 2.5rem; }
.cta-banner p { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; }

/* Process */
.process-section {
  padding: 60px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.process-item { position: relative; }

.process-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 45px; right: -50%;
  width: 100%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 10px, transparent 10px, transparent 20px);
  z-index: 0;
}

.process-icon {
  width: 90px; height: 90px;
  margin: 0 auto 20px;
  background: #fff;
  border: 2px dashed var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.process-number {
  position: absolute;
  top: -5px; right: -5px;
  width: 30px; height: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.process-item h3 { font-size: 1.2rem; margin-bottom: 10px; }
.process-item p { color: var(--text-muted); font-size: 0.9rem; }

/* Floating Widgets & Gallery reuse existing styles but adapted */
/* Floating Widgets */
.floating-widgets {
  position: fixed; right: 25px; bottom: 30px;
  display: flex; flex-direction: column; gap: 15px; z-index: 1500;
}
.widget-btn {
  width: 55px; height: 55px; border-radius: 50%; color: white !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: var(--transition); border: 2px solid rgba(255,255,255,0.2);
}
.widget-btn.telegram { background: #0088cc; }
.widget-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.widget-btn.phone { background: var(--accent); color: var(--primary) !important; border-color: transparent; }
.widget-btn:hover { transform: scale(1.1) translateY(-5px); }

/* Gallery Modal / Grid */
.gallery-section { padding: 60px 0; background: var(--bg-alt); }
.gallery-container {
  background: #fff; padding: 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-card);
}
.gallery-main { width: 100%; height: 500px; position: relative; overflow: hidden; cursor: zoom-in; margin-bottom: 20px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.gallery-main img { max-width: 100%; max-height: 100%; object-fit: contain; transition: opacity 0.3s ease; }
.gallery-thumbnails { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; }
.gallery-thumb { width: 120px; height: 80px; flex-shrink: 0; cursor: pointer; opacity: 0.5; transition: var(--transition); border: 2px solid transparent; border-radius: var(--radius-sm); overflow: hidden; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { opacity: 1; border-color: var(--accent); }

/* Footer */
footer { background: #071324; color: #a0aec0; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-col h4 { color: #fff; font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-bottom: 15px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--accent); }
.footer-col p { margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #a0aec0; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 15px; margin-bottom: 20px; }
.footer-contact-item svg { width: 24px; height: 24px; fill: var(--accent); flex-shrink: 0; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }

/* Utility */
.animate-fade { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-fade.visible { opacity: 1; transform: translateY(0); }

/* Lightbox Modal */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 25, 47, 0.98); z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90%; max-height: 90vh; object-fit: contain; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 30px; right: 30px; color: white; font-size: 2.5rem; cursor: pointer; background: none; border: none; transition: var(--transition); }
.lightbox-close:hover { color: var(--accent); transform: rotate(90deg); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: white; font-size: 3rem; cursor: pointer; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lightbox-nav:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* Responsive */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: 1fr; }
  .features-overlap { margin-top: -60px; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-images { min-height: 300px; }
  .about-badge { width: 120px; height: 120px; }
  .about-badge .num { font-size: 2rem; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-item:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 120px 0 180px; }
  .hero h1 { font-size: 2.8rem; }
  .cta-banner h2 { font-size: 2rem; }
  h2.section-title { margin-bottom: 35px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .header-action { display: none; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; top: 90px; left: -100%; width: 100%; height: calc(100vh - 90px);
    background: var(--primary); flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 50px;
    transition: var(--transition); z-index: 1001;
  }
  .nav-links.active { left: 0; }
  .nav-links a { color: #fff; font-size: 1.2rem; }
  .hero { padding: 100px 0 160px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .about-images { min-height: auto; }
  .about-images img { max-width: 250px !important; }
  .about-badge { width: 100px !important; height: 100px !important; }
  .about-badge .num { font-size: 1.6rem !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-main { height: 250px; }
  .cta-banner h2 { font-size: 1.6rem; }
  .cta-banner p { font-size: 1rem; }
  .floating-widgets { right: 15px; bottom: 15px; gap: 10px; }
  .widget-btn { width: 45px; height: 45px; font-size: 1.2rem; }
  h2.section-title { margin-bottom: 30px; font-size: 1.6rem; }
  .feature-box { padding: 30px 20px; }
  .service-content { padding: 20px; }
  .testimonial-card { padding: 30px 20px; }
  .modal-content { padding: 25px 15px; margin: 10px; }
  .scroll-to-top { right: auto; left: 15px; }
  .scroll-to-top.visible { bottom: 15px; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 0 140px; }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.9rem; margin-bottom: 25px; }
  .btn { padding: 12px 25px; font-size: 0.8rem; }
  h2.section-title { font-size: 1.4rem; margin-bottom: 25px; }
  .gallery-main { height: 200px; }
  .gallery-thumb { width: 80px; height: 55px; }
  .testimonial-grid, .services-grid { gap: 20px; }
}

/* Modal */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 25, 47, 0.9); backdrop-filter: blur(5px);
  z-index: 4000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
  background: white; padding: 40px; width: 100%; max-width: 800px;
  border-radius: var(--radius-md); position: relative;
  transform: translateY(30px); transition: var(--transition);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: transparent; border: none; font-size: 2.5rem;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.modal-close:hover { color: var(--primary); transform: rotate(90deg); }

.price-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.price-table th, .price-table td { padding: 15px 0; border-bottom: 1px solid #E2E8F0; text-align: left; }
.price-table th { font-family: var(--font-heading); color: var(--text-muted); text-transform: uppercase; font-size: 0.9rem; }
.price-table td strong { color: var(--primary); font-family: var(--font-heading); font-size: 1.2rem; }

/* CTA Fast Contact Buttons */
.cta-contacts-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.cta-btn-icon {
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 1.5rem; transition: var(--transition);
}
.cta-btn-icon:hover { transform: translateY(-5px); }
.cta-btn-icon.telegram:hover { background: #0088cc; border-color: #0088cc; }
.cta-btn-icon.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; }
.cta-btn-icon.phone:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }

.cta-qr {
  background: white; padding: 10px; border-radius: var(--radius-sm);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.cta-qr img { width: 80px; height: 80px; }
.cta-qr span { font-size: 0.7rem; color: var(--primary); font-weight: 600; text-transform: uppercase; }

/* Testimonials */
.testimonials-section {
  padding: 60px 0;
  background: #fff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.testimonial-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
  border-top: 4px solid var(--accent);
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.testimonial-icon {
  position: absolute;
  top: -20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: serif;
  font-size: 2rem;
  line-height: 1;
}
.testimonial-content {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.testimonial-author h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary);
}
.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: -60px; /* Hidden initially */
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-hover);
  transition: bottom 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-to-top.visible {
  bottom: 30px;
}
.scroll-to-top:hover {
  background: var(--primary);
  transform: translateY(-5px);
}
.qr-open-btn {
  transition: opacity 0.3s ease;
}
.qr-open-btn:hover {
  opacity: 0.8;
}

/* Pricelist Red Pulsing Button */
@keyframes pricePulse {
  0%   { box-shadow: 0 0 0 0 var(--cta-red-glow); }
  70%  { box-shadow: 0 0 0 12px rgba(192, 57, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0); }
}
.btn-price {
  background: var(--cta-red) !important;
  border-color: var(--cta-red) !important;
  color: #fff !important;
  animation: pricePulse 2s ease-in-out infinite;
}
.btn-price:hover {
  background: #E74C3C !important;
  border-color: #E74C3C !important;
  color: #fff !important;
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--cta-red-glow);
}

/* Hero white version of pricelist button */
.btn-white.btn-price {
  background: #fff !important;
  color: var(--cta-red) !important;
  border-color: #fff !important;
  font-weight: 700;
  animation: pricePulseWhite 2s ease-in-out infinite;
}
.btn-white.btn-price:hover {
  background: var(--cta-red) !important;
  color: #fff !important;
  border-color: var(--cta-red) !important;
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--cta-red-glow);
}
@keyframes pricePulseWhite {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.hero-features{
    position:absolute;
    bottom:0;
    left:50%;
    transform:translate(-50%,50%);
    width:100%;
    z-index:10;
}

@media (max-width:768px){

    .hero{
        padding:80px 0 40px;
    }

    .hero-features{
        position:relative;
        left:auto;
        bottom:auto;
        transform:none;
        margin-top:40px;
    }
}

