:root {
  --primary-color: #2a2e38;
  --secondary-color: #dc700c;
  --background-color: #fffffe;
  --font-color: #000;
}

.roboto-bold {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-light {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

body {
  margin: 0;
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: var(--font-color);
  background: url(../images/blueprint.jpg) repeat;
  background-size: 25%;
}

h2 {
  text-align: center;
}

a {
  cursor: url("../images/hammer.svg") 8 16, pointer;
  color: var(--font-color);
}

a:active {
  cursor: url("../images/hammer_down.svg") 8 16, pointer;
  transform: translateY(5px);
  transition: transform 0.3s step-start;
  color: var(--secondary-color);
}

.spacer {
  flex-grow: 1;
}

header {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem;
  text-align: center;
}

.logo img {
  width: 150px;
}

.logo-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  display: flex;
  justify-content: center;
  background-color: var(--primary-color);
}

nav a {
  color: var(--background-color);
  padding: 1rem;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.logo img {
  width: 150px;
}

.logo-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  display: flex;
  justify-content: center;
  background-color: var(--primary-color);
}

nav a {
  color: var(--background-color);
  padding: 1rem;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.container {
  padding: 2rem;
  min-height: 70vh;
  max-width: 1200px;
  margin: 0 auto;
}

.services,
.contact {
  margin-bottom: 2rem;
}

footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
  padding: 1rem;
  width: 100%;
  bottom: 0;
}

footer a {
  color: var(--background-color);
  text-decoration: none;
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
  }
}
.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: none;
  border-radius: 5px;
  text-decoration: none;
  text-align: right;
  cursor: url("../images/hammer.svg") 8 16, pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.cta-button:hover {
  background-color: var(--background-color);
  color: var(--secondary-color);
  transform: scale(1.05);
}

.cta-button .arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  animation: arrow-move 1s infinite;
  transform: translateX(12px); /* Subtle rightward movement */
}

.cta-button .arrow::after {
  content: "";
  animation: arrow-move 1s infinite;
}

@keyframes arrow-move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}

.logo img {
  transition: transform 0.3s ease-in-out;
}

.logo img:hover {
  transform: scale(1.05);
}
.social-icon {
  color: var(--secondary-color);
  margin: 0 0.5rem;
  font-size: 1.5rem;
  text-decoration: none;
}

.social-icon:hover {
  color: var(--background-color);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

input,
select,
button {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  width: 100%;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

button {
  background-color: var(--secondary-color);
  color: var(--background-color);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.conditional-fields {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  background-color: #f9f9f9;
}

.conditional-fields input {
  width: 90%;
  margin-bottom: 10px;
}

.project-details textarea {
  width: 100%;
  height: 100px;
}

.service-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-item {
  position: relative; /* Create a stacking context */
  background: var(--primary-color); /* Background color of the service-item */
  color: var(--background-color);
  padding: 2rem 1rem 1rem;
  text-align: right;
  box-shadow: none; /* Remove the default shadow */
  overflow: visible; /* Ensure content is not clipped */
  max-width: 90%; /* Limit width for better alignment */
  margin: 0 auto; /* Center align by default */
  width: 70%;
  z-index: 1; /* Ensure the service-item content is above the shadow */
}

.service-item::before {
  content: "";
  position: absolute;
  top: 10px; /* Offset the shadow */
  left: 10px; /* Offset the shadow */
  right: -10px; /* Extend shadow width */
  bottom: -10px; /* Extend shadow height */
  background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.1) 2px,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 0, 0, 0) 5px
  ); /* Diagonal lines for comic-style shadow */
  z-index: -1; /* Place behind the service-item */
  transform: skew(-5deg, -5deg); /* Add a comic-style skew */
  border-radius: 5px; /* Optional: Add rounded corners */
  pointer-events: none; /* Ensure the shadow doesn't interfere with interactions */
}

/* Add a keyframe animation for continuous rotation */
@keyframes background-unskew {
  from {
    transform: skew(-5deg, -5deg);
    opacity: 1;
  }
  to {
    transform: skew(0deg, 0deg);
    opacity: 0.5; /* Fade out effect */
  }
}

@keyframes background-reskew {
  from {
    transform: skew(0deg, 0deg);
    opacity: 0.5;
  }
  to {
    transform: skew(-5deg, -5deg);
    opacity: 1;
  }
}

.service-item:hover::before {
  animation: background-unskew 0.5s forwards; /* Apply the animation on hover */
}

