* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --primary-color: #1ba0de;
  --secondary-color: #59b054;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #111;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 25%,
    rgba(255, 255, 255, 0) 75%,
    rgba(255, 255, 255, 1) 100%
  );
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none !important;
}

.navbar .logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.navbar nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.navbar nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar nav a:hover {
  color: var(--secondary-color);
}

.navbar nav a.cta {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar nav a.cta:hover {
  filter: drop-shadow(0 0px 20px rgba(33, 155, 255, 0.747));
  scale: 105%;
}

/* Logo */
.navbar .logo img {
  height: 80px;
  transition: all 0.3s;
}

.navbar .logo img:hover {
  scale: 105%;
}


/* HERO */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content,
.hero-image {
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #000;
}

/* Center the hero image below the buttons and keep spacing responsive */
.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  display: block;
  width: 80px;
  max-width: 80%;
  height: auto;
  margin-top: 100px;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    gap: 20px;
  }

  .hero-image img {
    width: 56px;
    max-width: 24%;
  }
}

.hero-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-image {
  margin-top: 120px;
  width: 100px;
  height: 100px;
}

.button {
  display: inline-block;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: none;
  transition: all 0.3s ease;
}

.button:hover {
  filter: drop-shadow(0 0px 20px rgba(33, 155, 255, 0.747));
  scale: 105%;
}

.scroll-top-button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
  z-index: 150;
}

.scroll-top-button:hover {
  transform: translateY(0px) scale(1.05);
  scale: 105%;
  filter: drop-shadow(0 0px 10px rgba(33, 155, 255, 0.747));
}

.scroll-top-button.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

/* CLIENTS */
.clients {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.clients h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #000;
}

.clients > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 60px;
  font-size: 16px;
}

.clients-grid {
  overflow: hidden;
  padding: 30px 0;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 15%,
    rgba(0, 0, 0, 1) 85%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 15%,
    rgba(0, 0, 0, 1) 85%,
    rgba(0, 0, 0, 0) 100%
  );
}

.clients-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  width: max-content;
  animation: scrollClients 60s linear infinite;
}

