/* === Safe Surfing Navbar === */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background: #fff;
}

.safesurfing-navbar {
  width: 100%;
  background: #0a0f29;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* === Logo === */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.logo span {
  color: #00aaff;
}

.logo:hover {
  color: #00aaff;
}

/* === Nav Links === */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00aaff;
}

/* === Call Button === */
.call-btn {
  background: #00aaff;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}

.call-btn:hover {
  background: #0088cc;
}

/* === Mobile Menu Toggle === */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* === Responsive Styles === */
@media (max-width: 992px) {
  .safesurfing-navbar {
    padding: 15px 25px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0a0f29;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px 0;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .call-btn {
    display: inline-block;
    width: 80%;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 1.5rem;
  }

  .call-btn {
    font-size: 0.95rem;
  }
}
/* === Safe Surfing Banner === */
.safesurfing-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  background: linear-gradient(135deg, #0a0f29 0%, #001940 100%);
  color: #fff;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.banner-content {
  z-index: 2;
  max-width: 800px;
}

.safesurfing-banner h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.safesurfing-banner h1 span {
  color: #00aaff;
}

.safesurfing-banner p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.banner-btn {
  background: #00aaff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
}

.banner-btn:hover {
  background: #0088cc;
  transform: translateY(-3px);
}

/* === Floating Shapes === */
.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  animation: float 10s infinite ease-in-out;
}

.shape-1 {
  width: 150px;
  height: 150px;
  background: #00aaff;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: #ffffff;
  bottom: 10%;
  right: 15%;
  animation-delay: 3s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: #00aaff;
  bottom: 20%;
  left: 40%;
  animation-delay: 6s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(20deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* === Responsive Design === */
@media (max-width: 992px) {
  .safesurfing-banner h1 {
    font-size: 2.3rem;
  }

  .safesurfing-banner p {
    font-size: 1rem;
  }

  .banner-btn {
    padding: 10px 22px;
  }
}

@media (max-width: 576px) {
  .safesurfing-banner {
    padding: 60px 15px;
  }

  .safesurfing-banner h1 {
    font-size: 1.9rem;
  }

  .safesurfing-banner p {
    font-size: 0.95rem;
  }

  .shape-1, .shape-2, .shape-3 {
    opacity: 0.15;
  }
}
/* === Safe Surfing: Who We Are Section === */
.safesurfing-who-we-are {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #f9fbff;
  padding: 80px 8%;
  gap: 50px;
}

.who-left {
  flex: 1 1 500px;
}

.who-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00204a;
  margin-bottom: 20px;
}

.who-left p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.learn-more-btn {
  background: #00aaff;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}

.learn-more-btn:hover {
  background: #0088cc;
  transform: translateY(-3px);
}

.who-right {
  flex: 1 1 450px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px 35px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 200px;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
  font-size: 2.2rem;
  color: #00aaff;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-box p {
  font-size: 1rem;
  color: #444;
  font-weight: 500;
}

/* === Counter Animation === */
.counter {
  transition: all 0.5s ease;
}

/* === Responsive Design === */
@media (max-width: 992px) {
  .safesurfing-who-we-are {
    flex-direction: column;
    text-align: center;
  }

  .who-right {
    justify-content: center;
  }

  .who-left h2 {
    font-size: 2rem;
  }

  .who-left p {
    font-size: 1rem;
  }

  .stat-box {
    width: 180px;
  }
}

@media (max-width: 576px) {
  .safesurfing-who-we-are {
    padding: 60px 5%;
  }

  .stat-box {
    width: 100%;
    max-width: 280px;
  }

  .who-left h2 {
    font-size: 1.8rem;
  }

  .who-left p {
    font-size: 0.95rem;
  }
}
/* =============================
   WHY CHOOSE GUARDIOSAFE SECTION
============================= */
.guardiosafe-why-choose {
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.guardiosafe-why-choose::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -80px;
  left: -80px;
}

.guardiosafe-why-choose::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

.guardiosafe-why-choose .why-header h2 {
  font-size: 2.5rem;
  color: #00d1ff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.guardiosafe-why-choose .why-header p {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: stretch;
  padding: 0 10px;
}

.why-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.why-card i {
  font-size: 2.5rem;
  color: #00d1ff;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
}

.why-card p {
  color: #cfd8dc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 209, 255, 0.15);
}

.why-card:hover i {
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .guardiosafe-why-choose {
    padding: 60px 15px;
  }
  .guardiosafe-why-choose .why-header h2 {
    font-size: 2rem;
  }
  .why-card {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .guardiosafe-why-choose .why-header p {
    font-size: 0.9rem;
  }
  .why-card h3 {
    font-size: 1.1rem;
  }
  .why-card p {
    font-size: 0.85rem;
  }
}
/* =============================
   CUSTOMER REVIEWS SECTION
============================= */
.guardiosafe-reviews {
  background: #f7f9fc;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.guardiosafe-reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(0, 209, 255, 0.1), transparent);
  z-index: 0;
}

.guardiosafe-reviews .reviews-header {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.guardiosafe-reviews h2 {
  font-size: 2.5rem;
  color: #0d1b2a;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.guardiosafe-reviews p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1rem;
  color: #455a64;
  line-height: 1.6;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.review-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 209, 255, 0.15);
}

.review-card .stars {
  color: #fbc02d;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.review-card p {
  font-size: 0.95rem;
  color: #455a64;
  line-height: 1.7;
  margin-bottom: 15px;
}

.review-card h4 {
  color: #0d1b2a;
  margin-bottom: 3px;
  font-weight: 600;
}

.review-card span {
  color: #607d8b;
  font-size: 0.85rem;
}

/* Floating Accent Animation */
.review-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(0, 209, 255, 0.05);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  transition: transform 0.6s ease;
}

.review-card:hover::after {
  transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .guardiosafe-reviews {
    padding: 60px 15px;
  }
  .guardiosafe-reviews h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .review-card {
    padding: 25px 15px;
  }
  .review-card p {
    font-size: 0.9rem;
  }
  .review-card h4 {
    font-size: 1rem;
  }
}
/* =============================
   CTA SECTION
============================= */
.safe-cta {
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.safe-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: pulse 6s infinite linear;
  z-index: 0;
}

@keyframes pulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.safe-cta .cta-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.safe-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.safe-cta p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.7;
  color: #e0f7ff;
}

.safe-cta .cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #0077b6;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.safe-cta .cta-btn:hover {
  background: #023e8a;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .safe-cta {
    padding: 80px 20px;
  }
  .safe-cta h2 {
    font-size: 2rem;
  }
  .safe-cta p {
    font-size: 1rem;
  }
  .safe-cta .cta-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}
