/* ==========================================================================
   CSS Reset - Modern alternative to normalize.css
   ========================================================================== */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Remove default margin and padding */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
figure,
figcaption,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements */
ul,
ol {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

:root {
  --primary-orange: #ff6b35;
  --secondary-orange: #ff9f1c;
  --bg-color: #fff4e6;
  --bg-color-2: #ffe9cd;
  --bg-color-3: #ffe1ba;
  --text-dark: #2c2c2c;
  --text-light: #505050;
  --card-bg: white;
  --card-shadow: rgba(255, 107, 53, 0.1);
  --grid-color: #ff6b35;
  --grid-size: 50px;
  --mobile-menu-bg: #f8f9fa;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Base Typography
   ========================================================================== */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #333;
  background-color: #fff;
}

/* Heading sizes */
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

/* Container class for centered content with max-width */
.container {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Fluid container for full-width sections */
.container-fluid {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Flex utility classes */
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

/* Grid utility */
.grid {
  display: grid;
}

/* Spacing utilities */
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 1rem;
}
.p-4 {
  padding: 1.5rem;
}
.p-5 {
  padding: 3rem;
}

/* Text utilities */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 1300px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
/* @media (min-width: 1200px) {
  .container {
    max-width: 1500px;
  }
} */

/* ==========================================================================
   Helper Classes
   ========================================================================== */

/* Screen reader only - for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Hide visually but keep in DOM for screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--bg-color-3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  /* color: var(--secondary-color); */
  width: 200px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

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

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.login-btn {
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  border-radius: 4px;
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.signup-btn {
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  border-radius: 4px;
  color: var(--primary-color);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  min-height: 95vh;
  background-color: var(--mobile-menu-bg);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-menu-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.mobile-menu-links a:hover {
  color: var(--primary-color);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.mobile-menu-actions .login-btn,
.mobile-menu-actions .signup-btn {
  width: 100%;
  text-align: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar {
    padding: 1rem;
  }

  .logo img {
    /* color: var(--secondary-color); */
    width: 150px;
  }
}

/* Animation for menu toggle */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* Hero Section Start */

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem;
  padding-top: 6rem;
}

/* Random Shape Styles */
.shape {
  position: absolute;
  opacity: 0.3;
  z-index: 1;
}

.shape-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  border-radius: 50% 0 50% 0;
  top: 10%;
  left: 5%;
  transform: rotate(45deg);
}

.shape-2 {
  width: 200px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--secondary-orange),
    var(--primary-orange)
  );
  border-radius: 100px / 50px;
  top: -50px;
  right: 10%;
  transform: rotate(-30deg);
}

.shape-3 {
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: 20%;
  left: -50px;
  transform: rotate(15deg);
}

.shape-4 {
  width: 180px;
  height: 180px;
  background: linear-gradient(
    135deg,
    var(--secondary-orange),
    var(--primary-orange)
  );
  border-radius: 0 50% 0 50%;
  bottom: 10%;
  right: 5%;
  transform: rotate(-45deg);
}

.shape-5 {
  width: 140px;
  height: 140px;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  clip-path: circle(50% at center);
  top: 30%;
  right: 20%;
  transform: rotate(60deg);
}

.shape-6 {
  width: 220px;
  height: 110px;
  background: linear-gradient(
    225deg,
    var(--secondary-orange),
    var(--primary-orange)
  );
  border-radius: 0 100px 0 100px;
  top: 50%;
  left: 15%;
  transform: skew(-15deg);
}

.shape-7 {
  width: 160px;
  height: 160px;
  background: linear-gradient(
    315deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  clip-path: polygon(
    20% 0%,
    80% 0%,
    100% 20%,
    100% 80%,
    80% 100%,
    20% 100%,
    0% 80%,
    0% 20%
  );
  bottom: 30%;
  right: 25%;
  transform: rotate(22deg);
}

.shape-8 {
  width: 130px;
  height: 180px;
  background: linear-gradient(
    90deg,
    var(--secondary-orange),
    var(--primary-orange)
  );
  border-radius: 60px 0 60px 0;
  top: 20%;
  left: 30%;
  transform: rotate(-10deg);
}

.shape-9 {
  width: 200px;
  height: 100px;
  background: linear-gradient(
    180deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  clip-path: ellipse(50% 25% at 50% 50%);
  bottom: 15%;
  right: 15%;
  transform: rotate(5deg);
}

.shape-10 {
  width: 170px;
  height: 170px;
  background: linear-gradient(
    270deg,
    var(--secondary-orange),
    var(--primary-orange)
  );
  border-radius: 0 0 100% 0;
  top: 60%;
  left: 10%;
  transform: rotate(75deg);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 2rem;
}

.hero-text-container {
  flex: 1;
  max-width: 500px;
  z-index: 3;
}

.badge {
  display: inline-block;
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--primary-orange);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.hero-title {
  /* font-size: 3rem; */
  color: #2c2c2c;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.125rem;
  color: #505050;
  margin-bottom: 2rem;
}

.btn-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-orange);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: end;
  align-items: center;
  z-index: 3;
}

.hero-image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 2rem 1rem;
    padding-top: 6rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text-container,
  .hero-image-container {
    max-width: 100%;
  }

  .btn-container {
    justify-content: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .shape {
    display: none;
  }
}

/* Hero Section End */

/* About Section start */
.about {
  background-color: var(--bg-color-2);
  padding: 6rem 2rem;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-grid-content {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about-content-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.icon-text {
  display: flex;
  gap: 1rem;
}

.about-content-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary-orange);
}

.card-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  gap: 0.5rem;
  transition: transform 0.2s ease;
}