.client-logo {
  flex: 0 0 auto;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.client-logo:hover {
  transform: scale(1.15);
}

.client-logo img {
  display: flex;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 75%;
  height: auto;
  opacity: 0.75;
  filter: grayscale(20%);
}

.client-logo:hover img {
  opacity: 1;
}

@media (max-width: 1024px) {
  .clients-grid {
    gap: 30px;
    animation-duration: 35s;
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 12%,
      rgba(0, 0, 0, 1) 25%,
      rgba(0, 0, 0, 1) 75%,
      rgba(0, 0, 0, 0.4) 88%,
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 12%,
      rgba(0, 0, 0, 1) 25%,
      rgba(0, 0, 0, 1) 75%,
      rgba(0, 0, 0, 0.4) 88%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .client-logo {
    min-width: 140px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .clients-grid {
    gap: 20px;
    animation-duration: 28s;
    padding: 20px 0;
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 15%,
      rgba(0, 0, 0, 1) 30%,
      rgba(0, 0, 0, 1) 70%,
      rgba(0, 0, 0, 0.4) 85%,
      rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 15%,
      rgba(0, 0, 0, 1) 30%,
      rgba(0, 0, 0, 1) 70%,
      rgba(0, 0, 0, 0.4) 85%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .client-logo {
    min-width: 110px;
    height: 80px;
  }

  .client-logo:hover {
    transform: scale(1.1);
  }
}

/* ACTIVITIES */
.activities {
  padding: 80px 20px;
}

.activities h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #000;
}

.activities h3 {
  margin-top: 15px;
}

.activities > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 60px;
  font-size: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.activity-card {
  background-color: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
}

.activity-card:hover {
  scale: 103%;
  box-shadow: 0 0px 20px rgba(33, 155, 255, 0.747);
  transform: translateY(-5px);
}

.activity-image {
  height: 200px;
  background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
  overflow: hidden; /* important */
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.activity-card h3 {
  font-size: 20px;
  font-weight: 700;
  padding: 0 20px;
  margin-bottom: 10px;
  color: #000;
}

.activity-card p {
  padding: 0 20px 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* PROCESS */
.process {
  padding: 80px 20px;
  background: linear-gradient(180deg, white 0%, var(--primary-color) 25%);
}

.process h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.process > .container > p {
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
  font-size: 16px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  cursor: pointer;
}

.step {
  padding: 30px;
}

.step-number {
  display: inline-block;
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  opacity: 0.4;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.step p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.7;
}

/* FAQ */
.faq {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
}

.faq h2 {
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #000;
  letter-spacing: -0.5px;
}

.faq h3 {
  margin-top: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
  letter-spacing: -0.5px;
}

.faq > .container > a.button {
  display: block;
  width: fit-content;
  margin: 25px auto;
}

.faq > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 70px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(27, 160, 222, 0.12);
  transform: translateY(-2px);
}

.faq-item[open] {
  box-shadow: 0 8px 24px rgba(27, 160, 222, 0.15);
  border-color: var(--primary-color);
}

.faq-item summary {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
  list-style-type: none;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-item summary:hover {
  background-color: #f8fafb;
}

.faq-item:focus-within summary {
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 16px;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  background: linear-gradient(135deg, var(--primary-color) 0%, #00a8e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(90deg);
}

.faq-item p {
  color: #4a5568;
  font-size: 15px;
  margin: 0;
  padding: 0 32px 28px 32px;
  line-height: 1.65;
  animation: faqContentExpand 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  font-weight: 400;
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 20px;
  }

  .faq h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .faq > .container > p {
    font-size: 15px;
    margin-bottom: 50px;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-item summary {
    padding: 20px 24px;
    font-size: 15px;
  }

  .faq-item p {
    padding: 0 24px 20px 24px;
    font-size: 14px;
  }

  .faq-item summary::after {
    width: 20px;
    height: 20px;
    margin-left: 12px;
  }
}

/* NEWS */
.news {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.news h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #000;
}

.news > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 60px;
  font-size: 16px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.news-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.news-image {
  height: 250px;
  background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
  overflow: hidden; /* important */
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card h3 {
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  color: #000;
}

.news-card p {
  padding: 0 20px 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.social-links {
  text-align: center;
}

.social-links a {
  display: inline-block;
  margin: 0 15px;
  padding: 0px 20px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.social-links a img {
  margin-top: 15px;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

/* FOOTER */
.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.logo_footer img {
  height: 80px;
  margin-bottom: 15px;
}

.footer-section p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  
  .navbar nav {
    gap: 20px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .activities-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* PAGE HERO */
.page-hero {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, white 0%, var(--primary-color) 25%);
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .hero-content h1 {
  font-size: 48px;
  color: #ffffff;
}

.page-hero .hero-content p {
  color: #ffffff;
}

/* PAGE HERO Contact */
.page-hero-contact {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, white 0%, var(--primary-color) 25%);
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.page-hero-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.page-hero-contact .hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-contact .hero-content h1 {
  font-size: 48px;
  color: #ffffff;
}

.page-hero-contact .hero-content p {
  color: #ffffff;
}


/* ABOUT SECTION */
.about-section {
  padding: 80px 20px;
}

.about-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.about-section > .container > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
  max-width: 700px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s;
}

.about-card:hover {
  border-color: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.about-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.about-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

/* CONTACT SECTION */
.buttonsend{
  display: inline-block;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: none;
  transition: all 0.3s ease;
}

.buttonsend:hover {
  filter: drop-shadow(0 0px 5px rgba(33, 155, 255, 0.747));
  scale: 102%;
}

.contact-section {
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form h2,
.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Styled select like .button */
.form-group select.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23fff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select.button:hover {
  filter: drop-shadow(0 0px 20px rgba(33, 155, 255, 0.747));
  scale: 102%;
}

.form-group select.button:focus {
  outline: none;
  box-shadow: 0 10px 30px rgba(33,155,255,0.2);
  transform: translateY(-1px);
}

.contact-info {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
}

.info-block {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

#social img {
width: 5vh;
height: 5vh;
display: inline-block;
padding-right: 2vh;
object-fit: contain;
transition: all 0.3s ease;
}

#social img:hover {
scale: 110%;
}

.info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.info-block p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.info-block a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.info-block a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    padding: 20px;
  }
  
  .page-hero .hero-content h1 {
    font-size: 36px;
  }
}

/* Styled select .buttonform */
select.buttonform {
    width: 100%;
    padding: 14px 18px;
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: var(--primary-color);
    color: #fff;

    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;

    transition: all 0.3s ease;
}

select.buttonform:hover {
    scale: 102%;
}

select.buttonform:focus,
select.buttonform:active {
    background-color: var(--primary-color);
    color: #fff;
    outline: none;
    box-shadow: none;
}

select.buttonform option {
    background: #fff;
    color: #333;
}

#charCount {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    text-align: right;
}

/* SERVICE DETAIL PAGES */
.service-detail {
  padding: 80px 20px;
}

.service-intro {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-intro h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.service-intro p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.service-features {
  margin-bottom: 80px;
}

.service-features h3 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #000;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(27, 160, 222, 0.12);
  transform: translateY(-5px);
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* NOTIFICATIONS - MODERN TOAST NOTIFICATIONS */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  animation: slideIn 0.3s ease-out;
  max-width: 400px;
}

.notification.show {
  animation: slideIn 0.3s ease-out;
}

.notification:not(.show) {
  animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.notification-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.notification-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.notification-warning {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
}

.notification-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.notification-message {
  flex-grow: 1;
}

.notification-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
  color: inherit;
}

.notification-close:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
}

.service-gallery {
  margin-bottom: 80px;
}

.service-gallery h3 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0px 20px rgba(33, 155, 255, 0.747);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-item p {
  padding: 15px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-align: center;
}

.service-process {
  margin-bottom: 80px;
}

.service-process h3 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #000;
}

.process-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* SERVICE PROCESS SECTION STEPS */
.service-process-section .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-process-section .step {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.service-process-section .step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(27, 160, 222, 0.15);
  border-left-color: var(--secondary-color);
}

.service-process-section .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(27, 160, 222, 0.3);
}

.service-process-section .step h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.service-process-section .step p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.service-cta {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  border-radius: 12px;
}

.service-cta h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.service-cta p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* SECTION STYLING WITH BACKGROUNDS */
.service-features-section {
  background-color: #fdfdfd;
  padding: 80px 20px;
}

.service-process-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.service-gallery-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-color) 100%);
}

.service-cta-section {
  padding: 60px 20px;
  background:  #ffffff;
}

.service-cta-section .service-cta {
  background: transparent;
  padding: 0;
}

@media (max-width: 768px) {
  .service-detail {
    padding: 60px 20px;
  }

  .service-intro h2 {
    font-size: 28px;
  }

  .service-features h3,
  .service-gallery h3,
  .service-process h3 {
    font-size: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 250px;
  }

  .service-cta h3 {
    font-size: 24px;
  }
}