:root {
  --primary: #ffb800;
  --primary-hover: #e6a600;
  --dark: #0f0f0f;
  --dark-secondary: #1a1a1a;
  --light: #f5f5f5;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --container-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.highlight {
  color: var(--primary);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(15, 15, 15, 0.8);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -1px;
}

.dynamic-text {
  display: inline-block;
  transition: opacity 0.2s ease-in-out;
  font-size: 0.75em; /* Mniejszy stopień pisma */
  font-weight: 400;
  margin-left: 5px;
  min-width: 140px; /* Stabilizacja szerokości */
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-left: auto; /* Pchnij menu do prawej */
  margin-right: 2.5rem; /* Odstęp od guzika zadzwoń */
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

.socials {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1rem;
}

.socials a {
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}

.socials a:hover {
  color: var(--primary);
  background: rgba(255, 184, 0, 0.1);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.cta-button {
  background: var(--primary);
  color: var(--dark);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 184, 0, 0.3);
}

/* Hero Section */
#hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  transform: translateY(30px);
  transition: transform 1.2s ease-out;
  opacity: 0;
}

.hero-slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.8) 20%,
    rgba(10, 10, 10, 0) 100%
  );
  z-index: 3;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-btns-mopik {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn-mopik-yellow {
  background: var(--primary);
  color: #000 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1.2rem 2rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 85px;
  min-width: 280px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: none;
  line-height: 1.2;
  text-align: center;
}

.btn-mopik-yellow .main-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
}

.btn-mopik-yellow .sub-text {
  font-size: 1.15rem;
  display: block;
  margin-top: 2px;
}

.btn-mopik-yellow:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 184, 0, 0.4);
}

.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
}

.btn.primary {
  background: var(--primary);
  color: var(--dark);
}

.btn.secondary {
  background: var(--glass);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(5px);
}

.btn:hover {
  transform: scale(1.05);
}

/* Services */
#services {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--dark-secondary);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-muted);
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: #222;
  border-top: 1px solid var(--glass-border);
  overflow: hidden;
}

.partners-title {
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.partners-slider {
  width: 100%;
  position: relative;
}

.partners-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
  gap: 5rem;
  align-items: center;
}

.partner-logo {
  width: 180px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  transition: var(--transition);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(1) opacity(0.5);
  transition: all 0.4s ease;
}

.partner-logo:hover {
  transform: translateY(-10px);
}

.partner-logo:hover img {
  filter: grayscale(0) opacity(1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Features Section */
.dark-section {
  background: var(--dark-secondary);
  padding: 100px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-text h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.feature-text ul {
  list-style: none;
}

.feature-text li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.feature-text i {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefits-list li {
  align-items: flex-start !important;
  gap: 1.5rem !important;
}

.benefits-list strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
}

.feature-image {
  height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.owner-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.owner-photo-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.owner-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%; /* Adjusted slightly higher */
  transition: var(--transition);
}

.owner-photo-wrapper:hover img {
  transform: scale(1.05);
}

.owner-info-box {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(15px);
  padding: 1.2rem;
  border-radius: 0 0 30px 30px; /* Rounded only at the bottom to match image corners */
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 2;
}

.owner-info-box .stat-number {
  margin: 0;
  font-size: 2rem;
}

.owner-info-box p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-main);
  white-space: nowrap;
}

.owner-info-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.owner-info-box p {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stats Counter */
.stat-card .stat-number {
  font-size: 3.5rem;
  color: var(--primary);
}

/* Testimonials Carousel */
.testimonials-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  min-height: 350px;
}

.testimonial-card {
  display: none;
  background: var(--dark-secondary);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  position: relative;
  animation: slideUpFade 0.6s ease forwards;
}

.testimonial-card.visible {
  display: block;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing Section */
#pricing {
  padding: 100px 0;
  position: relative;
  background: var(--dark);
  color: var(--text-main);
}

#pricing .section-title {
  color: #ffffff;
}