.service-item::before {
  animation: background-reskew 0.5s forwards; /* Reverse the animation when hover ends */
}

.service-item:hover .icon-starburst {
  animation: rotate-starburst 4s linear infinite; /* Apply continuous rotation */
}

.service-item:hover .custom-icon {
  animation: rotate-icon 4s linear infinite; /* Apply continuous rotation */
}

.service-list li:nth-child(1) .service-item {
  transform: rotate(-1deg);
}

.service-list li:nth-child(2) .service-item {
  transform: rotate(1deg);
}

.service-list li:nth-child(3) .service-item {
  transform: rotate(-1deg);
}

.service-list li:nth-child(4) .service-item {
  transform: rotate(1deg);
}

.service-list li:nth-child(5) .service-item {
  transform: rotate(-1.5deg);
}

.service-list li:nth-child(6) .service-item {
  transform: rotate(1.5deg);
}

/* Add more nth-child rules as needed for additional items */

.service-list li:nth-child(odd) {
  margin-left: 10%; /* Offset odd items to the right */
}

.service-list li:nth-child(even) {
  margin-right: 10%; /* Offset even items to the left */
}

/* Add a keyframe animation for continuous rotation */
@keyframes rotate-starburst {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Add a keyframe animation for continuous rotation */
@keyframes rotate-icon {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.icon-starburst {
  position: absolute;
  top: -20px; /* Adjust position to accommodate larger size */
  left: -20px; /* Align to the left with padding */
  font-size: 4rem; /* Size of the fa-certificate icon */
  color: var(--secondary-color); /* Starburst color */
  z-index: 1; /* Ensure it appears above other elements */
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-starburst .custom-icon {
  position: absolute;
  font-size: 1.5rem; /* Size of the custom icon */
  color: var(--background-color); /* Custom icon color */
  z-index: 2; /* Ensure it stays above the rotating starburst */
  transform: rotate(0deg); /* Prevent rotation */
}

.service-title {
  font-weight: 400;
  font-size: 1.5rem;
}

.service-description {
  font-size: 1rem;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .service-item {
    max-width: 100%; /* Full width on smaller screens */
    margin: 0 auto; /* Center align all items */
  }

  .service-list li {
    margin: 0 auto; /* Remove alternating offsets on mobile */
  }
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; /* Add spacing between grid items */
  margin-top: 2rem;
}

.service-item {
  text-align: center;
  padding: 1rem;
  background-color: var(--primary-color);
  color: var(--background-color);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-item ul li {
  font-size: 1rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.neighborhood-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  background: var(--primary-color);
  padding: 2rem;
  border-radius: 10px;
  position: relative; /* Ensure proper positioning for overlay */
  z-index: 1; /* Ensure content is above the overlay */
}

.neighborhood-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/service_area_map.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0; /* Place the overlay behind the content */
  border-radius: 10px; /* Match the border radius of the parent */
}

.neighborhood-list li {
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  white-space: nowrap; /* Prevent word wrap within a list item */
  text-overflow: ellipsis; /* Add ellipsis for overflowed text */
  overflow: hidden; /* Ensure overflow is hidden */
}

.neighborhood-list li:nth-child(odd) {
  animation-delay: 0.1s;
}

.neighborhood-list li:nth-child(even) {
  animation-delay: 0.2s;
}

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

.neighborhood-list li:hover {
  transform: scale(1.15);
  cursor: default;
}

.neighborhood-list li i {
  color: var(--background-color);
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.5s ease;
}

.neighborhood-list li:hover i {
  color: var(--secondary-color);
  transform: scale(1.15);
}

#servicearea {
  background: none;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
}

/* Hamburger menu styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  padding: 0;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(0px, 11px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0px, -11px);
}

/* Desktop navigation styles */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 769px) {
  .hamburger-menu {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }
}

.nav-links a {
  color: var(--background-color);
  padding: 1rem;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  border-radius: 10px;
}

.nav-links a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.nav-links a:last-child {
  color: var(--secondary-color);
}

.nav-links a:last-child:hover {
  color: var(--primary-color);
}

/* Show hamburger menu on mobile */
@media (max-width: 768px) {
  .logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .hamburger-menu {
    display: flex; /* Show hamburger menu on mobile */
  }

  .nav-links {
    display: none; /* Hide navigation links by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-top: 2px solid var(--secondary-color);
  }

  .nav-links.active {
    display: flex; /* Show navigation links when active */
  }

  .nav-links a {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

/* Show the menu normally on non-phone devices */
.menu-row {
  display: flex; /* Ensure the menu is visible on larger screens */
  flex-direction: row;
  justify-content: center;
  background-color: var(--primary-color);
  position: static; /* Remove absolute positioning for larger screens */
  width: 100%;
  z-index: 9;
}

.menu-row.active {
  display: flex; /* Keep the menu visible when toggled on mobile */
}

/* Hide the menu on mobile by default */
@media (max-width: 600px) {
  .menu-row {
    display: none; /* Hide the menu on smaller screens */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  .menu-row.active {
    display: flex; /* Show the menu when toggled on mobile */
  }
}

/* Maintenance plan styles */
.comparison-chart {
  margin-top: 2rem;
  margin-top: 2rem;
}

.plan {
  background-color: var(--background-color);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-center {
  margin: 0 auto;
}

.plan.best {
  border-color: var(--secondary-color);
  background-color: #f9f9f9;
  /* transform: scale(1.05); */
  position: relative;
}

.plan.best .badge {
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: var(--secondary-color);
  color: var(--background-color);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 5px;
}

.plan h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.plan.best h3 {
  color: var(--secondary-color);
}

.plan .price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin: 0.5rem 0;
}

.plan .duration {
  font-size: 1rem;
  color: var(--font-color);
  margin-bottom: 1rem;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.plan ul li {
  font-size: 1rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan ul li i.green {
  color: var(--secondary-color);
}

.plan ul li i.grey {
  color: #ccc;
}

.plan .cta-button {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.plan .cta-button:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
  transform: scale(1.05);
}

.plan:hover {
  /* transform: scale(1.1); */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .comparison-chart {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .plan {
    width: 100%;
  }
}

.cta-section {
  text-align: center;
  padding: 2rem;
  background-color: var(--primary-color);
  color: var(--background-color);
  border-radius: 10px;
  margin-top: 2rem;
}

.cta-section .cta-button {
  margin: 0 1rem;
  padding: 0.8rem 2rem;
  font-size: 1.3rem;
  font-weight: bold;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #ffb347 100%);
  color: var(--primary-color);
  border: 3px solid var(--primary-color);
  border-radius: 30px;
  box-shadow: 0 6px 24px rgba(220, 112, 12, 0.25),
    0 1.5px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s cubic-bezier(0.4, 2, 0.6, 1), background 0.3s,
    box-shadow 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.03em;
}

.cta-section .cta-button::after {
  content: "";
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.5s cubic-bezier(0.4, 2, 0.6, 1);
  pointer-events: none;
}

.cta-section .cta-button:hover,
.cta-section .cta-button:focus {
  background: linear-gradient(90deg, #ffb347 0%, var(--secondary-color) 100%);
  color: var(--background-color);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 32px rgba(220, 112, 12, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.13);
}

.cta-section .cta-button:hover::after,
.cta-section .cta-button:focus::after {
  left: 120%;
}

.cta-note {
  font-size: 0.8rem;
  margin-top: 1rem;
  font-style: italic;
}

.cta-main {
  display: inline-block;
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
}

.cta-guarantee {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Plans Header */
.plans-header {
  text-align: center;
  padding: 2rem;
  background-color: var(--primary-color);
  color: var(--background-color);
  border-radius: 10px;
  margin-bottom: 2rem;
}

.plans-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.plans-header p {
  font-size: 1.2rem;
}

/* Project Gallery */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project {
  background-color: var(--background-color);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.project-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.project-description,
.project-details {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

.photo-stack {
  position: relative;
  display: flex;
  justify-content: center;
  gap: -30px; /* Overlap the photos slightly */
  margin-bottom: 2rem;
}

.photo {
  position: relative;
  width: 150px;
  height: 150px;
  transform: rotate(
    calc(-5deg + 10deg * var(--rotation, 0))
  ); /* Varying rotations */
  transition: transform 0.3s ease, z-index 0.3s ease;
  cursor: url("../images/hammer.svg") 8 16, pointer;
  z-index: 1; /* Ensure stacking order */
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.photo:hover {
  transform: scale(1.2) rotate(0deg); /* Bring hovered photo to focus */
  z-index: 10; /* Bring hovered photo to the front */
}

.photo:active {
  cursor: url("../images/hammer_down.svg") 8 16, pointer;
}

.photo-caption {
  display: none; /* Hide captions by default */
  position: absolute;
  bottom: -40px; /* Position below the photo stack */
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: var(--font-color);
  text-align: center;
  max-width: 90%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.photo:hover + .photo-caption {
  display: block; /* Show the caption of the hovered photo */
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.photo[data-label]:before {
  content: attr(data-label);
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: var(--secondary-color);
  color: var(--background-color);
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

.photo[data-label="Before"]::before {
  background-color: gray; /* Set the background color to gray for "Before" labels */
}

.photo:hover {
  transform: scale(1.2) rotate(0deg);
  z-index: 10;
}

.photo img:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.project-cta-button {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-top: 20px;
}

.project-cta-button:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
  transform: scale(1.05);
}

/* Fullscreen photo styles */
.fullscreen-photo {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack the image and caption vertically */
  z-index: 1000;
}

.fullscreen-photo img {
  max-width: 90%;
  max-height: 80%;
  border: 5px solid #fff;
  border-radius: 5px;
}

.fullscreen-caption {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  max-width: 90%;
}

.fullscreen-photo.active {
  display: flex;
}

.what-we-did {
  list-style: none; /* Remove default bullet points */
  padding: 0;
  margin-bottom: 40px;
  text-align: left; /* Left-align the list items */
}

.what-we-did li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem; /* Add spacing between items */
  font-size: 1rem;
  color: var(--font-color);
}

.what-we-did li i {
  color: var(--secondary-color); /* Green checkmark color */
  margin-right: 0.5rem; /* Add spacing between the icon and text */
  font-size: 1.2rem;
}

/* Hero Section */
.hero {
  position: relative; /* Make the hero section a positioned container */
  overflow: hidden; /* Ensure the video doesn't overflow the section */
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--background-color);
  border-radius: 10px;
  margin-bottom: 2rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the entire section */
  z-index: -1; /* Place the video behind the content */
}

.hero-content {
  position: relative;
  z-index: 1; /* Ensure the content appears above the video */
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero .home-cta-button {
  font-size: 1.2rem;
  padding: 0.8rem 1.5rem;
}

/* Homepage Sections */
.homepage-section {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  background-color: var(--background-color);
  border-radius: 10px;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.6);
  position: relative; /* Make the section a positioned container */
  overflow: hidden; /* Ensure circles don't overflow the section */
  transition: box-shadow 0.3s ease;
}

.homepage-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.homepage-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 50px;
}

.section-card {
  background-color: var(--primary-color);
  color: var(--background-color);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.section-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.section-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.section-card .cta-link {
  font-size: 1rem;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.section-card .cta-link:hover {
  color: var(--background-color);
}

#gallery {
  background: url(../images/project5/image4.jpg) no-repeat center center;
  background-size: cover;
}

#contact {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

/* CTA Button */
.home-cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.home-cta-button:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
  transform: scale(1.05);
}

.home-cta-button .arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.home-cta-button:hover .arrow {
  transform: translateX(5px);
}

/* Silver Circles */
.corner-circle {
  position: absolute; /* Position relative to the hero section */
  width: 30px;
  height: 30px;
  background-color: silver;
  border-radius: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  cursor: url("../images/hammer.svg") 8 16, pointer;
  z-index: 10;
}

.corner-circle:active {
  cursor: url("../images/hammer_down.svg") 8 16, pointer;
}

.corner-circle.top-left {
  top: 10px;
  left: 10px;
}

.corner-circle.top-right {
  top: 10px;
  right: 10px;
}

.corner-circle.bottom-left {
  bottom: 10px;
  left: 10px;
}

.corner-circle.bottom-right {
  bottom: 10px;
  right: 10px;
}

.corner-circle.clicked {
  transform: scale(0.5); /* Keep the circle small after being clicked */
  opacity: 0.7; /* Slight fade effect */
  pointer-events: none; /* Disable further interaction */
}

/* Events Section */
.events {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  background-color: var(--background-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.events h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.events p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--background-color);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background-color: var(--primary-color);
  color: var(--background-color);
  padding: 2rem;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.event-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.event-card p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.event-card .event-description {
  margin-top: 1rem;
  font-style: italic;
  color: var(--background-color);
  opacity: 0.9;
}

/* Discount List */
.discount-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.discount-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.discount-list li i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* Contact Form */
.contactform {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: auto;
}

/* Service Plan Accordion */
.accordion {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background: #f9f9f9;
  padding: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

.accordion-header:hover {
  background: #f0f0f0;
}

.accordion-button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-button:focus {
  outline: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}

.accordion.active .accordion-content {
  max-height: 2000px;
  padding: 1rem;
}

.service-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.service-section-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.nested-list li {
  padding-left: 1.5rem; /* Indent nested lists */
  margin: 0.5rem 0;
}

.nested-list li::before {
  content: "→"; /* Use a bullet point for nested items */
  color: var(--secondary-color); /* Color for the bullet */
  margin-right: 0.5rem; /* Space between bullet and text */
}

.arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

/* Plans Comparison Table */
.plans-comparison-table {
  background-color: var(--background-color);
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.plans-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--background-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
  border-radius: 10px 10px 0 0;
}

.plans-header-row:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-label-header {
  padding: 1rem;
  display: flex;
  align-items: center;
}

.service-label-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--background-color);
}

.plan-header {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.plan-header .plan-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.plan-header h3 {
  margin: 0.5rem 0 0.25rem 0;
  font-size: 1.4rem;
  color: var(--background-color);
}

.plan-header .plan-subtitle {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  color: var(--background-color);
}

.plan-header.basic .plan-icon {
  color: #3498db;
}
.plan-header.silver .plan-icon {
  color: #95a5a6;
}
.plan-header.gold .plan-icon {
  color: #f1c40f;
}
.plan-header.platinum .plan-icon {
  color: #9b59b6;
}

.service-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #eee;
  min-height: 60px;
  align-items: center;
}

.service-row:nth-child(even) {
  background-color: #f9f9f9;
}

.service-row:hover {
  background-color: #f0f8ff;
}

.service-label {
  padding: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--font-color);
  border-right: 1px solid #eee;
}

.plan-cell {
  text-align: center;
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

.plan-cell i {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.included {
  color: #27ae60;
}
.not-included {
  color: #e74c3c;
  opacity: 0.5;
}
.platinum-feature {
  color: #9b59b6;
}

.frequency {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.25rem;
  font-style: italic;
}

.premium-service {
  background: linear-gradient(90deg, #f8f9fa, #e9ecef);
}

.premium-service .service-label {
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.premium-service .service-label::before {
  content: "★";
  color: var(--secondary-color);
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.cta-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  margin-top: 1rem;
  padding: 1rem 0;
  align-items: center;
}

.cta-row .plan-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.plan-cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: url("../images/hammer.svg") 8 16, pointer;
  border: 2px solid transparent;
}

.basic-btn {
  background-color: #3498db;
  color: var(--background-color);
}

.basic-btn:hover {
  background-color: var(--background-color);
  color: #3498db;
  border-color: #3498db;
  transform: scale(1.05);
}

.silver-btn {
  background-color: #95a5a6;
  color: var(--background-color);
}

.silver-btn:hover {
  background-color: var(--background-color);
  color: #95a5a6;
  border-color: #95a5a6;
  transform: scale(1.05);
}

.gold-btn {
  background-color: #f1c40f;
  color: var(--primary-color);
}

.gold-btn:hover {
  background-color: var(--background-color);
  color: #f1c40f;
  border-color: #f1c40f;
  transform: scale(1.05);
}

.platinum-btn {
  background-color: #9b59b6;
  color: var(--background-color);
  animation: platinum-glow 2s ease-in-out infinite alternate;
}

.platinum-btn:hover {
  background-color: var(--background-color);
  color: #9b59b6;
  border-color: #9b59b6;
  transform: scale(1.05);
  animation: none;
}

@keyframes platinum-glow {
  from {
    box-shadow: 0 0 5px #9b59b6;
  }
  to {
    box-shadow: 0 0 20px #9b59b6, 0 0 30px #9b59b6;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .plans-header-row,
  .service-row,
  .cta-row {
    grid-template-columns: 1fr;
  }

  .plans-header-row {
    gap: 0;
  }

  .plan-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .plan-header:last-child {
    border-bottom: none;
  }

  .service-row {
    position: relative;
    padding: 1rem 0;
  }

  .service-label {
    border-right: none;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-weight: 600;
    background-color: #f8f9fa;
  }

  .plan-cell {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1rem;
  }

  .plan-cell > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .plan-cell .included,
  .plan-cell .not-included,
  .plan-cell .platinum-feature {
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 768px) {
  /* Hide desktop table completely on small screens */
  .plans-comparison-table {
    display: none !important;
  }

  /* Ensure body doesn't interfere with sticky positioning */
  body {
    overflow-x: hidden;
  }

  /* Mobile Compact Comparison Table */
  .mobile-plans-interface {
    display: block;
    margin-top: 2rem;
    overflow: visible;
    position: relative;
  }

  .mobile-plans-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--secondary-color)
    );
    color: var(--background-color);
    padding: 0.75rem 0.5rem;
    border-radius: 10px 10px 0 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
    gap: 0.25rem;
  }

  .mobile-plans-header .service-label-mobile {
    font-weight: 600;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
  }

  .mobile-plan-header {
    text-align: center;
    padding: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-plan-header .plan-icon {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .mobile-plan-header h4 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1;
  }

  .mobile-plan-header.basic .plan-icon {
    color: #3498db;
  }
  .mobile-plan-header.silver .plan-icon {
    color: #95a5a6;
  }
  .mobile-plan-header.gold .plan-icon {
    color: #f1c40f;
  }
  .mobile-plan-header.platinum .plan-icon {
    color: #9b59b6;
  }

  /* Mobile Service Rows */
  .mobile-service-comparison {
    background-color: var(--background-color);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .mobile-service-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #eee;
    gap: 0.25rem;
    align-items: baseline;
    font-size: 0.85rem;
  }

  .mobile-service-row:last-child {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
  }

  .mobile-service-row:nth-child(even) {
    background-color: #f8f9fa;
  }

  .mobile-service-name {
    font-weight: 500;
    padding: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .mobile-service-indicator {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }

  .mobile-service-indicator .service-icon {
    font-size: 1rem;
    font-weight: bold;
  }

  .mobile-service-indicator.included .service-icon {
    color: #27ae60;
  }

  .mobile-service-indicator.not-included .service-icon {
    color: #e74c3c;
    opacity: 0.6;
  }

  .mobile-service-indicator.premium .service-icon {
    color: #9b59b6;
  }

  .mobile-service-frequency {
    font-size: 0.7rem;
    color: #666;
    font-style: italic;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.15rem 0.4rem;
    border-radius: 8px;
    white-space: nowrap;
    line-height: 1;
  }

  /* Mobile CTA Section */
  .mobile-plans-cta {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background-color: #f8f9fa;
    border-radius: 0 0 10px 10px;
    margin-top: 1rem;
  }

  .mobile-plan-cta-btn {
    padding: 0.75rem 0.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: block;
  }

  .mobile-plan-cta-btn.basic {
    background-color: #3498db;
    color: var(--background-color);
  }

  .mobile-plan-cta-btn.silver {
    background-color: #95a5a6;
    color: var(--background-color);
  }

  .mobile-plan-cta-btn.gold {
    background-color: #f1c40f;
    color: var(--primary-color);
  }

  .mobile-plan-cta-btn.platinum {
    background-color: #9b59b6;
    color: var(--background-color);
  }

  .mobile-plan-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
}

/* Mobile Plans Interface - Only show on mobile */
.mobile-plans-interface {
  display: none;
}

@media (max-width: 768px) {
  .mobile-plans-interface {
    display: block;
    margin-top: 2rem;
  }

  /* Mobile Plan Selector Tabs */
  .mobile-plan-selector {
    display: flex;
    background-color: var(--primary-color);
    border-radius: 15px 15px 0 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .mobile-plan-selector::-webkit-scrollbar {
    display: none;
  }

  .mobile-plan-tab {
    flex: 1;
    min-width: 100px;
    padding: 1rem 0.5rem;
    text-align: center;
    background: none;
    border: none;
    color: var(--background-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    position: relative;
  }

  .mobile-plan-tab.active {
    background-color: var(--background-color);
    color: var(--primary-color);
    transform: scale(1.05);
  }

  .mobile-plan-tab.active.basic {
    border-bottom-color: #3498db;
  }
  .mobile-plan-tab.active.silver {
    border-bottom-color: #95a5a6;
  }
  .mobile-plan-tab.active.gold {
    border-bottom-color: #f1c40f;
  }
  .mobile-plan-tab.active.platinum {
    border-bottom-color: #9b59b6;
    animation: mobile-platinum-glow 2s ease-in-out infinite alternate;
  }

  @keyframes mobile-platinum-glow {
    from {
      box-shadow: 0 0 5px #9b59b6;
    }
    to {
      box-shadow: 0 0 15px #9b59b6, 0 0 25px #9b59b6;
    }
  }

  .mobile-plan-tab i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .mobile-plan-tab h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: bold;
  }

  .mobile-plan-tab .plan-subtitle {
    font-size: 0.7rem;
    opacity: 0.8;
    margin: 0;
  }

  /* Mobile Plan Content Area */
  .mobile-plan-content {
    background-color: var(--background-color);
    border-radius: 0 0 15px 15px;
    padding: 1.5rem;
    min-height: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .mobile-plan-panel {
    display: none;
  }

  .mobile-plan-panel.active {
    display: block;
    animation: slideInUp 0.3s ease-out;
  }

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

  /* Service Categories in Mobile */
  .mobile-service-category {
    margin-bottom: 1.5rem;
  }

  .mobile-service-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--secondary-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .mobile-service-category h4 i {
    color: var(--secondary-color);
  }

  .mobile-service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .mobile-service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
  }

  .mobile-service-item.included {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-left-color: #27ae60;
    box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
  }

  .mobile-service-item.not-included {
    background: linear-gradient(135deg, #f8d7da, #f1b0b7);
    border-left-color: #e74c3c;
    opacity: 0.7;
  }

  .mobile-service-item.premium-feature {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left-color: #f39c12;
    position: relative;
  }

  .mobile-service-item.premium-feature::after {
    content: "⭐";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite alternate;
  }

  @keyframes sparkle {
    from {
      transform: translateY(-50%) scale(1) rotate(0deg);
    }
    to {
      transform: translateY(-50%) scale(1.1) rotate(180deg);
    }
  }

  .mobile-service-item i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
  }

  .mobile-service-item .service-content {
    flex: 1;
  }

  .mobile-service-item .service-text {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
  }

  .mobile-service-item .frequency {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
  }

  /* Mobile CTA Section */
  .mobile-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 3px solid var(--secondary-color);
    text-align: center;
  }

  .mobile-plan-cta {
    display: block;
    width: 100%;
    padding: 1.25rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: url("../images/hammer.svg") 8 16, pointer;
    border: 3px solid transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
  }

  .mobile-plan-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s;
  }

  .mobile-plan-cta:hover::before {
    left: 100%;
  }

  .mobile-plan-cta.basic {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: var(--background-color);
  }

  .mobile-plan-cta.silver {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: var(--background-color);
  }

  .mobile-plan-cta.gold {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: var(--primary-color);
  }

  .mobile-plan-cta.platinum {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: var(--background-color);
    animation: platinum-pulse 3s ease-in-out infinite;
  }

  @keyframes platinum-pulse {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
  }

  /* Compare All Plans Button */
  .mobile-compare-toggle {
    margin: 2rem 0;
    text-align: center;
  }

  .compare-all-btn {
    background: linear-gradient(
      135deg,
      var(--secondary-color),
      var(--primary-color)
    );
    color: var(--background-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  .compare-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  .compare-all-btn i {
    margin-left: 0.5rem;
  }
}

/* Calendar Row */
.calendar-row {
  display: flex;
  justify-content: center;
  margin: 2rem 0 1.5rem 0;
}
.calendar-months {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.calendar-months li {
  text-align: center;
}
.calendar-months a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  border-radius: 10%;
  width: 4.3rem;
  height: 4.3rem;
  justify-content: center;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  transition: border 0.2s, background 0.2s;
  position: relative;
}
.calendar-months a:hover,
.calendar-months a:focus {
  border: 2px solid #4caf50;
  background: #e8f5e9;
}
.calendar-months i {
  font-size: 2.1rem;
  line-height: 2.1rem;
}
.checkmark {
  font-size: 1rem;
  position: absolute;
  bottom: 0.2rem;
  right: 0.3rem;
}

/* Terms & Condish */
.terms-container {
  max-width: 600px;
  margin: 0 auto 2em;
}

#terms-box {
  text-align: left;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 1em;
  height: 150px;
  overflow-y: auto;
  background: #fafafa;
  font-size: 0.95em;
  color: #000;
}

/* Pricing Rows */
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  align-items: center;
  min-height: 80px;
}

.pricing-row .service-label {
  padding: 10px 0;
}

.pricing-row .service-label h4 {
  font-size: 1.2rem;
  margin: 0 0 5px 0;
  color: #2c3e50;
  font-weight: 600;
}

.pricing-row .pricing-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #6c757d;
  font-style: italic;
}

.pricing-row .plan-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 5px;
}

.monthly-price,
.annual-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

.price-period {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 2px 0 0 0;
}

.price-unavailable {
  font-size: 1.2rem;
  color: #95a5a6;
  font-weight: 600;
}

.price-note {
  font-size: 0.8rem;
  color: #6c757d;
  font-style: italic;
  margin: 2px 0 0 0;
}

.savings-badge {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 4px;
  box-shadow: 0 2px 4px rgba(46, 204, 113, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for pricing rows */
@media (max-width: 768px) {
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
    text-align: center;
  }

  .pricing-row .service-label {
    text-align: center;
    margin-bottom: 10px;
  }

  .mobile-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 10px;
  }

  .pricing-row .plan-cell {
    padding: 8px 4px;
  }

  .monthly-price,
  .annual-price {
    font-size: 1.4rem;
  }
}

/* Mobile Pricing Rows */
.mobile-pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 12px 8px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  align-items: center;
}

.mobile-pricing-row.annual {
  background: #e8f5e9;
}

.mobile-pricing-row .mobile-service-name {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.2;
}

.mobile-pricing-row .mobile-service-name small {
  color: #6c757d;
  font-size: 0.7rem;
  font-style: italic;
  font-weight: normal;
  display: block;
  margin-top: 2px;
}

.mobile-pricing-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3px 2px;
  min-height: 35px;
  justify-content: center;
}

.mobile-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.1;
}

.mobile-price-period {
  font-size: 0.7rem;
  color: #6c757d;
  margin: 1px 0 0 0;
  line-height: 1;
}

.mobile-price-unavailable {
  font-size: 0.85rem;
  color: #95a5a6;
  font-weight: 600;
  line-height: 1.1;
}

.mobile-price-note {
  font-size: 0.6rem;
  color: #6c757d;
  font-style: italic;
  margin: 1px 0 0 0;
  line-height: 1;
}

.mobile-savings {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 1px 4px;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  margin-top: 2px;
  box-shadow: 0 1px 2px rgba(46, 204, 113, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
}

/* Plan Signup Form Styles */
.plan-signup-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem 0;
}

.plan-signup-header h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.plan-signup-header p {
  color: #666;
  font-size: 1.1rem;
}

.signup-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.form-section {
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

.terms-container {
  margin-top: 1rem;
}

.terms-box {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  max-height: 300px;
  overflow-y: auto;
  background: #f9f9f9;
  margin-bottom: 1rem;
}

.terms-box h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.terms-box h4 {
  color: var(--primary-color);
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.terms-box p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

.terms-footer {
  font-weight: 600;
  color: var(--primary-color);
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  margin-top: 1rem;
}

.terms-agreement {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #f0f7ff;
  border-radius: 8px;
  border: 2px solid #ddd;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 0.75rem;
  transform: scale(1.2);
}

.checkbox-label input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.payment-selection {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  text-align: center;
}

.payment-selection h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.payment-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.payment-option {
  background: white;
  border: 3px solid transparent;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  width: 100%;
}

.payment-option:not(.disabled):hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.payment-option.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f5f5f5;
}

.payment-option.unavailable {
  background: #ffeaea;
  border-color: #ff6b6b;
}

.monthly-option:not(.disabled):not(.unavailable) {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, #ffffff, #f0f8ff);
}

.monthly-option:not(.disabled):not(.unavailable):hover {
  border-color: #2980b9;
  background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
}

.annual-option:not(.disabled) {
  border-color: #27ae60;
  background: linear-gradient(135deg, #ffffff, #f0fff4);
}

.annual-option:not(.disabled):hover {
  border-color: #1e8449;
  background: linear-gradient(135deg, #f0fff4, #e8f5e9);
}

.payment-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.payment-option h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.payment-description {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.payment-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.payment-option.disabled .payment-price {
  color: #999;
}

.savings-highlight {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-top: 8px;
  box-shadow: 0 2px 6px rgba(46, 204, 113, 0.3);
}

.payment-option.disabled .savings-highlight {
  background: #ccc;
  color: #666;
  box-shadow: none;
}

.coming-soon-note {
  font-size: 0.8rem;
  color: #6c757d;
  font-style: italic;
  margin-top: 8px;
}

.payment-option.coming-soon {
  background: #f8f9fa;
  border-color: #dee2e6;
}

.payment-option.coming-soon .payment-price {
  color: #6c757d;
  font-weight: 600;
}

.payment-option.coming-soon .payment-icon {
  opacity: 0.6;
}

/* Loading spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .form-section {
    padding: 1.5rem;
  }

  .payment-buttons {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .payment-option {
    padding: 1.5rem;
  }

  .terms-box {
    max-height: 200px;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .signup-form-container {
    padding: 0 0.5rem;
  }

  .form-section {
    padding: 1rem;
  }

  .payment-selection {
    padding: 1rem;
  }
}
