:root {
  --bg: #ffffff;
  --surface: #f8f9fa;
  --surface-alt: #e9ecef;
  --text: #212529;
  --muted: #6c757d;
  --primary: #8B4513;
  --primary-dark: #654321;
  --accent: #28a745;
  --border: #dee2e6;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-family: 'Assistant', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg) url('images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

body {
  line-height: 1.6;
}

.container {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}
רימיום איפה שהלוגו נמצא 
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 60px;
  height: 45px;
  object-fit: contain;
  border-radius: 8px;
}

.brand h1 {
  margin: 0;
  font-size: 1.15rem;
}

.brand p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}



.hero-compact {
  background: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
}

.hero-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-compact .container {
  position: relative;
  z-index: 2;
}

.hero-main h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin: 0 0 2rem;
  opacity: 0.9;
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-call-now-large {
  background: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  padding: 0.5rem 1rem !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 25px !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

.btn-call-now-large:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15) !important;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.trust-icon {
  color: #28a745;
  font-size: 1.4rem;
  font-weight: bold;
}

.trust-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero {
  padding: 4rem 0 5rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 1.05;
}

.hero p {
  max-width: 40rem;
  margin: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary);
  min-width: 200px;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 16px 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.btn:hover {
  opacity: .95;
}

.btn .animation {
  border-radius: 100%;
  animation: ripple 0.6s linear infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}

.btn-primary {
  background: var(--primary);
}

.btn-secondary {
  background: var(--text);
  color: white;
}

.btn-call-now {
  background: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 25px !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

.btn-call-now:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15) !important;
}

.btn-call-now-large {
  font-size: 14px;
  padding: 18px 24px;
  min-width: 220px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-card-top p,
.hero-card-top span {
  margin: 0;
}

.hero-card-top span {
  color: var(--primary);
  font-weight: 700;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-head {
  text-align: right;
  margin-bottom: 2.5rem;
}

.section-head h3 {
  margin: 0.6rem 0 0;
  font-size: clamp(2rem, 2.7vw, 3rem);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  margin: 1rem 0 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.8rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 183, 51, 0.35);
}

.card h4 {
  margin: 0 0 1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.service-card {
  text-align: right;
  position: relative;
}

.service-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.price-unit {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.service-features li {
  position: relative;
  padding-right: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--accent);
  font-weight: bold;
}

.pricing-cta {
  background: url('images/cta-services.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin-top: 3rem;
  position: relative;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.pricing-cta .container {
  position: relative;
  z-index: 2;
}

.pricing-cta h3 {
  margin: 0 0 1rem;
  font-size: 2.2rem;
}

.pricing-cta p {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.btn-large {
  padding: 0.8em 2.8em;
  font-size: 20px;
  font-weight: 600;
  min-width: 200px;
}

.btn-small {
  padding: 0.6em 1.2em;
  font-size: 14px;
  font-weight: 500;
  min-width: 120px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  min-height: 220px;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: end right;
  padding: 1.5rem;
  color: #fff;
  font-weight: 700;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55));
  z-index: 2;
}

.gallery-item span {
  position: relative;
  z-index: 3;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: flex-start;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.about-list li {
  position: relative;
  padding-right: 1.4rem;
  color: var(--muted);
}

.about-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--primary);
}

.stats-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.stats-card div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stats-card strong {
  font-size: 2.3rem;
}

.stats-card span {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
}

.contact-card h4 {
  margin-top: 0;
}

.contact-card p {
  margin: 0.9rem 0;
  color: var(--muted);
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  color: var(--text);
  padding: 0.95rem 1rem;
  margin-top: 0.4rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 0.6rem;
}

.site-footer {
  background: transparent;
  color: #444;
  padding: 2rem 0 1rem;
  text-align: center;
  font-family: sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.site-footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #444;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: gentle-pulse 2s infinite;
}

.floating-call-btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50%;
  z-index: -1;
}

.floating-call-btn:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 69, 19, 0.5), 0 6px 15px rgba(0, 0, 0, 0.3);
  animation-play-state: paused;
}