.card-link:hover {
  transform: translateX(5px);
}

.card-link svg {
  stroke: var(--primary-orange);
}

@media screen and (max-width: 768px) {
  .about {
    padding: 4rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-grid-content {
    grid-template-columns: 1fr;
  }

  .icon-text {
    flex-direction: column;
  }
}
/* About Section end */

/* Services Section Start */

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.services {
  background-color: var(--bg-color);
  padding: 6rem 2rem;
  overflow: hidden;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  perspective: 1000px;
}

.service-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 107, 53, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  transform: scale(1.05) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
  display: inline-block;
}

.service-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
  position: relative;
}

.service-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-orange);
  transition: width 0.3s ease;
}

.service-card:hover .service-title::after {
  width: 100%;
}

.service-description {
  color: var(--text-light);
  line-height: 1.6;
  flex-grow: 1;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-orange);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.cta-button:hover {
  background-color: var(--secondary-orange);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

@media screen and (max-width: 768px) {
  .services {
    padding: 4rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

/* Services Section End */

/* Who we help section Start */

.who {
  position: relative;
  background-color: var(--bg-color-2);
  padding: 4rem 0;
  overflow: hidden;
}

.who-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.who-image-container {
  flex: 1 1 40%;
  min-width: 300px;
  animation: float 6s ease-in-out infinite;
}

.who-image-container img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.who-text-container {
  flex: 1 1 50%;
  min-width: 300px;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.help-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px var(--card-shadow);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.help-card:nth-child(1) {
  animation-delay: 0.1s;
}
.help-card:nth-child(2) {
  animation-delay: 0.2s;
}
.help-card:nth-child(3) {
  animation-delay: 0.3s;
}
.help-card:nth-child(4) {
  animation-delay: 0.4s;
}
.help-card:nth-child(5) {
  animation-delay: 0.5s;
}

.help-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.help-card:hover .card-icon {
  transform: scale(1);
}

.help-card h3 {
  color: var(--primary-orange);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.help-card p {
  color: var(--text-light);
  line-height: 1.5;
}

.cta-container {
  text-align: center;
  margin-top: 2rem;
  animation: fadeIn 1s forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.cta-text {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

/* Shape decorations */
.shape {
  position: absolute;
  background-color: var(--secondary-orange);
  opacity: 0.1;
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  animation: pulse 8s infinite alternate;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
  animation: pulse 6s infinite alternate-reverse;
}

.shape-9 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 10%;
  animation: pulse 7s infinite;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .who-content {
    flex-direction: column;
  }

  .who-image-container {
    order: 2;
  }

  .section-title {
    font-size: 2rem;
  }

  .help-cards {
    grid-template-columns: 1fr;
  }
}
/* Who we help section End */

/* Pricing section start */

.pricing {
  position: relative;
  background-color: var(--bg-color);
  padding: 5rem 0;
  overflow: hidden;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pricing-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 53, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary-orange);
}

.feature-icon {
  font-size: 1.2rem;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px var(--shadow-color);
  position: relative;
  transition: all 0.4s ease;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
  z-index: 1;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.2s;
}
.pricing-card:nth-child(2) {
  animation-delay: 0.4s;
}
.pricing-card:nth-child(3) {
  animation-delay: 0.6s;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--hover-shadow);
}

.pricing-card.featured {
  border: 2px solid var(--primary-orange);
  transform: translateY(0);
  animation: pulseFeatured 2s infinite alternate, fadeInUp 0.6s forwards;
  animation-delay: 0s, 0.4s;
}

.card-header {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

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

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price span {
  font-size: 1rem;
  font-weight: normal;
  color: var(--text-light);
}

.card-body {
  margin-bottom: 2rem;
}

.card-body p {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.features-list li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 1.5rem;
}

.features-list li::before {
  content: "✓";
  color: var(--secondary-orange);
  font-weight: bold;
  position: absolute;
  left: 0;
}

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

.plan-button {
  display: inline-block;
  background: var(--primary-orange);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
  border: none;
}

.plan-button:hover {
  background: var(--secondary-orange);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.popular-tag {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--secondary-orange);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.original-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 0.3rem;
}

.discount-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary-orange);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}

.pricing-card:has(.discount-tag) .popular-tag {
  right: auto;
  left: 20px;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-3 {
  width: 250px;
  height: 250px;
  top: 50px;
  right: -100px;
  background-color: var(--primary-orange);
  opacity: 0.08;
  animation: rotate 20s linear infinite;
}

.shape-4 {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: -50px;
  background-color: var(--secondary-orange);
  opacity: 0.1;
  animation: pulse 8s infinite alternate;
}

/* Modal styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
  padding: 2rem 0;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: white;
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal {
  transform: translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  text-align: center;
}

.plan-selector {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  background-color: #f1f3f5;
  border-radius: 50px;
  padding: 0.3rem;
}

.plan-option {
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.plan-option.active {
  background-color: var(--primary-orange);
  color: white;
}

.plan-details {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}

.plan-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price-period {
  font-size: 1rem;
  color: var(--text-light);
}

.total-price {
  text-align: center;
  background-color: rgba(255, 107, 53, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.total-amount {
  font-weight: 700;
  color: var(--primary-orange);
}

.discount-info {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Subscription form styles */
.subscription-form {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.subscription-form h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 1.3rem;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"] {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--primary-orange);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: var(--primary-orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-agreement {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-agreement input[type="checkbox"] {
  margin-top: 0.3rem;
}

.form-agreement label {
  font-size: 0.9rem;
  font-weight: normal;
}

.modal-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.modal-button {
  background: var(--primary-orange);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.modal-button:hover {
  background: var(--secondary-orange);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.success-message {
  margin: 20px 0;
  line-height: 1.5;
  text-align: center;
}

#confirmationName {
  font-weight: bold;
}

.team-signature {
  margin-top: 15px;
  text-align: center;
  font-style: italic;
  color: #666;
}

#doneButton {
  background-color: #4caf50;
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  margin: 15px 0;
  letter-spacing: 0.5px;
}

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

@keyframes pulseFeatured {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.2);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .pricing-cards {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
    animation: fadeInUp 0.6s forwards;
  }

  .modal {
    max-height: 80vh;
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .plan-selector {
    flex-direction: column;
    gap: 0.5rem;
    background-color: transparent;
  }

  .plan-option {
    border-radius: 50px;
    background-color: #f1f3f5;
  }

  .modal {
    padding: 1.5rem;
  }
}

.progress-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.progress-indicator::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-orange);
  z-index: 1;
}

.progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.progress-step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid gray;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.progress-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  transition: all 0.3s ease;
}

.progress-item.active .progress-step {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: white;
}

.progress-item.active .progress-label {
  color: var(--primary-orange);
  font-weight: bold;
}

.progress-item.completed .progress-step {
  background-color: var(--secondary-orange);
  border-color: var(--secondary-orange);
  color: white;
}

.progress-item.completed .progress-label {
  color: var(--secondary-orange);
}

/* Step navigation */
.step-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.back-button {
  background-color: #f1f3f5;
  color: var(--text-dark);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-button:hover {
  background-color: #e9ecef;
}

.next-button {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.next-button:hover {
  background-color: var(--secondary-orange);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Success step */
.success-step {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  font-size: 4rem;
  color: var(--secondary-orange);
  margin-bottom: 1rem;
}

.success-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.success-message {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.step-container {
  display: none;
}
/* 

/* Additional CSS for discount styling */
.original-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 0.3rem;
}

.discount-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary-orange);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Adjust the popular tag positioning when discount is present */
.pricing-card:has(.discount-tag) .popular-tag {
  right: auto;
  left: 20px;
}

/* Shapes */
.shape-3 {
  width: 250px;
  height: 250px;
  top: 50px;
  right: -100px;
  background-color: var(--primary-orange);
  opacity: 0.08;
  animation: rotate 20s linear infinite;
}

.shape-4 {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: -50px;
  background-color: var(--secondary-orange);
  opacity: 0.1;
  animation: pulse 8s infinite alternate;
}

/* Animations */
@keyframes pulseFeatured {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.2);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-cards {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1) !important;
    animation: fadeInUp 0.6s forwards;
  }
}
*/
/* Pricing section end */

/* Get started start */
.get-started {
  position: relative;
  background-color: white;
  padding: 5rem 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInRight 0.6s forwards;
  z-index: 1;
  transition: all 0.3s ease;
  text-decoration: none;
}

.step-card:nth-child(1) {
  animation-delay: 0.2s;
}
.step-card:nth-child(2) {
  animation-delay: 0.4s;
}
.step-card:nth-child(3) {
  animation-delay: 0.6s;
}

.step-card:hover {
  transform: translateX(0) scale(1.02) !important;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
  text-decoration: none;
}

.step-number {
  font-size: 2rem;
  line-height: 1;
  background: rgba(255, 107, 53, 0.1);
  padding: 0.8rem;
  border-radius: 50%;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  background: rgba(255, 107, 53, 0.2);
  transform: scale(1.1);
}

.step-content h3 {
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  left: 40px;
  top: 100%;
  height: 40px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary-orange),
    var(--secondary-orange)
  );
  opacity: 0.3;
}