.pricing-container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  background: var(--glass);
  padding: 3rem;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.price-item:hover {
  padding-left: 10px;
  border-bottom-color: var(--primary);
}

.price-item:last-child {
  border-bottom: none;
}

.price-label {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.price-value {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2rem;
  white-space: nowrap;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
}

.pricing-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  background: var(--glass-border);
}

.extra-services h4 {
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .pricing-container {
    padding: 2rem 1.5rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pricing-grid::after {
    display: none;
  }
  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}

.stat-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.stat-card i {
  font-size: 2rem;
  color: var(--primary);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--dark-secondary);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  display: block; /* Wszystkie karty widoczne domyślnie, sterowane przez JS w DOMie */
}

.testimonial-card.switching {
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  color: rgba(255, 184, 0, 0.05);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 1.1rem;
  color: #ffffff;
}

.author-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.author-avatar {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  text-transform: uppercase;
}

.stars-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.2rem;
}

.google-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.google-trust-badge i {
  color: #4285F4;
  font-size: 1.1rem;
}

.google-trust-badge strong {
  color: #ffffff;
  font-weight: 600;
}

.testimonial-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stars {
  color: #ffb800; /* Klasyczny żółty Google */
  font-size: 0.9rem;
}

@keyframes fadeInCounter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Section */
#contact {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.map-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: grayscale(1) invert(0.9) contrast(1.2) opacity(0.4);
  pointer-events: none;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.5);
  z-index: 1;
}
.contact-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  background: var(--glass);
  backdrop-filter: blur(15px);
  padding: 4rem;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--dark-secondary);
  border: 1px solid var(--glass-border);
  padding: 1.2rem;
  border-radius: 12px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
}

.contact-form select option {
  background: var(--dark-secondary);
  color: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.3);
  outline: none;
}

/* Stylizacja tematów (select) na żółto-czarno */
.contact-form select:hover {
  background-color: var(--primary);
  color: var(--dark);
  cursor: pointer;
}

.contact-form select option {
  background-color: var(--dark-secondary);
  color: #ffffff;
}

.contact-form select option:checked,
.contact-form select option:hover {
  background-color: var(--primary);
  color: var(--dark);
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #25d366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  background: #20ba5a;
}

.whatsapp-float i {
  font-size: 2.2rem;
}

@keyframes pulse-whatsapp {
  0% {
    background-color: #25d366;
    box-shadow: 0 0 0 0 rgba(37, 211, 101, 0.7);
  }
  50% {
    background-color: #2ee26d; /* Brighter pulse */
    box-shadow: 0 0 0 20px rgba(37, 211, 101, 0);
  }
  100% {
    background-color: #25d366;
    box-shadow: 0 0 0 0 rgba(37, 211, 101, 0);
  }
}

/* Emergency CTA Banner (Integrated in Footer) */
.footer-emergency {
  background: transparent;
  padding: 40px 0;
  text-align: center;
  border-radius: 30px;
  margin-top: 0;
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--glass-border);
}

.footer-emergency .subtitle {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.85rem;
}

.footer-emergency h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.footer-emergency .phone-large {
  font-size: 3rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer-emergency .phone-large:hover {
  transform: scale(1.02);
}

.footer-emergency .desc {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

/* New Footer Styles */
footer {
  background: var(
    --dark-secondary
  ); /* Same as pricing for better integration */
  padding: 60px 0 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--text-main);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-about p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
  text-decoration: none;
  color: var(--text-main);
}

.footer-logo .dynamic-text {
  font-size: 0.7em;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
}

.meta-item i {
  color: var(--primary);
  width: 20px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Mobile Navigation Trigger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
  transition: var(--transition);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Mobile Responsive Refinements */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  header .cta-button {
    display: none;
  }

  #hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: 0.4s ease-in-out;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1.2rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .pricing-container {
    padding: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-grid::after {
    display: none;
  }

  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .stat-card {
    padding: 1.2rem;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-emergency .phone-large {
    font-size: 2.2rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .owner-container {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
