:root {
  --orange: #ff6b2b;
  --orange-light: #ff8f5a;
  --green: #2ecc71;
  --green-dark: #27ae60;
  --mid: #f5a623;
  --bg: #f7f8fc;
  --bg-card: #ffffff;
  --text: #1a1a2e;
  --text-soft: #5a6478;
  --border: rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --grad: linear-gradient(135deg, var(--orange) 0%, var(--mid) 45%, var(--green) 100%);
  --grad-subtle: linear-gradient(135deg, #fff5f0 0%, #fffdf0 50%, #f0fff8 100%);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --font-head: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --nav-h: 70px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: var(--font-body);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

input, textarea, button {
  border: none;
  font-family: var(--font-body);
  outline: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #febe04;
}

::-webkit-scrollbar-thumb:hover {
  background: #e0aa00;
}

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

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
}

.section-label {
  margin-bottom: 16px;
  border: 1px solid #fcbf05;
  border-radius: 50px;
  display: inline-block;
  padding: 6px 16px;
  color: #111010;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  background: #fcbf05;
}

.section-title {
  margin-bottom: 48px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.btn {
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-primary {
  color: #1a1a1a;
  background: linear-gradient(135deg, rgb(254, 190, 4) 0%, rgb(255, 214, 77) 100%);
  box-shadow: 0 8px 24px rgba(254, 190, 4, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgb(255, 214, 77) 0%, rgb(254, 190, 4) 100%);
  box-shadow: 0 12px 32px rgba(254, 190, 4, 0.45);
}

.btn-outline {
  border: 2px solid #febe04;
  color: #febe04;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: #febe04;
  color: #1a1a1a;
  background: #febe04;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(254, 190, 4, 0.35);
}

.btn.full-width {
  width: 100%;
  justify-content: center;
}

.navbar {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--nav-h);
  background: #fff;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  max-width: 1200px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: auto;
  height: 70px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .logo-img {
    height: 70px;
  }
}
.nav-menu {
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.nav-link {
  position: relative;
  border-radius: 50px;
  padding: 8px 16px;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 1.3rem;
  transition: var(--transition);
}

.nav-link:hover:not(.home-link), .nav-link.active:not(.home-link) {
  color: var(--orange);
}

.home-link {
  color: var(--text-soft) !important;
  background: rgba(0, 0, 0, 0) !important;
}

.hamburger {
  z-index: 1001;
  border-radius: var(--radius-sm);
  display: none;
  flex-direction: column;
  padding: 8px;
  gap: 5px;
  cursor: pointer;
  background: none;
}

.hamburger span {
  border-radius: 4px;
  width: 24px;
  height: 2.5px;
  display: block;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    z-index: 999;
    top: var(--nav-h);
    right: -100%;
    width: 260px;
    height: calc(100vh - var(--nav-h));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-card);
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-menu li {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    display: block;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  .nav-actions {
    display: none !important;
  }
  .mobile-actions {
    margin-top: 20px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding-top: 18px !important;
    gap: 12px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  }
  .mobile-actions .btn {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }
  .mobile-actions .btn-primary, .mobile-actions .btn-outline {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
}
.footer {
  padding: 80px 0 0;
  color: #fff;
  background: linear-gradient(rgba(10, 10, 20, 0.95), rgba(10, 10, 20, 0.98)), var(--grad);
}

.footer .container {
  margin: auto;
  width: 90%;
  max-width: 1200px;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer .footer-logo-img {
  width: auto;
  height: 60px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer .footer-brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17.5px;
  line-height: 1.7;
  max-width: 340px;
}

.footer h4 {
  position: relative;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer h4::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 10px;
  width: 36px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgb(254, 190, 4), rgb(255, 214, 77));
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 19px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
  transition: var(--transition);
}

.footer ul li a:hover {
  padding-left: 6px;
  color: #fff;
}

.footer .footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer .footer-contact-list li i {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 19px;
  background: rgba(255, 255, 255, 0.08);
}

.footer .footer-contact-list li span, .footer .footer-contact-list li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.footer .social-icons {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer .social-icons a {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 17px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

@media (max-width: 576px) {
  .footer .footer-brand {
    gap: 14px;
  }
  .footer .social-icons {
    margin-top: 8px;
    gap: 6px;
  }
  .footer .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}
.footer .footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer .footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  flex: 1;
  text-align: left;
}

.footer .footer-managed {
  margin: 0;
  color: #fff;
  font-size: 15px;
  text-align: right;
  white-space: nowrap;
}

.footer .footer-managed strong {
  color: #c9c6c6;
  font-weight: 700;
}

.footer .tripledots {
  color: #fcbf04;
  text-decoration: none;
}

.footer .tripledots:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .footer .footer-copy, .footer .footer-managed {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .footer {
    font-size: 20px;
    text-align: left;
  }
  .footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer h4::after {
    left: 9%;
    transform: translateX(-50%);
  }
  .footer .footer-contact-list li {
    justify-content: left;
    font-size: 20px;
  }
  .footer .social-icons {
    justify-content: left;
  }
  .footer .footer-brand p {
    margin-right: auto;
    margin-left: auto;
  }
}
.whatsapp-float {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 26px;
  background: #25d366;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 24px;
  min-height: 80vh;
  overflow: hidden;
  background: url("/images/hero_backgroundny.webp") center/cover no-repeat;
}

.hero::before {
  position: absolute;
  z-index: 1;
  content: "";
  inset: 0;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: linear-gradient(180deg, rgba(254, 190, 5, 0.92) 0%, rgba(255, 248, 230, 0.82) 45%, rgba(255, 255, 255, 0.78) 70%, rgba(28, 28, 26, 0.2) 100%);
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.hero .hero-title {
  margin-bottom: 15px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(4.5rem, 12vw, 8.5rem);
  letter-spacing: -3px;
  text-transform: uppercase;
  line-height: 0.9;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.35), 0 10px 25px rgba(0, 0, 0, 0.45), 0 0 20px rgba(252, 191, 5, 0.35), 0 0 45px rgba(252, 191, 5, 0.18);
}

.hero .hero-subtitle {
  margin-bottom: 30px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.hero .hero-description {
  margin: 0 auto 20px;
  font-weight: 550;
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
}

.hero .hero-description.secondary {
  margin-top: 25px;
  color: #1a1a2e;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero .hero-divider {
  margin: 50px auto 20px;
  border-radius: 50px;
  width: 220px;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 153, 51, 0.8), rgba(255, 255, 255, 0.8), rgba(19, 136, 8, 0.8));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 10px rgba(255, 153, 51, 0.5), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 10px rgba(19, 136, 8, 0.5);
}

.hero .hero-stats {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
}

.hero .hero-stats .stat {
  text-align: center;
}

.hero .hero-stats .stat h3 {
  margin: 0;
  color: #fff;
  font-weight: 900;
  font-size: 2.8rem;
}

.hero .hero-stats .stat h3 span {
  margin-left: 2px;
  color: #fdbd04;
}

.hero .hero-stats .stat p {
  margin-top: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 480px) {
  .hero {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 20px 44px;
  }
  .hero .hero-content {
    width: 100%;
    text-align: left;
  }
  .hero .hero-title {
    margin-bottom: 15px;
    color: #fff;
    font-size: 2.9rem;
  }
  .hero .hero-subtitle {
    margin-bottom: 12px;
    font-size: 1.9rem;
    letter-spacing: 1.2px;
  }
  .hero .hero-description {
    margin: 0 0 10px;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .hero .hero-description.secondary {
    margin-top: 10px;
    font-size: 1.1rem;
    letter-spacing: 1.8px;
  }
  .hero .hero-divider {
    margin: 18px 0 14px;
    width: 120px;
  }
  .hero .hero-stats {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .hero .hero-stats .stat {
    text-align: left;
  }
  .hero .hero-stats .stat h3 {
    font-size: 1.8rem;
    line-height: 1;
  }
  .hero .hero-stats .stat p {
    margin-top: 3px;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden !important;
}

.about {
  position: relative;
  width: 100%;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(255, 153, 51, 0.06) 0%, #ffffff 40%, #ffffff 60%, rgba(19, 136, 8, 0.06) 100%);
}

.about::before, .about::after {
  position: absolute;
  z-index: 0;
  width: 240px;
  height: 240px;
  content: "";
  filter: blur(60px);
  pointer-events: none;
}

.about::before {
  top: -40px;
  left: -40px;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.25), transparent 70%);
}

.about::after {
  right: -40px;
  bottom: -40px;
  background: radial-gradient(circle, rgba(19, 136, 8, 0.25), transparent 70%);
}

.about .about-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.about .about-content .about-highlight {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.6;
}

.about .about-content p {
  margin-bottom: 16px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.8;
}

.about .about-content .about-features {
  margin-top: 40px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about .about-content .feature-box {
  position: relative;
  border-radius: var(--radius-lg);
  width: 100%;
  padding: 22px 16px;
  font-size: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: var(--transition);
}

.about .about-content .feature-box::after {
  position: absolute;
  border-radius: inherit;
  padding: 1px;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, #FCBF04, #FFFFFF, #FCBF04);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.about .about-content .feature-box i {
  margin-bottom: 12px;
  font-size: 26px;
  background: linear-gradient(180deg, #FCBF04 0%, #E0AA00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.about .about-content .feature-box h3 {
  color: #1a1a1a;
}

.about .about-content .feature-box p {
  color: #5a5a5a;
}

.about .about-content .feature-box:hover {
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.about .about-content .feature-box:hover::after {
  background: linear-gradient(135deg, #FCBF04, #FFD84D, #FCBF04);
}

.about .about-content .feature-box:hover i {
  background: linear-gradient(180deg, #FFD84D, #FCBF04);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.about .about-content .feature-box h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.about .about-content .feature-box p {
  font-size: 0.9rem;
}

.about .about-content .feature-box:hover {
  transform: translateY(-8px);
}

.about .about-content .about-list {
  margin-top: 40px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.about .about-content .about-list .about-list-box h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.about .about-content .about-list .about-list-box ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  gap: 10px;
}

.about .about-content .about-list .about-list-box ul li i {
  border: 1px solid #fcbf04;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #fcbf04;
  font-size: 11px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about .about-image {
  position: relative;
  width: 100%;
}

.about .about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 70vh;
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.about .about-image::after {
  position: absolute;
  border-radius: var(--radius-lg);
  content: "";
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 153, 51, 0.35), rgba(255, 255, 255, 0.05), rgba(19, 136, 8, 0.35));
  mix-blend-mode: overlay;
  pointer-events: none;
}

.about .about-image:hover img {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .about {
    padding: 100px 16px;
  }
  .about .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about .about-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about .about-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .about {
    padding: 80px 14px;
  }
  .about .about-grid {
    gap: 30px;
  }
  .about .about-content .about-highlight {
    font-size: 1.2rem;
  }
  .about .about-content p {
    font-size: 19px;
  }
  .about .about-content .about-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about .about-content .feature-box {
    display: flex;
    padding: 16px;
    gap: 12px;
    text-align: left;
  }
  .about .about-content .feature-box i {
    margin: 0;
    font-size: 22px;
  }
  .about .about-content .feature-box p {
    font-size: 18px;
  }
  .about .about-content .about-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 360px) {
  .about .about-content .about-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about .about-content .feature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 8px;
  }
  .about .about-content .feature-box i {
    margin: 0;
    font-size: 22px;
  }
  .about .about-content .feature-box h4 {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
  }
  .about .about-content .feature-box p {
    margin: 0;
    width: 100%;
    font-size: 15px;
    line-height: 1.6;
  }
}
.services {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(255, 153, 51, 0.05), #ffffff 40%, #ffffff 60%, rgba(19, 136, 8, 0.05));
}

.services .services-subtitle {
  margin-top: -30px;
  margin-bottom: 50px;
  color: var(--text-soft);
  font-size: 18px;
}

.services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.services .service-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.services .service-card::before {
  position: absolute;
  border-radius: inherit;
  padding: 1px;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, #FCBF04, #FFFFFF);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.services .service-card i {
  margin-bottom: 15px;
  font-size: 34px;
  background: linear-gradient(180deg, #FCBF04 0%, #E0AA00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.services .service-card h3 {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.3rem;
}

.services .service-card p {
  color: var(--text-soft);
  font-size: 1.1rem;
}

.services .service-card:hover {
  box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
  .services {
    padding: 100px 20px;
  }
  .services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }
}
@media (max-width: 576px) {
  .services {
    padding: 80px 16px;
  }
  .services .services-subtitle {
    margin-bottom: 35px;
    font-size: 18px;
  }
  .services .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .services .service-card {
    padding: 28px 20px;
  }
  .services .service-card i {
    font-size: 30px;
  }
  .services .service-card h3 {
    font-size: 1.3rem;
  }
  .services .service-card p {
    font-size: 1.1rem;
  }
}
.contact {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.04), #ffffff 50%, rgba(19, 136, 8, 0.04));
  text-align: center;
}

.contact .contact-subtitle {
  margin-top: -25px;
  margin-bottom: 50px;
  color: var(--text-soft);
  font-size: 18px;
}

.contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  text-align: left;
}

.contact .contact-info .info-box {
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  padding: 18px;
  gap: 15px;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact .contact-info .info-box i {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1a1a1a;
  font-size: 18px;
  background: linear-gradient(135deg, rgb(254, 190, 4) 0%, rgb(255, 214, 77) 100%);
  box-shadow: 0 8px 20px rgba(254, 190, 4, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.45);
  transition: 0.3s ease;
}

.contact .contact-info .info-box i:hover {
  background: linear-gradient(135deg, rgb(255, 214, 77) 0%, rgb(254, 190, 4) 100%);
  box-shadow: 0 12px 28px rgba(254, 190, 4, 0.45);
  transform: translateY(-2px);
}

.contact .contact-info .info-box h4 {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 1rem;
}

.contact .contact-info .info-box p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.contact .contact-info .info-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact .contact-form form {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.contact .contact-form .form-group {
  margin-bottom: 18px;
}

.contact .contact-form .form-group input, .contact .contact-form .form-group textarea {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  background: #fff;
  transition: var(--transition);
}

.contact .contact-form .form-group input:focus, .contact .contact-form .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.15);
}

.contact .contact-form .form-group textarea {
  resize: none;
}

.contact .contact-map {
  margin-top: 70px;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.contact .contact-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(10%);
  transition: var(--transition);
}

.contact .contact-map:hover iframe {
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact .contact-form form {
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .contact {
    padding: 80px 0;
  }
  .contact .contact-subtitle {
    font-size: 18px;
  }
  .contact .contact-map {
    margin-top: 50px;
    height: 300px;
  }
}
.terms-container {
  margin: 30px auto 60px;
  margin-top: 80px;
  padding: 0 20px;
  color: var(--text);
  font-family: var(--font-body);
  max-width: 900px;
  line-height: 1.8;
}

.terms-container h1 {
  margin-bottom: 30px;
  color: #fcbf04 !important;
  font-weight: 700 !important;
  font-size: 2.2rem;
  text-align: left;
  -webkit-text-fill-color: #fcbf04 !important;
  background: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
}

.terms-container h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 1.4rem;
}

.terms-container h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #fcbf05;
  font-weight: 600;
  font-size: 1.1rem;
}

.terms-container p {
  margin-bottom: 15px;
  color: var(--text-soft);
  font-size: 19px;
}

.terms-container ul {
  margin-bottom: 20px;
  padding-left: 22px;
  list-style-type: disc;
}

.terms-container ul li {
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 19px;
}

.terms-container ul li::marker {
  color: #1a1a2e;
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  body {
    padding-top: var(--header-height);
  }
  .terms-container {
    margin: 40px 15px 30px;
    padding: 0 10px;
  }
  .terms-container h1 {
    color: rgba(0, 0, 0, 0);
    font-size: 1.7rem;
    -webkit-text-fill-color: unset;
    background: var(--grad);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
  }
  .terms-container h2 {
    font-size: 1.4rem;
  }
  .terms-container h3 {
    font-size: 1rem;
  }
  .terms-container p, .terms-container ul li {
    font-size: 19px;
  }
}

/*# sourceMappingURL=main.css.map */
