:root {
  --bg: #0d0d0d;
  --surface: #171717;
  --surface-strong: #222222;
  --ink: #f0f0f0;
  --muted: #a3a3a3;
  --accent: #d4b26f;       /* Modern, elegant sand/champagne gold */
  --accent-dark: #b89352;  /* Darker bronze-gold */
  --accent-rgb: 212, 178, 111; /* For rgba color styling */
  --navy: #000000;
  --line: rgba(212, 178, 111, 0.15);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 13, 13, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  padding: 10px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 20px;
}

.logo-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: transform 0.3s ease;
}

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

.logo-img-centered {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-img-centered:hover {
  filter: brightness(1.1);
}

.nav-links-left, .nav-links-right {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--ink);
  font-weight: 500;
  flex: 1;
}

.nav-links-left {
  justify-content: flex-end;
}

.nav-links-right {
  justify-content: flex-start;
}

.nav-links-left a, .nav-links-right a {
  transition: color 0.3s ease;
}

.nav-links-left a:hover, .nav-links-right a:hover {
  color: var(--accent);
}

.nav-links-left a.active, .nav-links-right a.active {
  color: var(--accent);
  position: relative;
}

.nav-links-left a.active::after, .nav-links-right a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  background: radial-gradient(circle at 15% 20%, rgba(var(--accent-rgb), 0.1), transparent 40%);
}

/* Podstrony: galeria, wycena — nagłówek pod menu (bez nachodzenia na eyebrow / h1) */
.gallery-hero,
.page-intro {
  padding: 56px 0 48px;
  background: radial-gradient(circle at 15% 20%, rgba(var(--accent-rgb), 0.1), transparent 40%);
}

.page-intro.section {
  padding-top: 64px;
  padding-bottom: 100px;
}

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

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
}

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

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #fff;
}

.hero-text,
.section-heading p,
.price-layout > div:first-child p,
.footer p,
.area-card p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 32px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #000;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.3);
}

.button.primary:hover {
  box-shadow: 0 12px 32px rgba(var(--accent-rgb), 0.4);
}

.button.secondary {
  border-color: var(--accent);
  background: transparent;
  color: var(--accent);
}

.button.secondary:hover {
  background: rgba(var(--accent-rgb), 0.1);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-list span::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section.muted {
  background: #111111;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Services Tabs */
.services-tabs {
  margin-top: 40px;
}

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

.tab-btn {
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.tab-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.2);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.tab-content.active {
  display: block;
}

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

.service-pane {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
}

.service-pane-text h3 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-pane-text p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.service-pane-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.service-pane-text li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink);
}

.service-pane-text li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.service-pane-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

/* Pricing Grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.price-card.featured {
  background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface) 100%);
  border-color: var(--accent);
}

.price-card.featured::before {
  content: 'Najczęściej wybierane';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: #000;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-card.featured {
  padding-top: 48px;
}

.price-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.price-card strong {
  display: block;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.price-card p {
  color: var(--muted);
  margin: 0;
}

/* Calculator Form */
/* Calculator Container and Cards */
.calculator-container-flex {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  margin: 50px 0;
  align-items: stretch;
}

.calculator-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-header {
  background: var(--surface-strong);
  padding: 30px 40px;
  border-bottom: 1px solid var(--line);
}

.card-header h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.card-body {
  padding: 40px;
}

.calc-form-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-group-new {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-group-new label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.calc-group-new select,
.calc-group-new input[type="text"] {
  width: 100%;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.calc-group-new select:focus,
.calc-group-new input[type="text"]:focus {
  outline: none;
  border-color: var(--accent);
}

/* Selected Services list */
.selected-services-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.selected-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(212, 178, 111, 0.05);
  border: 1px solid rgba(212, 178, 111, 0.15);
  border-radius: 12px;
  animation: slideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.service-info-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.4;
  flex-grow: 1;
}

.qty-wrapper {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding-right: 12px;
  width: 130px;
  height: 42px;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.qty-wrapper:focus-within {
  border-color: var(--accent);
}

.qty-wrapper input {
  border: none;
  background: transparent;
  color: var(--ink);
  padding: 0 10px;
  width: 100%;
  height: 100%;
  text-align: right;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
}

.qty-wrapper input:focus {
  outline: none;
}

.qty-wrapper .unit {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  margin-left: 2px;
  user-select: none;
}

.btn-remove-service {
  background: transparent;
  border: none;
  color: #ff6b6b;
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.btn-remove-service:hover {
  background: rgba(255, 107, 107, 0.15);
  transform: scale(1.1);
}

.btn-calc-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #000;
  border: none;
  padding: 16px 24px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 99px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(212, 178, 111, 0.2);
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-calc-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 178, 111, 0.4);
}

/* Results section */
.calc-result-new {
  margin-top: 8px;
  background: rgba(212, 178, 111, 0.03);
  border: 1px dashed var(--accent);
  border-radius: 14px;
  padding: 24px;
  animation: fadeIn 0.4s ease forwards;
}

.result-breakdown {
  margin-bottom: 20px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 178, 111, 0.1);
  gap: 12px;
}

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

