:root {
  --color-white: #ffffff;
  --color-black: #111111;


  --steel-blue: #5E7286;
  --sage-green: #889E61;
  --soft-sky-blue: #A9C7D9;
  --pale-lime: #E6EFBC;
  /* --color-light: #f9f7f7;
  --color-muted: #dbe2ef;
  --color-primary: #3f72af;
  --color-dark: #112d4e; */

  --color-light: #efece3;
  --color-muted: #8fabd4;
  --color-bg: #f0e3e3;
  /* --color-muted: #f0e3e3; */
  --color-primary: #0d6efd;
  --color-dark: #000000;

  /* --color-light: #FCD1D1;
  --color-muted: #ECE2E1;
  --color-primary: #D3E0DC;
  --color-dark: #AEE1E1; */

  --font-family-base: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-size-base: 14px;
  --font-size-brand: 20px;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 15px;
  --spacing-lg: 30px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 30px;
  --radius-circle: 50%;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-sticky: 0 5px 20px rgba(0, 0, 0, 0.1);
  --transition-fast: 0.3s ease;
}

.cta-btn {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 40px;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
}
.cta-btn:hover {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: none;
  
}
.cta-btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 8px 40px;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
}
.cta-btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}
a {
  text-decoration: none;
}

.main-header {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  /* transition: var(--transition-fast); */
  z-index: 999;
}

.navbar {
  padding: var(--spacing-md) 0;
}

.navbar-brand {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-brand);
  color: var(--color-black);
  gap: var(--spacing-sm);
}

.logo-circle {
  width: 40px;
  height: 40px;
  background: var(--color-dark);
  /* background: var(--color-dark); */
  color: var(--color-white);
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  font-weight: var(--font-weight-bold);
}
.brand-text {
  color: var(--color-dark);
}

.nav-link {
  font-weight: var(--font-weight-medium);
  font-size: medium;
  color: var(--color-dark);
  padding: var(--spacing-sm) var(--spacing-md) !important;
  /* transition: var(--transition-fast); */
}

.nav-link:hover {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.btn-dark {
  border-radius: var(--radius-pill);
  font-size: var(--font-size-base);
}

.header-scrolled {
  padding: var(--spacing-xs) 0;
  box-shadow: var(--shadow-sticky);
}

.gradient-btn {
  padding: 14px 34px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #fff;
  cursor: pointer;

  background: linear-gradient(
    135deg,
    #1e3c72,
    #2a6fd6
  );

  /* box-shadow: 0 10px 25px rgba(42, 111, 214, 0.3); */
  transition: all 0.35s ease;
}


.gradient-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 20px rgba(42, 111, 214, 0.45);
  background: linear-gradient(
    135deg,
    #16325c,
    #1f5fbf
  );
}


.gradient-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(42, 111, 214, 0.3);
}

/* Focus */
.gradient-btn:focus-visible {
  outline: 2px solid #2a6fd6;
  outline-offset: 4px;
}


/*=====================================================
 banner section 
=======================================================*/

/* .carousel-item{
  background: var(--color-muted);
}

.carousel-item img {
  width: 100%;
  height: 700px;
  object-fit: cover; 
}


@media (max-width: 768px) {
  .carousel-item img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .carousel-item img {
    height: 220px;
  }
} */


/* .carousel-item{
  background: var(--color-muted);
}

.carousel-item img {
  width: 100%;
  height: 700px;
  object-fit: cover;   
  background: #fff;     
  padding-top: 100px;
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .carousel-item img {
    height: 220px;
  }
} */

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

/* Carousel wrapper */
#myCarousel {
  width: 100%;
}

/* Carousel item background */
#myCarousel .carousel-item {
  background: #f8f8f8; 
  text-align: center;
}

/* Banner image – desktop default */ 
#myCarousel .carousel-item img {
  width: 100%;
  /* height: 650px; */
  height: 800px;
  object-fit: contain;        
  object-position: center;
  display: block;
  margin: 0 auto;
}

/* =========================
   TABLET VIEW
   ========================= */
@media (max-width: 991px) {
  #myCarousel .carousel-item img {
    height: 420px;
    padding-top: 80px;
  }
}

/* =========================
   MOBILE VIEW
   ========================= */
@media (max-width: 576px) {
  #myCarousel .carousel-item img {
    /* height: auto;           */
    max-height: 360px;
  }

  /* Optional: hide arrows on mobile */
  #myCarousel .carousel-control-prev,
  #myCarousel .carousel-control-next {
    display: none;
  }
}





.hero-banner {
  padding: 120px 0 80px;
  background: var(--color-muted);
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-md);
}