.cta-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 0.6s forwards;
  animation-delay: 0.8s;
}

.cta-content {
  background: var(--bg-color);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.cta-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.cta-content h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Shapes */
.shape-5 {
  width: 200px;
  height: 200px;
  top: 100px;
  left: -50px;
  background-color: var(--primary-orange);
  opacity: 0.05;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite;
}

.shape-6 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
  background-color: var(--secondary-orange);
  opacity: 0.05;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 12s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-connector {
    left: 50%;
    transform: translateX(-50%);
    height: 30px;
  }

  .step-number {
    margin-bottom: 1rem;
  }

  .cta-content {
    padding: 2rem 1.5rem;
  }
}
/* Get started end */

.contact-cta {
  position: relative;
  background: linear-gradient(135deg, var(--bg-color), var(--bg-color-2));
  color: var(--text-dark);
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

.contact-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-cta .section-title {
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.contact-cta .section-title::after {
  background: white;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  flex: 1 1 200px;
  max-width: 250px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-method h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-method p {
  opacity: 1;
}

/* Add this CSS to your existing stylesheet */

.social-links-container {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.social-links-container h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-color);
  color: var(--primary-orange);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  transform: translateY(-5px);
  background: var(--primary-orange);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Animation for social links */
.social-link {
  opacity: 0;
  transform: translateY(20px);
  animation: socialFadeIn 0.5s forwards;
}

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

.social-link:nth-child(1) {
  animation-delay: 0.1s;
}
.social-link:nth-child(2) {
  animation-delay: 0.2s;
}
.social-link:nth-child(3) {
  animation-delay: 0.3s;
}
.social-link:nth-child(4) {
  animation-delay: 0.4s;
}
.social-link:nth-child(5) {
  animation-delay: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-links {
    gap: 1rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .social-links-container {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-icon {
    width: 18px;
    height: 18px;
  }
}

/* Footer Styles */
.site-footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 0;
}

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

.footer-col h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-orange);
}

.footer-about p {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.footer-services li {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-links a:hover,
.footer-services li:hover {
  color: white;
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1 1 200px;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  flex: 1 1 100px;
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--secondary-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.copyright {
  opacity: 0.7;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: white;
}

/* Shapes */
.shape-7 {
  width: 150px;
  height: 150px;
  top: -50px;
  left: -50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite;
}

.shape-8 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morph 12s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-method {
    max-width: 100%;
    width: 100%;
  }

  .footer-col {
    margin-bottom: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  animation: pulse 2s infinite;
  z-index: 1000;
}

.whatsapp-btn svg {
  width: 25px;
  height: 25px;
  fill: white;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Optional hover effect */
.whatsapp-btn:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Main Website Section Styles */
.main-site {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: #f9fafb;
}

.main-site-header {
  text-align: center;
  margin-bottom: 50px;
}

.main-site-content {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  position: relative;
  z-index: 1;
}

.main-site-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-site-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.main-site-image:hover img {
  transform: scale(1.02);
}

.main-site-info {
  flex: 1;
  padding: 20px;
}

.main-site-info h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.main-site-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.main-site-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 99, 255, 0.1);
  border-radius: 50%;
  color: #7d63ff;
}

.feature-text {
  font-weight: 500;
}

.main-site-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7d63ff 0%, #5a41e6 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(125, 99, 255, 0.3);
}

.main-site-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(125, 99, 255, 0.4);
}

.main-site-button .icon-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.main-site-button:hover .icon-arrow {
  transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .main-site-content {
    flex-direction: column;
    padding: 30px;
  }

  .main-site-image,
  .main-site-info {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .main-site {
    padding: 60px 0;
  }

  .main-site-features {
    grid-template-columns: 1fr;
  }
}

/* Flash Advert Section */
.flash-advert {
  background: var(--bg-color-3);
  color: rgb(0, 0, 0);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.flash-advert::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 1;
}

.flash-advert-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.flash-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: rgb(0, 0, 0);
}

.flash-subhead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.flash-features-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.flash-features {
  text-align: left;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.flash-features h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: rgb(0, 0, 0);
}

.flash-features ul {
  list-style: none;
  padding: 0;
}

.flash-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.flash-cta {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.flash-button {
  display: inline-block;
  background-color: #ff6b00;
  color: white;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  margin-right: 10px; /* space between buttons */
}

.flash-button:hover {
  background-color: #ff8c00;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.flash-button:last-child {
    margin-right: 0; /* remove space after the last one */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .flash-features-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .flash-title {
    font-size: 1.8rem;
  }

  .flash-subhead {
    font-size: 1.1rem;
    text-align: start;
  }

  .flash-features ul {
    width: 380px;
  }
}