/* =============================
   WHY CHOOSE SAFE SURFING
============================= */
.safe-benefits {
  background: #f8faff;
  padding: 100px 20px;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.safe-benefits .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #003566;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-item i {
  font-size: 2.5rem;
  color: #0077b6;
  margin-bottom: 15px;
}

.benefit-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #001d3d;
}

.benefit-item p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* =============================
   PLANS SECTION
============================= */
.safe-plans {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.safe-plans .section-title {
  font-size: 2.4rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #fff;
}

.plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.plan-item {
  background: #ffffff;
  color: #000;
  padding: 40px 25px;
  border-radius: 18px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.plan-item.recommended {
  border: 3px solid #00b4d8;
  transform: scale(1.05);
}

.plan-item .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #00b4d8;
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-item .plan-price {
  font-size: 1.8rem;
  color: #0077b6;
  margin-bottom: 25px;
  font-weight: 700;
}

.plan-item .plan-price span {
  font-size: 0.9rem;
  color: #333;
}

.plan-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.plan-item ul li {
  margin: 10px 0;
  font-size: 0.95rem;
  color: #333;
}

.plan-item ul li i {
  color: #00b4d8;
  margin-right: 8px;
}

.btn-cta {
  display: inline-block;
  background: #0077b6;
  color: #fff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #023e8a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .safe-benefits,
  .safe-plans {
    padding: 70px 20px;
  }

  .benefit-item,
  .plan-item {
    padding: 25px 20px;
  }

  .safe-benefits .section-title,
  .safe-plans .section-title {
    font-size: 2rem;
  }
}
/* === Disclaimer Section === */
.guardiosafe-disclaimer {
  background: #101010;
  color: #eaeaea;
  padding: 120px 20px 80px;
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
}

.guardiosafe-disclaimer h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #00c3ff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guardiosafe-disclaimer p {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1rem;
  color: #cfcfcf;
}

.guardiosafe-disclaimer a {
  color: #00c3ff;
  text-decoration: underline;
}

.guardiosafe-disclaimer a:hover {
  color: #ffffff;
}

/* === Footer Section === */
.guardiosafe-footer {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 60px 20px 100px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1;
  min-width: 260px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  color: #00c3ff;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #00c3ff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00c3ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
  color: #999;
}

/* === Fixed Call Button === */
.call-now-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #00c3ff;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 195, 255, 0.4);
  transition: 0.3s ease;
  z-index: 999;
}

.call-now-btn:hover {
  background: #009fd1;
  box-shadow: 0 4px 20px rgba(0, 195, 255, 0.6);
  transform: translateY(-2px);
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    flex: 100%;
  }

  .footer-socials a {
    margin: 0 8px;
  }

  .guardiosafe-disclaimer {
    padding: 80px 20px 60px;
  }

  .guardiosafe-disclaimer h2 {
    font-size: 1.8rem;
  }

  .call-now-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}
/* ====== CONTACT SECTION ====== */
.guardiosafe-contact {
  background: linear-gradient(135deg, #0a0a0a, #101820);
  color: #fff;
  padding: 120px 20px;
  font-family: 'Poppins', sans-serif;
}

.guardiosafe-contact .section-title {
  text-align: center;
  font-size: 2.3rem;
  color: #00c3ff;
  margin-bottom: 15px;
}

.guardiosafe-contact .section-description {
  text-align: center;
  color: #cfcfcf;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ====== Layout ====== */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form, .contact-info {
  flex: 1 1 48%;
  background: #111;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* ====== Form Styling ====== */
.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #00c3ff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #222;
  border-radius: 8px;
  background: #0d0d0d;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00c3ff;
  background: #141414;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.submit-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #00c3ff;
  border: none;
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #009fd1;
  transform: translateY(-2px);
}

/* ====== Contact Info ====== */
.contact-info {
  color: #cfcfcf;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 1.4rem;
  color: #00c3ff;
}

.contact-item p {
  font-size: 0.95rem;
}

/* ====== Map Styling ====== */
.map-container {
  margin-top: 25px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #222;
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* ====== Responsive Design ====== */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form, .contact-info {
    flex: 100%;
  }

  .guardiosafe-contact .section-title {
    font-size: 1.9rem;
  }

  .map-container iframe {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .contact-form, .contact-info {
    padding: 25px;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }
}