.hero-title {
  font-size: 42px;
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}
.hero-title span {
  color: var(--color-dark);
}

.hero-text {
  font-size: 16px;
  color: var(--color-secondary);
  max-width: 480px;
  margin-bottom: var(--spacing-lg);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  text-decoration: none;
}
.hero-actions a {
  text-decoration: none;
}

.hero-image-wrap {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  display: inline-block;
}

.hero-image {
  max-width: 100%;
  height: auto;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px dashed var(--color-gray-300);
  border-radius: var(--radius-md);
  z-index: -1;
}

@media (max-width: 991px) {
  .hero-banner {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-wrap {
    margin-top: 40px;
  }
}

/*=====================================================
 about section 
=======================================================*/

.about-section {
  padding: var(--spacing-lg) 0;
  background: var(--color-white);
}

/* Header */
.section-badge {
  display: inline-block;
  background: var(--color-muted);
  color: var(--color-dark);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-md);
}

.about-title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

.about-text {
  font-size: 15px;
  color: var(--steel-blue);
  margin-bottom: var(--spacing-md);
  max-width: 520px;
}

/* ROW HEIGHT SYNC */
.about-section .row.align-items-center {
  align-items: stretch;
}

/* IMAGE SIDE */
.about-image-wrap {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
}

.about-image {
  width: 100%;
  height: 600px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

/* FEATURES */
.about-features {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.about-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-black);
  font-weight: var(--font-weight-medium);
}

.about-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-section {
    text-align: center;
  }

  .about-title {
    font-size: 30px;
  }

  .about-text {
    margin-left: auto;
    margin-right: auto;
  }

  .about-features {
    display: inline-block;
    text-align: left;
  }

  .about-image-wrap {
    margin-bottom: var(--spacing-lg);
    height: auto;
  }

  .about-image {
    height: auto;
    object-fit: contain;
  }
}




/*=====================================================
 mission and vision section 
=======================================================*/

.mission-vision-section {
  padding: var(--spacing-lg) 0;
  background: var(--color-light);
  font-family: var(--font-family-base);
}

.mv-header {
  margin-bottom: var(--spacing-lg);
}

.mv-badge {
  display: inline-block;
  background: var(--color-muted);
  color: var(--color-dark);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-md);
}

.mv-title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.mv-intro {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--color-black);
  line-height: 1.6;
}

/* Grid */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

/* Cards */
.mv-card {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fast);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sticky);
}

.mv-card-title {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: var(--steel-blue);
  margin-bottom: var(--spacing-md);
}

.mv-text {
  font-size: 15px;
  color: var(--color-black);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

/* Responsive */
@media (max-width: 991px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .mv-title {
    font-size: 30px;
  }

  .mv-card {
    padding: var(--spacing-md);
  }
}

/*=====================================================
 happy section 
=======================================================*/

.happy-customers {
  padding: calc(var(--spacing-lg) * 2) var(--spacing-md);
  background: var(--color-gray-100);
  font-family: var(--font-family-base);
}

.section-title {
  text-align: center;
  font-size: var(--font-size-brand);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  text-align: center;
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  font-size: var(--font-size-base);
}

/* Grid */
.customer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
}

/* Card */
.customer-card {
  /* background: var(--color-muted); */
  background: linear-gradient(135deg,  var(--color-muted) , var(--color-bg));
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.customer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-sticky);
}

/* Avatar */
.avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-sm);
  border-radius: var(--radius-circle);
  /* background: var(--color-primary); */
  background: linear-gradient(135deg , var(--color-primary),var(--color-muted)) ;
  color: var(--color-white);
  font-size: var(--font-size-brand);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.customer-card h4 {
  font-size: calc(var(--font-size-base) + 2px);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.role {
  font-size: var(--font-size-base);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.review {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/*=====================================================
 product section 
=======================================================*/

.product-section {
  padding: 60px 0;
  background: var(--color-light);
}

/* Title */
.product-title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
}

.product-text {
  font-size: 15px;
  color: var(--color-black);
  max-width: 600px;
}

/* Tabs */
.product-tabs {
  gap: var(--spacing-sm);
}

.product-tabs .nav-link {
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  background: var(--color-white);
  color: var(--color-black);
  transition: var(--transition-fast);
}

.product-tabs .nav-link:hover,
.product-tabs .nav-link.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-black);
}


/* .product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px;
  padding: 10px 0;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fast);
  height: 100%;
}

.product-card img {
  max-width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: var(--spacing-md);
} */

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 10px; 
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fast);
  height: 100%;
}


.product-card img {
  width: 100%;
  height: 280px;           
  object-fit: cover;
  margin-bottom: var(--spacing-md);
  display: block;
}