.floating-call-btn:hover::before {
  opacity: 0.8;
}

.floating-call-btn:active {
  transform: scale(1.05) translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4), 0 3px 8px rgba(0, 0, 0, 0.2);
}

@keyframes gentle-pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4), 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.5), 0 5px 12px rgba(0, 0, 0, 0.25);
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 183, 51, 0.35);
}

.testimonial-content p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-style: italic;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 2rem;
  color: var(--primary);
  position: absolute;
  right: -0.5rem;
  top: -0.5rem;
}

.testimonial-content p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary);
  position: absolute;
  left: -0.5rem;
  bottom: -1rem;
}

.testimonial-author {
  text-align: right;
}

.testimonial-author strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--primary);
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.before-after-item {
  background: var(--surface);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.before-image,
.after-image {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  overflow: hidden;
}

.before-image img,
.after-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.before-image::after,
.after-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.before-image span,
.after-image span {
  position: relative;
  z-index: 3;
}

.transformation-info {
  padding: 1.5rem;
  text-align: right;
}

.transformation-info h4 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 1.1rem;
}

.transformation-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.video-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.video-info {
  text-align: right;
}

.video-info h3 {
  margin: 1rem 0;
  font-size: 2.2rem;
}

.video-info p {
  margin: 1.5rem 0;
  font-size: 1.1rem;
  color: var(--muted);
}

.video-features {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.feature-item strong {
  color: var(--accent);
  font-size: 1.2rem;
}

.feature-item span {
  color: var(--text);
  font-weight: 500;
}

.video-player {
  position: relative;
}

.video-placeholder {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border-radius: 1.5rem;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s ease;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.play-button span {
  font-size: 2rem;
  color: white;
}

.video-placeholder p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.section-cta {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(0, 68, 153, 0.9));
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin-top: 3rem;
  position: relative;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.section-cta .container {
  position: relative;
  z-index: 2;
}

.before-after-cta {
  background: url('images/cta-before-after.jpg') no-repeat center center;
  background-size: cover;
}

.section-cta:nth-of-type(2) {
  background-image: url('images/cta-testimonials.jpg');
  background-size: cover;
  background-position: center;
}



.section-cta h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
}

.section-cta p {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Catalog Styles */
.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--surface);
  border: 2px solid var(--border);
  color: var(--muted);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.catalog-content {
  margin-top: 2rem;
}

.catalog-type {
  display: none;
}

.catalog-type.active {
  display: block;
}

.catalog-type h4 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.catalog-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.catalog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.catalog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.catalog-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.catalog-image:hover .image-overlay {
  opacity: 1;
}

.zoom-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.zoom-btn:hover {
  background: white;
  transform: scale(1.1);
}

.catalog-item h5 {
  margin: 1rem 0 0.5rem;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.catalog-item a {
  margin: 0.5rem 0 1rem;
  display: inline-block;
}

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  cursor: pointer;
}

.image-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-info {
  flex: 1;
}

.footer-contact {
  flex-shrink: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-content,
  .about-grid,
  .contact-grid,
  .video-content {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-grid,
  .testimonials-grid,
  .before-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/cta-services.jpg') center center / cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  margin: 0 0 2rem;
  opacity: 0.95;
  font-weight: 500;
}

.cta-banner .btn-call-now-large {
  background: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 1.3rem !important;
  padding: 1rem 2rem !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50px !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

.cta-banner .btn-call-now-large:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    display: none;
    gap: 0.9rem;
    padding: 1rem 0 0;
    border-top: 1px solid var(--border);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .gallery-grid,
  .cards-grid,
  .testimonials-grid,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .hero-compact {
    padding: 3rem 0 2rem;
  }

  .hero-main h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    font-size: 14px;
    padding: 14px 18px;
    min-width: 160px;
  }

  .btn-call-now-large {
    font-size: 16px;
    padding: 16px 20px;
    min-width: 200px;
  }

  .hero-trust {
    gap: 1rem;
  }

  .trust-item {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 720px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 520px) {
  .site-footer {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
}