.breakdown-row span:first-child {
  flex-grow: 1;
}

.breakdown-row strong {
  color: var(--ink);
  font-weight: 600;
}

.result-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  padding-top: 10px;
  border-top: 2px solid var(--line);
}

.result-total strong {
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
}

/* Contact Info Card */
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body-contact {
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  gap: 32px;
}

.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon {
  font-size: 1.2rem;
  color: var(--accent);
  background: rgba(212, 178, 111, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 178, 111, 0.15);
}

.detail-content {
  display: flex;
  flex-direction: column;
}

.detail-content strong {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.detail-content span,
.detail-content a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.detail-content a {
  transition: color 0.3s;
}

.detail-content a:hover {
  color: var(--accent);
}

.btn-call-now {
  width: 100%;
  text-align: center;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
}

.footnote-card {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

/* Reviews */
.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.reviews-carousel-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.reviews-carousel-container::-webkit-scrollbar {
  display: none;
}

.reviews-carousel-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews-carousel-track {
  display: flex;
  gap: 24px;
  padding: 10px 4px;
}

.reviews-carousel-track .review-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  box-sizing: border-box;
}

.carousel-nav-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--accent);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav-btn:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-dark);
  display: grid;
  place-items: center;
  font-weight: bold;
  color: #000;
}

.review-author-info strong {
  display: block;
  line-height: 1.2;
}

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

.review-stars {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.review-text {
  color: var(--muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

.review-source {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}

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

/* Modal */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  padding: 26px;
  backdrop-filter: blur(10px);
}

.image-modal.is-open {
  display: flex;
}

.modal-image {
  max-width: min(1120px, 90vw);
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

.modal-close,
.modal-arrow {
  position: absolute;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}

.modal-close:hover,
.modal-arrow:hover {
  color: var(--accent);
}

.modal-close {
  top: 24px;
  right: 24px;
  font-size: 2.5rem;
}

.modal-arrow {
  top: 50%;
  font-size: 4rem;
  transform: translateY(-50%);
}

.modal-prev { left: 24px; }
.modal-next { right: 24px; }

/* Footer */
.footer {
  padding: 80px 0;
  background: #000;
  border-top: 1px solid var(--line);
}

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

.footer h2 {
  color: var(--ink);
}

.contact-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card .button {
  margin-bottom: 12px;
  width: 100%;
}

.button.whatsapp { background: #1fae5b; color: #fff; border: none; }
.button.messenger { background: #246bfe; color: #fff; border: none; }

.contact-note {
  margin: 16px 0 0;
  font-size: 0.85rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .service-pane,
  .calculator-section,
  .calculator-container-flex,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-carousel-track .review-card {
    flex: 0 0 calc(50% - 12px);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-header {
    padding: 24px 30px;
  }
  .card-body,
  .card-body-contact {
    padding: 30px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-bottom: 16px;
  }

  .gallery-hero,
  .page-intro {
    padding-top: 40px;
  }

  .nav {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
    gap: 16px;
  }
  
  .logo-centered {
    order: -1;
  }
  
  .logo-img-centered {
    height: 55px;
    width: auto;
  }
  
  .nav-links-left, .nav-links-right {
    justify-content: center;
    width: 100%;
    gap: 20px;
    flex: none;
  }
  
  .nav-links-left a.active::after, .nav-links-right a.active::after {
    bottom: -2px;
  }
  
  h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  
  .price-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .reviews-carousel-wrapper {
    gap: 10px;
  }

  .reviews-carousel-track .review-card {
    flex: 0 0 100%;
  }

  .carousel-nav-btn {
    display: none;
  }
  
  .calculator-section,
  .calculator-card,
  .contact-info-card,
  .service-pane {
    padding: 0;
  }

  .card-header {
    padding: 20px;
  }

  .card-body,
  .card-body-contact {
    padding: 20px;
  }

  .selected-service-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 14px;
  }

  .qty-wrapper {
    width: 100%;
  }

  .btn-remove-service {
    align-self: flex-end;
  }
}

/* WhatsApp Button & Floating Widget Styles */
.button.whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.button.whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
  background: #20ba5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.floating-call {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-call svg {
  width: 28px;
  height: 28px;
}

.floating-call:hover {
  transform: scale(1.1) rotate(-10deg);
  background: #fff;
  color: var(--accent-dark);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.5);
}

@media (max-width: 720px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
  
  .floating-call {
    bottom: 85px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .floating-call svg {
    width: 24px;
    height: 24px;
  }
}

/* Price Tables & Advanced Calculator Styles */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.price-table th, .price-table td {
  padding: 16px 20px;
  text-align: left;
}

.price-table th {
  background: var(--surface-strong);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-table td {
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
  color: var(--ink);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: rgba(var(--accent-rgb), 0.03);
}

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

.calc-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}

.calc-checkbox-group input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  cursor: pointer;
}

.calc-checkbox-group label {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.price-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pricing-tabs {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .price-table th, .price-table td {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
  }
}