.product-card h5 {
  font-size: 16px;
  /* font-weight: var(--font-weight-bold); */
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.product-card p {
  font-size: 14px;
  color: var(--color-secondary);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sticky);
}


@media (max-width: 991px) {
  .product-title {
    font-size: 30px;
  }
}

/*=====================================================
 contact section 
=======================================================*/

.contact-section {
  padding: 80px 0;
  background: rgb(248, 238, 238);
}

/* Titles */
.contact-title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
}

.contact-text {
  font-size: 15px;
  color: var(--color-secondary);
  max-width: 600px;
}

/* Contact Info Box */
.contact-info-box {
  background: var(--color-dark);
  /* background: linear-gradient(135deg ,var(--color-muted) , var(--color-bg)) ; */
  color: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-md);
  height: 100%;
}

.contact-info-box h4 {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}

/* Info List */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  font-size: 14px;
}
.contact-info-list li i{
  color: var(--color-primary);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
}

/* Note */
.contact-note {
  font-size: 13px;
  color: var(--color-gray-300);
  margin-top: var(--spacing-lg);
}

/* Form */
.contact-form-wrap {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.contact-form-wrap .form-control {
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  border: 2px solid var(--color-dark);
}

.contact-form-wrap .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: none;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-title {
    font-size: 30px;
  }

  .contact-info-box,
  .contact-form-wrap {
    padding: 30px 20px;
  }

  .map-wrap iframe {
    height: 300px;
  }
}

/*=====================================================
 F&Q section 
=======================================================*/

.faq-section {
  padding: 60px 0;
  background: rgb(240, 238, 238);
}

/* Title */
.faq-title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
}

.faq-text {
  font-size: 15px;
  color: var(--color-secondary);
  max-width: 600px;
}

/* Accordion */
.faq-accordion .accordion-item {
  border: none;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: var(--font-weight-medium);
  color: var(--color-black);
  background: var(--color-gray-100);
  padding: 18px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--color-dark);
  color: var(--color-white);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  font-size: 14px;
  color: var(--color-secondary);
  background: var(--color-white);
}

/* Responsive */
@media (max-width: 991px) {
  .faq-title {
    font-size: 30px;
  }
}

/*=====================================================
 why choose section 
=======================================================*/

.why-choose-us {
  padding: calc(var(--spacing-lg) * 2) var(--spacing-md);
  /* background: var(--color-muted); */
  font-family: var(--font-family-base);
}

/* Reuse existing section styles */
.why-choose-us .section-title {
  text-align: center;
  font-size: var(--font-size-brand);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: var(--spacing-sm);
}
.section-title-why {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  text-align: center;
}
.why-choose-us .section-subtitle {
  text-align: center;
  color: var(--color-gray-600);
  max-width: 620px;
  margin: 0 auto var(--spacing-lg);
  font-size: var(--font-size-base);
}

/* Grid */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
}

/* Card */
.choose-card {
  /* background: var(--color-muted); */
  background: linear-gradient(135deg ,var(--color-muted) , var(--color-bg)) ;
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sticky);
}

/* Icon */
.choose-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--spacing-sm);
  border-radius: var(--radius-circle);
  /* background: var(--color-dark); */
  background: linear-gradient(135deg ,var(--color-muted), var(--color-primary)) ;
  color: var(--color-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.choose-card h4 {
  font-size: calc(var(--font-size-base) + 2px);
  font-weight: var(--font-weight-medium);
  color: var(--color-dark);
  margin-bottom: var(--spacing-xs);
}

.choose-card p {
  font-size: var(--font-size-base);
  color: var(--color-gray-600);
  line-height: 1.6;
}

/*=====================================================
 footer section 
=======================================================*/

.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 70px 0 30px;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-text {
  color: var(--color-gray-300);
  font-size: 14px;
  max-width: 320px;
}

/* Titles */
.footer-title {
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
}
.brand-text-footer{
  color: var(--color-light);
  font-weight: var(--font-weight-medium);
  font-size: 20px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}
.footer-links li a:hover {
  color: var(--color-primary);
}
.footer-links a {
  color: var(--color-gray-300);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
}

/* Contact */
/* .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 14px;
    color: var(--color-gray-300);
    margin-bottom: var(--spacing-sm);
}
.footer-contact p{
  color: var(--color-white);
} */

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.footer-contact li {
  display: flex;
  
  /* gap: 10px; */
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact li i {
  color: var(--color-primary);
  margin-top: 4px;
  min-width: 18px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-gray-300);
  margin: 0;
}
.footer-bottom a {
  text-decoration: none;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social .social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  color: var();
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
  .site-footer {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px){
  .footer-contact{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* */
.button {
  --primary: #ff5569;
  --neutral-1: #f7f8f7;
  --neutral-2: #e7e7e7;
  --radius: 14px;

  cursor: pointer;
  border-radius: var(--radius);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  border: none;
  box-shadow: 0 0.5px 0.5px 1px rgba(255, 255, 255, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.2), 0 4px 5px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  min-width: 200px;
  padding: 20px;
  height: 68px;
  font-family: "Galano Grotesque", Poppins, Montserrat, sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
}
.button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.3), 0 10px 3px -3px rgba(0, 0, 0, 0.04);
}
.button:active {
  transform: scale(1);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3),
    0 10px 3px -3px rgba(0, 0, 0, 0.2);
}
.button:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  /* border: 2.5px solid transparent; */
  background: linear-gradient(var(--neutral-1), var(--neutral-2)) padding-box,
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45))
      border-box;
  z-index: 0;
  transition: all 0.4s ease;
}
.button:hover::after {
  transform: scale(1.05, 1.1);
  box-shadow: inset 0 -1px 3px 0 rgba(255, 255, 255, 1);
}
.button::before {
  content: "";
  inset: 7px 6px 6px 6px;
  position: absolute;
  background: linear-gradient(to top, var(--neutral-1), var(--neutral-2));
  border-radius: 30px;
  filter: blur(0.5px);
  z-index: 2;
}
.state p {
  display: flex;
  align-items: center;
  justify-content: center;
}
.state .icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.state .icon svg {
  overflow: visible;
}

