/* General Styles */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: -1px -1px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

h2 {
  color: #e67e22; /* Maintaining orange brand color */
  margin-bottom: 20px;
  border-bottom: 2px solid #e67e22;
  padding-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

p {
  line-height: 1.8; /* Improved readability */
  margin-bottom: 1.2rem;
}

section {
  padding: 60px 0;
  transition: opacity 0.4s ease;
}

/* Header Styles - Fixed Sticky */
header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo {
  display: block;
  margin-right: 20px;
  max-width: 200px;
}

.header-logo img {
  max-height: 70px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

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

.header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.header-nav li {
  padding: 0 15px;
}

.header-nav li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

.header-nav li a:hover {
  color: #e67e22;
}

.header-nav li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e67e22;
  transition: width 0.3s;
}

.header-nav li a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .header-logo img {
    max-height: 60px;
  }
  
  header {
    padding: 15px 0;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .header-nav li {
    padding: 10px 0;
  }
}

/* Hero Section Styles */
.hero {
  color: #fff;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background-position: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 0;
}

.hero h2, .hero p {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  position: relative;
  z-index: 1;
}

.hero h2 {
  margin: 0 0 20px 0;
  font-size: 3.5em;
  font-weight: 700;
  letter-spacing: -1px;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.5em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero .btn {
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Button Styling */
.btn {
  background: #e67e22;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-block;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
  z-index: 2;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  background: #d35400;
  box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
  transform: translateY(-2px);
}

/* About Section Styles */
.about-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-content p {
  margin-bottom: 15px;
}

/* Services Section Styles - Updated */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  padding-top: 15px;
}

.service {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  margin-top: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service h3 {
  background-color: #e67e22;
  color: #fff;
  padding: 15px;
  margin: 0;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.service-content {
  padding: 20px;
  flex-grow: 1;
}

.service-content p {
  margin: 0;
}

/* Contact Section Styles */
.contact-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}

.contact-form-wrapper {
  width: 100%;
}

#contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  width: 100%;
}

#contact-form div {
  margin-bottom: 20px;
}

#contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  background-color: #fff;
  color: #495057;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 16px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

#contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

#contact-form input[type="submit"] {
  background: #e67e22;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
  transition: all 0.3s ease;
  width: auto;
  font-size: 16px;
  min-width: 180px;
  margin: 0 auto;
}

#contact-form input[type="submit"]:hover {
  background: #d35400;
  box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
  transform: translateY(-2px);
}

.g-recaptcha {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* Price Calculator Section Styles */
#calculator-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 40px;
  width: 100%;
}

#calculator-form div {
  margin-bottom: 20px;
}

#calculator-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

#calculator-form input[type="text"],
#calculator-form input[type="number"],
#calculator-form select {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  background-color: #fff;
  color: #495057;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

#calculator-form input[type="text"]:focus,
#calculator-form input[type="number"]:focus,
#calculator-form select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

#calculator-form input[type="submit"] {
  background: #e67e22;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
  transition: all 0.3s ease;
}

#calculator-form input[type="submit"]:hover {
  background: #d35400;
  box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
  transform: translateY(-2px);
}

#calculator-result {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-top: 30px;
  text-align: center;
}

#calculator-result p {
  margin: 10px 0;
  font-weight: 500;
}

#calculator-result p:nth-child(2) {
  font-weight: normal;
  font-size: 1em;
  margin-top: 15px;
  color: #555;
}