/* Outline */
.outline {
  position: absolute;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  inset: -2px -3.5px;
}
.outline::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 180deg,
    transparent 60%,
    white 80%,
    transparent 100%
  );
  animation: spin 2s linear infinite;
  animation-play-state: paused;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.button:hover .outline {
  opacity: 1;
}
.button:hover .outline::before {
  animation-play-state: running;
}

/* Letters */
.state p span {
  display: block;
  opacity: 0;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.03s);
}
.button:hover p span {
  opacity: 1;
  animation: wave 0.5s ease forwards calc(var(--i) * 0.02s);
}
.button:focus p span {
  opacity: 1;
  animation: disapear 0.6s ease forwards calc(var(--i) * 0.03s);
}
@keyframes wave {
  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
    color: var(--primary);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px) translateX(5px) rotate(-90deg);
    color: var(--primary);
    filter: blur(5px);
  }
  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
    filter: blur(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}
@keyframes disapear {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(5px) translateY(20px);
    color: var(--primary);
    filter: blur(5px);
  }
}

/* Plane */
.state--default .icon svg {
  animation: land 0.6s ease forwards;
}
.button:hover .state--default .icon {
  transform: rotate(45deg) scale(1.25);
}
.button:focus .state--default svg {
  animation: takeOff 0.8s linear forwards;
}
.button:focus .state--default .icon {
  transform: rotate(0) scale(1.25);
}
@keyframes takeOff {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: translateX(70px) rotate(45deg) scale(2);
  }
  100% {
    opacity: 0;
    transform: translateX(160px) rotate(45deg) scale(0);
  }
}
@keyframes land {
  0% {
    transform: translateX(-60px) translateY(30px) rotate(-50deg) scale(2);
    opacity: 0;
    filter: blur(3px);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0);
    opacity: 1;
    filter: blur(0);
  }
}

/* Contrail */
.state--default .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 0;
  left: -5px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5));
}
.button:focus .state--default .icon:before {
  animation: contrail 0.8s linear forwards;
}
@keyframes contrail {
  0% {
    width: 0;
    opacity: 1;
  }
  8% {
    width: 15px;
  }
  60% {
    opacity: 0.7;
    width: 80px;
  }
  100% {
    opacity: 0;
    width: 160px;
  }
}

/* States */
.state {
  padding-left: 29px;
  z-index: 2;
  display: flex;
  position: relative;
}
.state--default span:nth-child(4) {
  margin-right: 5px;
}
.state--sent {
  display: none;
}
.state--sent svg {
  transform: scale(1.25);
  margin-right: 8px;
}
.button:focus .state--default {
  position: absolute;
}
.button:focus .state--sent {
  display: flex;
}
.button:focus .state--sent span {
  opacity: 0;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.2s);
}
.button:focus .state--sent .icon svg {
  opacity: 0;
  animation: appear 1.2s ease forwards 0.8s;
}
@keyframes appear {
  0% {
    opacity: 0;
    transform: scale(4) rotate(-40deg);
    color: var(--primary);
    filter: blur(4px);
  }
  30% {
    opacity: 1;
    transform: scale(0.6);
    filter: blur(1px);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