/* Footer Styles */
footer {
  background: #222;
  color: #fff;
  padding: 50px 20px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-container {
  max-width: 600px;
  margin: 0 auto;
}

.business-name {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.contact-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #e67e22;
}

.email {
  margin-bottom: 30px;
}

/* Footer Button Styles */
.footer-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.footer-btn {
  display: inline-block;
  width: 140px;
  text-align: center;
  padding: 15px 0;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  animation: pulse 1.5s infinite;
}

.call-btn {
  background-color: #0056b3;
}

.whatsapp-btn {
  background-color: #25D366;
}

.email-btn {
  background-color: #d9534f;
}

@media (max-width: 768px) {
  .footer-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-btn {
    width: 200px;
  }
}

.copyright {
  margin-top: 40px;
  font-size: 0.875rem;
  color: #aaa;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Flash Messages Styling */
.flash-messages {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 90%;
  max-width: 500px;
}

.flash-notice, .flash-alert {
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  animation: fadeInDown 0.5s ease forwards;
  opacity: 0;
  transform: translateY(-20px);
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flash-notice {
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}

.flash-alert {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.5em;
  }
  
  .hero p {
    font-size: 1.2em;
  }
  
  section {
    padding: 40px 0;
  }
  
  .services-list {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .service {
    margin-top: 60px;
  }
  
  .footer-actions {
    flex-direction: column;
  }
  
  .action-btn {
    width: 100%;
    min-width: 100%;
  }
}

/* Background utilities */
.bg-light {
  background-color: transparent;
  padding: 60px 0;
  margin: 0;
}

/* Ensure Our Expertise section doesn't have grey background */
#services {
  background-color: transparent !important;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1.5rem;
}

/* Form layout improvements */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-col {
  flex: 1;
  min-width: 200px;
}

/* Service icons */
.service-icon {
  background-color: #e67e22;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.service-icon i {
  font-size: 28px;
  color: white;
}

/* Contact section improvements */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: white;
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-icon {
  background-color: #e67e22;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon i {
  font-size: 24px;
  color: white;
}

.contact-card h3 {
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
  font-size: 22px;
}

.contact-card p {
  margin: 0;
  color: #555;
  font-size: 18px;
}

.contact-card a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: #e67e22;
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form-wrapper {
    order: 1;
  }
}

/* Placeholder styling */
::placeholder {
  color: #adb5bd;
  opacity: 1;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Field focus styling */
input:focus, 
textarea:focus, 
select:focus {
  outline: none;
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Additional responsive adjustments */
@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-card {
    padding: 20px 15px;
  }
}

/* Form Control Styling */
.form-control {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  background-color: #fff;
  color: #495057;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 16px;
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.form-control:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Make inputs consistent across all forms with better contrast */
input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  background-color: #fff;
  color: #495057;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 16px;
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 35px;
  cursor: pointer;
}

.form-control:focus {
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
  outline: none;
}

/* Add missing .service h3 styling */
.service h3 {
  margin-bottom: 15px;
}

/* Add text-center styling for calculator form elements */
.text-center {
  text-align: center;
}

/* Mobile footer buttons */
@media (max-width: 768px) {
  footer .footer-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 25px auto 0;
  }
  
  footer .footer-actions a {
    width: 100%;
  }
}

/* Make both forms have the same styling and appearance */
#calculator-form, #contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 40px;
  width: 100%;
  box-sizing: border-box;
}

#calculator-form div, 
#contact-form div {
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure form elements have consistent width */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.form-col {
  flex: 1;
  min-width: 200px;
  box-sizing: border-box;
}

/* Mobile Menu - Complete Solution */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-header {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
  padding: 0;
  position: absolute;
  top: 30px;
  left: 0;
  display: flex;
  justify-content: center;
}

.mobile-logo {
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.mobile-menu-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin-top: 50px;
}

.mobile-action-btn {
  display: block;
  width: 85%;
  max-width: 280px;
  padding: 18px 0;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 17px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.mobile-action-btn:first-child {
  background-color: #0056b3;
}

.mobile-action-btn:last-child {
  background-color: #e67e22;
}

.mobile-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-nav .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 120px 0 40px;
    transition: all 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
    justify-content: flex-start;
    align-items: center;
  }
  
  .header-nav .nav-menu.active {
    right: 0;
  }
  
  .header-nav .nav-menu li {
    padding: 25px 0;
    width: 100%;
    text-align: center;
    max-width: 250px;
  }
  
  .header-nav .nav-menu li a {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .header-nav .nav-menu li a:hover {
    color: #e67e22;
  }
  
  /* Hamburger animation */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* Body lock when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* Fix logo duplication issue */
@media (min-width: 769px) {
  .mobile-menu-header {
    display: none;
  }
  
  .mobile-menu-footer {
    display: none;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .header-logo {
    margin-right: 0;
  }
  
  .header-nav {
    margin-left: auto;
  }
  
  .header-nav ul.nav-menu {
    display: flex;
    flex-direction: row;
  }
}

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

/* Page transitions */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Adding landscape background image - adjust for all sections */
.landscape-bg {
  background-image: url(/assets/signal-2025-04-07-210458_002-ec579000024e93aa3cb77004984a2ef9c5c41c46ff71e69ed78096e2941c9af2.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.landscape-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.75); /* Consistent opacity for all sections */
  z-index: 1;
}

/* Adjust different sections for optimal readability */
#about.landscape-bg::before {
  background-color: rgba(255, 255, 255, 0.75);
}

#services.landscape-bg::before {
  background-color: rgba(255, 255, 255, 0.75);
}

#calculator.landscape-bg::before {
  background-color: rgba(255, 255, 255, 0.75); /* Changed to match others */
}

#contact.landscape-bg::before {
  background-color: rgba(255, 255, 255, 0.75); /* Changed to match others */
}

.landscape-bg > * {
  position: relative;
  z-index: 2; /* Ensure content sits above the overlay */
}

/* Apply landscape background to all sections */
#about, #services, #calculator, #contact {
  position: relative;
  z-index: 1;
}

/* Enhance contrast for cards and forms on landscape background */
.service, #calculator-form, #contact-form, #calculator-result, .about-content {
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Footer button pulse effect */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(230, 126, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
  }
}

.footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  animation: pulse 1.5s infinite;
}


