/*=============== CONTACT ===============*/
.contact {
  background: #f8f9fa;
}

.contact .container {
  max-width: 1100px;
}

.contact__header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact__subtitle {
  font-size: 1.05rem;
  color: var(--text-color-light);
  max-width: 720px;
  margin: 0.25rem auto 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact__info {
  display: grid;
  gap: .75rem;
}

.contact__card {
  display: flex;
  gap: .75rem;
  align-items: center;
  background: var(--container-color);
  border: 1px solid rgba(139,0,0,0.10);
  border-radius: .85rem;
  padding: .9rem 1rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.contact__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  color: #fff;
  box-shadow: 0 8px 22px rgba(139,0,0,0.22);
  font-size: 1.2rem;
}

.contact__label {
  font-size: .95rem;
  color: var(--text-color-light);
  margin-bottom: .1rem;
}

.contact__value {
  font-weight: 700;
  color: var(--title-color);
}

.contact__cta {
  display: flex;
  gap: .6rem;
  margin-top: .5rem;
  flex-wrap: wrap;
}

.contact__form {
  background: var(--container-color);
  border-radius: 1rem;
  border: 1px solid rgba(139,0,0,0.10);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  padding: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
  margin-bottom: .85rem;
}

.form__group {
  display: grid;
  gap: .35rem;
}

.form__label {
  font-size: .9rem;
  color: var(--text-color);
}

.form__input,
.form__textarea {
  background: #fafafa;
  border: 1px solid #eee;
  padding: .85rem .9rem;
  border-radius: .6rem;
  color: var(--title-color);
}

.form__input:focus,
.form__textarea:focus {
  border-color: rgba(139,0,0,0.28);
  box-shadow: 0 0 0 4px rgba(139,0,0,0.08);
}

@media screen and (min-width: 768px) {
  .contact__grid { grid-template-columns: .9fr 1.1fr; gap: 1.25rem; }
  .form__row { grid-template-columns: 1fr 1fr; }
}
/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.1rem;

  /*========== Colors ==========*/
  --hue: 14;
  /* Primary accent: Dark Red */
  --first-color: #8B0000;
  --first-color-alt: #6e0000;
  /* Text colors for light theme */
  --title-color: #111111;
  --text-color: #444444;
  --text-color-light: #777777;
  /* Shiny Golden accent */
  --accent-color: #D4AF37;

  /* Light theme backgrounds */
  --body-color: #ffffff;
  --container-color: #ffffff;
  
  /*Red gradient*/
  /* --body-color: linear-gradient(90deg, hsl(360, 28%, 40%) 0%, hsl(18, 28%, 40%) 100%);
  --container-color: linear-gradient(136deg, hsl(360, 28%, 35%) 0%, hsl(18, 28%, 35%) 100%); */

  /*Black solid*/
  /* --body-color: hsl(30, 8%, 8%);
  --container-color: hsl(30, 8%, 10%); */

  /*========== Font and typography ==========*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-black: 900;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 992px) {
  :root {
    --biggest-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--body-color);
  color: var(--text-color);
}

/* Adjust body margin for small devices with increased navbar height */
@media screen and (max-width: 767px) {
  body {
    margin: 4.5rem 0 0 0;
  }
}

@media screen and (max-width: 360px) {
  body {
    margin: 4rem 0 0 0;
  }
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

button,
input {
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  text-align: center;
}


/*=============== LAYOUT ===============*/
.container {
  max-width: 968px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
}

.main {
  overflow: hidden;
  /*For animation*/
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.18));
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  border-bottom: 1px solid rgba(139, 0, 0, 0.18);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, -webkit-backdrop-filter .35s ease, backdrop-filter .35s ease;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-medium);
}

.nav__logo-img {
  width: 5.5rem;
}

.nav__link,
.nav__logo,
.nav__toggle,
.nav__close {
  color: var(--title-color);
}

.nav__toggle {
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  z-index: 1000;
  position: relative;
}

.nav__toggle:hover {
  background: rgba(139, 0, 0, 0.1);
  color: var(--first-color);
  transform: scale(1.05);
}

.nav__toggle:active {
  background: rgba(139, 0, 0, 0.2);
  transform: scale(0.95);
}

.nav__toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.2);
}

/* Hamburger to Cross transformation for all devices */
.nav__toggle.show-menu .bx-grid-alt::before {
  content: '' !important; /* Hide the original icon */
}

.nav__toggle.show-menu .bx-grid-alt::after {
  content: '✕' !important; /* Add a simple X */
  font-family: Arial, sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: bold !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.nav__toggle.show-menu {
  background: var(--first-color) !important;
  color: #ffffff !important;
  position: relative !important;
}

.nav__toggle.show-menu:hover {
  background: var(--first-color-alt) !important;
  transform: scale(1.05) !important;
}

@media screen and (max-width: 767px) {
.nav__menu {
    position: fixed;
    width: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.15));
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    top: -150%;
    left: 0;
    padding: 3.25rem 0;
    transition: .4s;
    z-index: var(--z-fixed);
    border-radius: 0 0 1.5rem 1.5rem;
    opacity: 0;
    visibility: hidden;
  }
}

.nav__img {
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
}

.nav__close {
  font-size: 1.8rem;
  position: absolute;
  top: .5rem;
  right: .7rem;
  cursor: pointer;
}

.nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}

.nav__link {
  text-transform: uppercase;
  font-weight: var(--font-black);
  transition: all 0.3s ease;
  position: relative;
  font-size: .9rem;
  line-height: 1.15;
  padding: .2rem 0;
}

.nav__link:hover {
  color: var(--first-color);
  transform: translateY(-1px);
  text-shadow: 0 2px 4px rgba(139, 0, 0, 0.2);
}

.nav__link.active-link {
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  background: rgba(139, 0, 0, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(139, 0, 0, 0.2);
}

/* Show menu */
.show-menu {
  top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 1000 !important;
}

/* Change background header */
.scroll-header {
  background: linear-gradient(135deg, rgba(255,255,255,0.38), rgba(255,255,255,0.24)),
              linear-gradient(135deg, rgba(139, 0, 0, 0.10), rgba(212, 175, 55, 0.10));
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  border-bottom-color: rgba(139, 0, 0, 0.28);
}

/* Polymorphic glass background when mobile menu is open */
.menu-open {
  background: linear-gradient(135deg, rgba(255,255,255,0.42), rgba(255,255,255,0.28)),
              linear-gradient(135deg, rgba(139, 0, 0, 0.12), rgba(212, 175, 55, 0.12));
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: rgba(139, 0, 0, 0.32);
}

/* Active link */
.active-link {
  position: relative;
}

.active-link::before {
  content: '';
  position: absolute;
  bottom: -.75rem;
  left: 45%;
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

/*=============== HOME ===============*/
.home__content {
  row-gap: 1.5rem;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: start;
}

.home__data {
  transform: scale(1);
  transform-origin: left center;
  transition: transform .4s ease;
  max-width: 560px;
  justify-self: start;
  text-align: left;
}

/* Fine-tune hero text block typography and spacing */
.home__data > * + * {
  margin-top: .75rem;
}

.home__data .home__subtitle {
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  letter-spacing: .5px;
}

.home__data .home__title {
  line-height: 1.1;
}

.home__data .home__description {
  color: var(--text-color);
  line-height: 1.7;
  max-width: 46ch;
}

.home__data .home__buttons {
  margin-top: 1rem;
}

.home__group {
  display: grid;
  position: relative;
  padding-top: 2rem;
  justify-items: center;
  align-items: center;
  justify-content: center;
}

.home__img {
  width: 540px;
  max-width: 500px;
  height: 380px;
  justify-self: center;
  display: block;
}


.home__indicator {
  width: 8px;
  height: 8px;
  background-color: var(--title-color);
  border-radius: 50%;
  position: absolute;
  top: 7rem;
  right: 2rem;
}

.home__indicator::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 48px;
  background-color: var(--title-color);
  top: -3rem;
  right: 45%;
}

.home__details-img {
  position: absolute;
  right: .5rem;
}

.home__details-title,
.home__details-subtitle {
  display: block;
  font-size: var(--small-font-size);
  text-align: right;
}

.home__subtitle {
  font-size: var(--h3-font-size);
  text-transform: uppercase;
  margin-bottom: var(--mb-1);
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-black);
  line-height: 109%;
  margin-bottom: var(--mb-1);
}

.home__description {
  margin-bottom: var(--mb-1);
}

.home__buttons {
  display: flex;
  justify-content: flex-start;
  column-gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
}

/* Swiper Class */
.swiper-pagination {
  position: initial;
  margin-top: var(--mb-1);
}

.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: var(--accent-color);
  opacity: 0.6;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 .5rem;
} 

.swiper-pagination-bullet-active {
  width: 1.5rem;
  height: 5px;
  border-radius: .5rem;
}

/* Swiper navigation arrows for testimonials */
.swiper-button-next,
.swiper-button-prev {
  color: var(--title-color);
  background: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

/* Position arrows further to the sides within testimonials */
/* Place arrows above the slider container with some spacing */
#testimonials .new-swiper { position: relative; padding-top: 0; overflow: visible; }
/* arrows removed */

@media screen and (min-width: 768px) {
  #testimonials .swiper-button-prev { left: 10px; }
  #testimonials .swiper-button-next { right: 10px; }
}

@media screen and (min-width: 992px) {
  #testimonials .swiper-button-prev { left: 12px; }
  #testimonials .swiper-button-next { right: 12px; }
}

/* Stylish testimonials title */
.testimonials__title {
  position: relative;
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, var(--first-color), var(--accent-color));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials__title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.6rem;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, var(--first-color), var(--accent-color));
  border-radius: 2px;
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #ffffff;
  padding: 1rem 1.75rem;
  border-radius: .5rem;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

/* Contact form submit button specific styling */
.contact__form .button {
  background: var(--first-color) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  padding: 1rem 1.5rem !important;
  font-size: 1rem !important;
}

/* Reduce button width for small devices */
@media (max-width: 480px) {
  .contact__form .button {
    width: 70% !important;
    margin: 0 auto !important;
    display: block !important;
  }
}

/* Even smaller width for very small devices */
@media (max-width: 360px) {
  .contact__form .button {
    width: 60% !important;
    padding: 0.85rem 1.25rem !important;
    font-size: 0.95rem !important;
  }
}

.contact__form .button:hover {
  background: var(--first-color-alt) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3) !important;
}

.contact__form .button:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3) !important;
}

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

.button:hover::before {
  left: 100%;
}

.button:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.button__icon {
  font-size: 1.25rem;
}

.button--ghost {
  border: 2px solid var(--first-color);
  background-color: transparent;
  border-radius: 3rem;
  padding: .75rem 1.5rem;
  color: var(--first-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button--ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.button--ghost:hover::before {
  left: 100%;
}

.button--ghost:hover {
  background: rgba(139, 0, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
}

.button--link {
  color: var(--title-color);
  background: rgba(139, 0, 0, 0.1);
  padding: 1rem 1.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(139, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button--link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.button--link:hover::before {
  left: 100%;
}

.button--link:hover {
  background: rgba(139, 0, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
  color: var(--first-color);
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

/*=============== CATEGORY ===============*/
.category__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}

.category__data {
  text-align: center;
}

.category__img {
  width: 120px;
  margin-bottom: var(--mb-0-75);
  transition: .3s;
}

.category__title {
  margin-bottom: var(--mb-0-25);
}

.category__data:hover .category__img {
  transform: translateY(-.5rem);
}

/*=============== ABOUT ===============*/
.about{
  background: #e4e4e4; /* full width background for About */
}

.about__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 3rem;
}

.about__header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.about__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  margin-top: 0.25rem !important;
  line-height: 1.4;
}

/* Tighter, stylish title with accent underline */
.about__header .section__title{
  position: relative;
  display: inline-block;
  padding-bottom: .5rem;
  margin-bottom: .75rem;
  line-height: 1.2;
}

.about__header .section__title::after{
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--first-color), var(--accent-color));
  border-radius: 2px;
}

.about__main {
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about__text {
  text-align: center;
}

.about__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
  color: var(--title-color);
}

.about__description {
  margin-bottom: var(--mb-1);
  line-height: 1.6;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1rem;
}

.stat__item {
  text-align: center;
  padding: .75rem;
  background: var(--container-color);
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat__number {
  font-size: 1.25rem;
  font-weight: var(--font-black);
  color: var(--first-color);
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: var(--small-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.about__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about__features {
  margin-top: 3rem;
}

.features__title {
  text-align: center;
  font-size: var(--h2-font-size);
  margin-bottom: 2rem;
  color: var(--title-color);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.feature__card {
  position: relative;
  background: var(--container-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(139, 0, 0, 0.10);
}

.feature__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(139,0,0,0.25), rgba(212,175,55,0.25));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.feature__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

/* Full-bleed image media */
.feature__media {
  position: relative;
  width: 100%;
  height: 220px;
}

.feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .45s ease;
}

.feature__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 1rem 1rem;
  background: rgba(0,0,0,0.0);
  color: #ffffff;
  opacity: 1;
}

.feature__header{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.55) 100%);
  padding: .4rem .75rem;
  border-radius: .5rem;
  margin: 0 auto .5rem auto;
  width: max-content;
}

.feature__title {
  font-size: 1.05rem;
  margin: 0;
  color: #ffffff;
}

.feature__hint{
  font-size: .72rem;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: .1rem .45rem;
  border-radius: .35rem;
  white-space: nowrap;
}

.feature__description {
  font-size: .9rem;
  color: rgba(255,255,255,.95);
  line-height: 1.55;
  text-align: center;
  margin-top: auto;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(8%);
  transition: opacity .28s ease, transform .28s ease;
}

.feature__card:hover .feature__img {
  transform: scale(1.08);
}

.feature__card:hover .feature__overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}

.feature__card:hover .feature__description{
  opacity: 1;
  transform: translateY(0%);
}

.about__cta {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

.cta__content {
  max-width: 600px;
  margin: 0 auto;
}

.cta__title {
  font-size: var(--h2-font-size);
  color: white;
  margin-bottom: .75rem;
}

.cta__description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.cta__buttons {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta__buttons .button {
  background: white;
  color: var(--first-color);
}

.cta__buttons .button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta__buttons .button--ghost {
  border-color: white;
  color: white;
}

.cta__buttons .button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/*=============== TRICK OR TREAT ===============*/
.trick__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
}

.trick__content {
  position: relative;
  background: var(--container-color);
  border-radius: 1rem;
  padding: 1.5rem 0 1rem 0;
  text-align: center;
  overflow: hidden;
}

.trick__img {
  width: 90px;
  transition: .3s;
}

.trick__subtitle,
.trick__price {
  display: block;
}

.trick__subtitle {
  font-size: var(--smaller-font-size);
  margin-bottom: var(--mb-0-5);
}

.trick__title,
.trick__price {
  color: var(--title-color);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
}

.trick__button {
  display: inline-flex;
  padding: .5rem;
  border-radius: .25rem .25rem .75rem .25rem;
  position: absolute;
  right: -3rem;
  bottom: 0;
}

.trick__icon {
  font-size: 1.25rem;
  color: var(--title-color);
}

.trick__content:hover .trick__img {
  transform: translateY(-.5rem);
}

.trick__content:hover .trick__button {
  right: 0;
}

/*=============== DISCOUNT ===============*/
.discount__container {
  background: var(--container-color);
  border-radius: 1rem;
  padding: 2.5rem 0 1.5rem;
  row-gap: .75rem;
}

.discount__data {
  text-align: center;
}

.discount__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
}

.discount__img {
  width: 200px;
  justify-self: center;
}

/*=============== NEW ARRIVALS ===============*/
.new__container {
  padding-top: 1rem;
}

.new__img {
  width: 120px;
  margin-bottom: var(--mb-0-5);
  transition: .3s;
}

.new__content {
  position: relative;
  background: var(--container-color);
  width: 242px;
  padding: 2rem 0 1.5rem 0;
  border-radius: .75rem;
  text-align: center;
  overflow: hidden;
}

.new__tag {
  position: absolute;
  top: 8%;
  left: 8%;
  background-color: var(--first-color);
  color: var(--title-color);
  font-size: var(--small-font-size);
  padding: .25rem .5rem;
  border-radius: .25rem;
}

.new__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}

.new__subtitle {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-0-5);
}

.new__prices {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

.new__price {
  font-weight: var(--font-medium);
  color: var(--title-color);
}

.new__discount {
  color: var(--first-color);
  font-size: var(--smaller-font-size);
  text-decoration: line-through;
  font-weight: var(--font-medium);
}

.new__button {
  display: inline-flex;
  padding: .5rem;
  border-radius: .25rem .25rem .75rem .25rem;
  position: absolute;
  bottom: 0;
  right: -3rem;
}

.new__icon {
  font-size: 1.25rem;
}

.new__content:hover .new__img {
  transform: translateY(-.5rem);
}

.new__content:hover .new__button {
  right: 0;
}

/*=============== TESTIMONIALS ===============*/
.testimonial__card{
  position: relative;
  background: var(--container-color);
  width: 292px;
  padding: 1.25rem 1rem 1.1rem;
  border-radius: 1rem;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  border: 1px solid rgba(139, 0, 0, 0.10);
}

.testimonial__top{
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.testimonial__avatar{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(139,0,0,0.25);
}

.testimonial__name{
  font-size: 1rem;
  line-height: 1.1;
}

.testimonial__role{
  font-size: .8rem;
  color: var(--text-color-light);
}

.testimonial__text{
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: .85rem;
}

.testimonial__stars{
  color: #f5b301;
  display: flex;
  gap: .15rem;
  font-size: 1.05rem;
}

@media screen and (min-width: 992px){
  .testimonial__card{ width: 340px; padding: 1.35rem 1.1rem 1.25rem; }
}

/*=============== NEWSLETTER ===============*/
/* Newsletter styles removed with section */

/*=============== FOOTER ===============*/
.footer {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(139, 0, 0, 0.1);
}

.footer__img-one,
.footer__img-two {
  position: absolute;
  transition: .3s;
}

.footer__img-one {
  width: 100px;
  top: 6rem;
  right: -2rem;
}

.footer__img-two {
  width: 150px;
  bottom: 4rem;
  right: 4rem;
}

.footer__img-one:hover,
.footer__img-two:hover {
  transform: translateY(-.5rem);
}

.footer__container {
  row-gap: 2rem;
  padding: 1rem 0;
}

.footer__logo {
  display: flex;
  align-items: center;
  column-gap: .75rem;
  margin-bottom: var(--mb-1-5);
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.footer__logo:hover {
  transform: translateY(-2px);
}

.footer__logo-img {
  width: 55px;
}

.footer__description {
  margin-bottom: var(--mb-2);
  line-height: 1.6;
  color: var(--text-color);
  max-width: 280px;
}

.footer__social {
  display: flex;
  column-gap: 1rem;
}

.footer__social-link {
  display: inline-flex;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  padding: .75rem;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  position: relative;
}

.footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 30px;
  height: 2px;
  background: var(--first-color);
  border-radius: 2px;
}

.footer__links {
  display: grid;
  row-gap: .75rem;
}

.footer__link {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer__link:hover {
  color: var(--first-color);
  padding-left: 8px;
}

.footer__copy {
  display: block;
  text-align: center;
  font-size: var(--small-font-size);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 0, 0, 0.1);
  color: var(--text-color-light);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  background: var(--container-color);
  right: 1rem;
  bottom: -20%;
  display: inline-flex;
  padding: .3rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  opacity: .8;
  transition: .4s;
}

.scrollup__icon {
  font-size: 1.25rem;
  color: var(--title-color);
}

.scrollup:hover {
  background: var(--container-color);
  opacity: 1;
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: .5rem;
}

/*===============  BREAKPOINTS ===============*/
/* For extra small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
    padding: 0 0.5rem;
  }

  .home__img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }

  .home__buttons {
    flex-direction: column;
    width: 100%;
    row-gap: 1rem;
  }

  .home__title {
    font-size: 1.5rem !important;
  }

  .home__description {
    font-size: 0.85rem;
  }

  .category__container,
  .trick__container {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 1rem;
  }

  /* About section mobile fixes */
  .about__main {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .about__stats {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }

  .stat__item {
    padding: 0.75rem 0.5rem !important;
  }

  .features__grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Services mobile fixes */
  .services__grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .service__card {
    padding: 1rem !important;
  }

  /* Contact form mobile fixes */
  .contact__grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .form__row {
    grid-template-columns: 1fr !important;
  }

  /* Navigation mobile fixes */
  .nav {
    height: 4.5rem !important;
  }
  
  .nav__logo-img {
    width: 7rem !important;
  }
}

/* For small devices */
@media screen and (min-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .home__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

/* For medium devices */
@media screen and (min-width: 576px) {
  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .stat__item {
    padding: 0.75rem 0.5rem;
  }

  .stat__number {
    font-size: 1.25rem;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .cta__buttons {
    flex-direction: row;
    justify-content: center;
  }

  .newsletter__container {
    display: grid;
    grid-template-columns: .7fr;
    justify-content: center;
  }

  .newsletter__description {
    padding: 0 3rem;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .section {
    padding: 3rem 0 2rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.1rem);
  }

  .nav__img,
  .nav__close,
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    position: static !important;
    width: auto !important;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    top: auto !important;
    left: auto !important;
    padding: 0 !important;
    transition: none !important;
    z-index: auto !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 2.25rem;
  }

  .nav__link {
    text-transform: initial;
    font-weight: initial;
    font-size: .95rem;
    padding: .35rem 0;
  }

  .nav__logo-img {
    width: 6rem;
  }

  .home__content {
    padding: 8rem 0 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
  }

  .home__data {
    transform: scale(1.03);
  }

  .home__img {
    max-width: 100%;
    height: auto;
  }

  .swiper-pagination {
    margin-top: var(--mb-2);
  }

  .category__container {
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
  }

  .about__main {
    display: flex !important;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: stretch;
  }

  .about__visual {
    flex: 1 1 300px;
  }

  .about__content {
    flex: 2 1 400px;
  }

  .about__text {
    text-align: left;
  }

  .about__img {
    max-width: 100%;
    height: auto;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .cta__buttons {
    flex-direction: row;
  }

  .contact__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
  }

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

  .trick__container {
    grid-template-columns: repeat(3, 200px);
    justify-content: center;
    gap: 2rem;
  }

  .discount__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    align-items: center;
    column-gap: 3rem;
    padding: 3rem 0;
    border-radius: 3rem;
  }

  .discount__img {
    width: 350px;
    order: -1;
  }

  .discount__data {
    padding-right: 6rem;
  }

  .newsletter__container {
    grid-template-columns: .5fr;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    column-gap: 1rem;
  }

  .footer__img-two {
    right: initial;
    bottom: 0;
    left: 15%;
  }
}

/* For large devices */
@media screen and (min-width: 992px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .section__title {
    font-size: var(--h1-font-size);
    margin-bottom: 3rem;
  }

  .nav__logo-img {
    width: 6.5rem;
  }

  .home__content {
    padding-top: 9rem;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .home__group {
    padding-top: 0;
  }

  .home__img {
    max-width: 100%;
    height: auto;
    transform: none;
  }
  .home__data {
    transform: scale(1.06);
    max-width: 600px;
  }

  .home__indicator {
    top: initial;
    right: initial;
    bottom: 15%;
    left: 45%;
  }

  .home__indicator::after {
    top: 0;
    height: 75px;
  }

  .home__details-img {
    bottom: 0;
    right: 58%;
  }

  .home__title {
    margin-bottom: var(--mb-1-5);
  }

  .home__description {
    margin-bottom: var(--mb-2-5);
    padding-right: 2rem;
  }

  .category__container {
    column-gap: 8rem;
  }

  .category__img {
    width: 200px;
  }

  .about__main {
    gap: 3rem;
  }

  .about__img {
    max-width: 100%;
    height: auto;
  }

  .features__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .about__cta {
    padding: 4rem 3rem;
  }

  .trick__container {
    gap: 3.5rem;
  }

  .trick__content {
    border-radius: 1.5rem;
  }

  .trick__img {
    width: 110px;
  }

  .trick__title {
    font-size: var(--h3-font-size);
  }

  .discount__container {
    column-gap: 7rem;
  }

  .new__content {
    width: 310px;
    border-radius: 1rem;
    padding: 2rem 0;
  }

  .new__img {
    width: 150px;
  }

  .new__img,
  .new__subtitle {
    margin-bottom: var(--mb-1);
  }

  .new__title {
    font-size: var(--h3-font-size);
  }

  .footer__copy {
    margin-top: 6rem;
  }
}

@media screen and (min-width: 1200px) {
  .home__img {
    max-width: 780px;
  }
  .home__data{
    transform: scale(1.08);
  }

  .swiper-pagination {
    margin-top: var(--mb-2-5);
  }

  .footer__img-one {
    width: 120px;
  }

  .footer__img-two {
    width: 180px;
    top: 30%;
    left: -3%;
  }
  
  .footer__container {
    padding: 3rem 0;
  }
  
  .footer__logo {
    font-size: 1.5rem;
  }
  
  .footer__logo-img {
    width: 65px;
  }
  
  .footer__social {
    column-gap: 1.25rem;
  }
  
  .footer__social-link {
    padding: 1rem;
    font-size: 1.3rem;
  }
}

/*=============== KEYFRAMES ===============*/
@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }

  50% {
    transform: translate(0, 15px);
  }

  100% {
    transform: translate(0, -0px);
  }
}

/*=============== SERVICES ===============*/
.services {
  background: #f8f9fa;
}

.services .container {
  max-width: 1100px;
}

.services__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services__header .section__title {
  color: var(--first-color);
  position: relative;
  margin-bottom: 1rem;
}

.services__header .section__title span {
  color: var(--title-color);
}

.services__header .section__title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5rem;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--first-color), var(--accent-color));
  border-radius: 2px;
}

.services__subtitle {
  font-size: 1.05rem;
  color: var(--text-color-light);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.service__card {
  position: relative;
  background: var(--container-color);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(139, 0, 0, 0.10);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}

.service__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(135deg, rgba(139,0,0,0.18), rgba(212,175,55,0.18));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.service__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  border-color: rgba(139, 0, 0, 0.18);
}

.service__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  color: #fff;
  box-shadow: 0 6px 18px rgba(139,0,0,0.25);
}

.service__icon--primary { background: var(--first-color); }
.service__icon--success { background: #28a745; box-shadow: 0 6px 18px rgba(40,167,69,0.25); }
.service__icon--warning { background: #ffc107; box-shadow: 0 6px 18px rgba(255,193,7,0.25); }

.service__title {
  font-size: 1.2rem;
  color: var(--title-color);
  margin-bottom: .5rem;
  font-weight: 700;
  text-align: center;
}

.service__description {
  color: var(--text-color);
  line-height: 1.6;
  font-size: .95rem;
  text-align: center;
  margin-bottom: 1rem;
}

.service__features {
  display: grid;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.service__feature {
  display: flex;
  align-items: center;
  column-gap: .65rem;
  color: var(--text-color);
  font-size: .95rem;
}

.service__feature .check {
  color: var(--first-color);
  background: #f3f3f3;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 1rem;
}

.service__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.service__btn--primary { 
  background: var(--first-color) !important; 
  color: #ffffff !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 0.85rem 1.25rem !important;
  font-size: 0.95rem !important;
}
.service__btn--success { 
  background: #28a745 !important; 
  color: #ffffff !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}
.service__btn--warning { 
  background: #ffc107 !important; 
  color: #111 !important;
  border: none !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}

.service__btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.18) !important;
}

.service__btn--primary:hover {
  background: var(--first-color-alt) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(139, 0, 0, 0.3) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.service__btn--primary:focus {
  background: var(--first-color-alt) !important;
  color: #ffffff !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.2) !important;
}

.service__btn--primary:active {
  background: var(--first-color-alt) !important;
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3) !important;
}

.service__btn--success:hover {
  background: #218838 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(33, 136, 56, 0.3) !important;
}

.service__btn--warning:hover {
  background: #e0a800 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(224, 168, 0, 0.3) !important;
}

.services__cta {
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  color: #fff;
  text-align: center;
}

.services__cta h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: .75rem;
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2s ease-in-out infinite;
}

.services__cta p { opacity: .92; margin-bottom: 1.25rem; }

.services__cta .cta__actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services__cta .cta__btn {
  border-radius: 999px;
  padding: .8rem 1.25rem;
  font-weight: 700;
}

.services__cta .cta__btn--light { 
  background: #fff !important; 
  color: var(--first-color) !important;
  border: 2px solid #fff !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}
.services__cta .cta__btn--ghost { 
  background: transparent !important; 
  color: #fff !important; 
  border: 2px solid #fff !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}

.services__cta .cta__btn--light:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3) !important;
}

.services__cta .cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2) !important;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Services responsive tweaks */
@media screen and (min-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* Enhanced Mobile Responsiveness - Extra Small Devices */
@media (max-width: 480px) {
  /* Base container improvements */
  .container {
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
    padding: 0 0.5rem !important;
  }

  /* Navigation improvements */
  .nav {
    padding: 0 1rem !important;
    position: relative !important;
    z-index: 1000 !important;
  }

  .nav__toggle {
    position: relative !important;
    z-index: 1001 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  .nav {
    height: 4.5rem !important;
  }
  
  .nav__logo-img {
    width: 7.5rem !important;
  }

  .nav__menu {
    width: 100% !important;
    height: 100vh !important;
    padding: 4rem 2rem 2rem !important;
    top: -100vh !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 999 !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    transition: all 0.4s ease !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.90)) !important;
    backdrop-filter: saturate(180%) blur(20px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
  }

  .nav__menu.show-menu {
    top: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1000 !important;
  }

  .nav__toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.5rem !important;
    color: var(--title-color) !important;
    cursor: pointer !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    position: relative !important;
  }

  .nav__toggle:hover {
    background: rgba(139, 0, 0, 0.1) !important;
    color: var(--first-color) !important;
    transform: scale(1.05) !important;
  }

  .nav__toggle:active {
    background: rgba(139, 0, 0, 0.2) !important;
    transform: scale(0.95) !important;
  }

  .nav__toggle:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.2) !important;
  }

  /* Hamburger to Cross transformation */
  .nav__toggle.show-menu .bx-grid-alt::before {
    content: '' !important; /* Hide the original icon */
  }

  .nav__toggle.show-menu .bx-grid-alt::after {
    content: '✕' !important; /* Add a simple X */
    font-family: Arial, sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  .nav__toggle.show-menu {
    background: var(--first-color) !important;
    color: #ffffff !important;
    transform: none !important;
    position: relative !important;
  }

  .nav__toggle.show-menu:hover {
    background: var(--first-color-alt) !important;
    transform: scale(1.05) !important;
  }

  .nav__list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    padding: 2rem 0 !important;
    height: 100% !important;
    list-style: none !important;
  }

  .nav__item {
    width: 100% !important;
    text-align: center !important;
  }

  .nav__link {
    font-size: 1.1rem !important;
    padding: 1rem 2rem !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    border-radius: 0.75rem !important;
    background: rgba(139, 0, 0, 0.05) !important;
    border: 1px solid rgba(139, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    color: var(--title-color) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    margin: 0.5rem 0 !important;
  }

  .nav__link:hover {
    background: var(--first-color) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2) !important;
  }

  .nav__link.active-link {
    background: var(--first-color) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2) !important;
  }

  .button--ghost {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
  }

  /* Mobile menu contact button styling */
  .nav__list .nav__item:last-child {
    margin-top: 1rem !important;
    padding-top: 1rem !important;
    border-top: 2px solid rgba(139, 0, 0, 0.1) !important;
  }

  .nav__list .button--ghost {
    background: var(--first-color) !important;
    color: #ffffff !important;
    border: 2px solid var(--first-color) !important;
    border-radius: 0.75rem !important;
    padding: 1.2rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2) !important;
    min-height: 48px !important;
  }

  .nav__list .button--ghost:hover {
    background: var(--first-color-alt) !important;
    border-color: var(--first-color-alt) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.3) !important;
    color: #ffffff !important;
  }

  .nav__list .button--ghost:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3) !important;
  }

  /* Home section improvements */
  .home {
    padding: 1rem 0 !important;
  }

  .home__content {
    padding: 2rem 0 1rem !important;
    gap: 1.5rem !important;
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .home__data {
    transform: none !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .home__title {
    font-size: 1.6rem !important;
    line-height: 1.1 !important;
    margin-bottom: 0.75rem !important;
  }

  .home__subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
  }

  .home__description {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
  }

  .home__buttons {
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  .home__buttons .button,
  .home__buttons .button--link {
    width: 100% !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .home__buttons .button {
    background: var(--first-color) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
  }

  .home__buttons .button:hover {
    background: var(--first-color-alt) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3) !important;
  }

  .home__buttons .button--link {
    background: rgba(139, 0, 0, 0.1) !important;
    color: var(--first-color) !important;
    border: 1px solid rgba(139, 0, 0, 0.2) !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
  }

  .home__buttons .button--link:hover {
    background: var(--first-color) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2) !important;
  }

  .home__group {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .home__img {
    width: 100% !important;
    max-width: 300px !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 1rem !important;
  }

  /* Section spacing */
  .section {
    padding: 2rem 0 1rem !important;
  }

  /* About section improvements */
  .about {
    padding: 2rem 0 !important;
    margin-top: 2rem !important;
  }

  .about__container {
    padding: 0 1rem !important;
  }

  .about__header {
    text-align: center !important;
    margin-bottom: 2rem !important;
  }

  .about__header .section__title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
  }

  .about__subtitle {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .about__main {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: center !important;
  }

  .about__visual {
    flex: 1 1 100% !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
  }

  .about__img {
    max-width: 280px !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    border-radius: 1rem !important;
    box-shadow: 0 4px 20px rgba(139,0,0,0.15) !important;
  }

  /* Years overlay card mobile optimization */
  .about__visual div[style*="position:absolute"] {
    position: absolute !important;
    bottom: 1rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: var(--first-color) !important;
    color: #fff !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 0.75rem !important;
    min-width: 160px !important;
    text-align: center !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2) !important;
  }

  .about__visual div[style*="font-size:2rem"] {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.25rem !important;
  }

  .about__visual div[style*="font-size:1rem"] {
    font-size: 0.8rem !important;
    letter-spacing: 0.5px !important;
    opacity: 0.9 !important;
  }

  .about__content {
    flex: 1 1 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .about__text {
    text-align: center !important;
    width: 100% !important;
  }

  .about__title {
    font-size: 1.4rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
  }

  .about__description {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    text-align: left !important;
    max-width: 100% !important;
  }

  .about__stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
    margin-top: 1.5rem !important;
  }

  .stat__item {
    background: var(--container-color) !important;
    border-radius: 0.75rem !important;
    padding: 1rem !important;
    text-align: center !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  .stat__number {
    font-size: 1.3rem !important;
    color: var(--first-color) !important;
    font-weight: 800 !important;
    margin-bottom: 0.25rem !important;
  }

  .stat__label {
    font-size: 0.85rem !important;
    color: var(--text-color) !important;
    font-weight: 500 !important;
  }

  /* Features section mobile optimization */
  .about__features {
    margin-top: 2.5rem !important;
    width: 100% !important;
  }

  .features__title {
    text-align: center !important;
    font-size: 1.4rem !important;
    margin-bottom: 1.5rem !important;
    color: var(--title-color) !important;
  }

  .features__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  .feature__card {
    margin: 0 auto !important;
    max-width: 300px !important;
    width: 100% !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
    background: var(--container-color) !important;
  }

  .feature__media {
    width: 100% !important;
    height: 180px !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .feature__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .feature__overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 1rem !important;
    color: #fff !important;
  }

  .feature__header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    background: rgba(0,0,0,0.6) !important;
    padding: 0.75rem !important;
    border-radius: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .feature__title {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    color: #fff !important;
  }

  .feature__hint {
    display: none !important;
  }

  .feature__description {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    margin: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    background: rgba(0,0,0,0.7) !important;
    padding: 0.75rem !important;
    border-radius: 0.5rem !important;
  }

  /* Override inline styles for mobile */
  .about__main[style] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: center !important;
  }

  .about__visual[style] {
    flex: 1 1 100% !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
  }

  .about__content[style] {
    flex: 1 1 100% !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .about__stats[style] {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
    margin-top: 1.5rem !important;
    justify-content: center !important;
  }

  /* Services section improvements */
  .services {
    padding: 2rem 0 !important;
  }

  .services__header .section__title {
    font-size: 1.8rem !important;
  }

  .services__subtitle {
    font-size: 0.9rem !important;
  }

  .services__grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .service__card {
    padding: 1.25rem 1rem !important;
    margin: 0 auto !important;
    max-width: 320px !important;
  }

  .service__title {
    font-size: 1.1rem !important;
  }

  .service__description {
    font-size: 0.85rem !important;
  }

  .service__btn {
    background: var(--first-color) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 0.85rem 1.25rem !important;
    font-size: 0.95rem !important;
  }

  .service__btn:hover {
    background: var(--first-color-alt) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.3) !important;
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .service__btn:focus {
    background: var(--first-color-alt) !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.2) !important;
  }

  .service__btn:active {
    background: var(--first-color-alt) !important;
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3) !important;
  }

  .services__cta {
    padding: 1.5rem 1rem !important;
    margin: 1.5rem 0 !important;
  }

  .services__cta h3 {
    font-size: 1.4rem !important;
  }

  .cta__actions {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .cta__btn {
    width: 100% !important;
    padding: 0.85rem 1rem !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
  }

  .cta__btn--light {
    background: #ffffff !important;
    color: var(--first-color) !important;
    border: 2px solid #ffffff !important;
  }

  .cta__btn--light:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3) !important;
  }

  .cta__btn--ghost {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }

  .cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2) !important;
  }

  /* Testimonials improvements */
  .testimonial__card {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    padding: 1rem !important;
  }

  .testimonial__text {
    font-size: 0.85rem !important;
  }

  /* Increased gap between testimonial cards on small devices */
  .new-swiper {
    padding: 0 1rem !important;
  }

  .swiper-slide {
    margin-right: 1.5rem !important;
  }

  /* Contact improvements */
  .contact {
    padding: 2rem 0 !important;
  }

  .contact__header .section__title {
    font-size: 1.8rem !important;
  }

  .contact__subtitle {
    font-size: 0.9rem !important;
  }

  .contact__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .contact__card {
    padding: 0.75rem !important;
  }

  .contact__form {
    padding: 1rem !important;
  }

  .form__row {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  .form__input,
  .form__textarea {
    padding: 0.75rem !important;
    font-size: 0.9rem !important;
  }

  .contact__cta {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }

  .contact__cta .button,
  .contact__cta .button--ghost {
    width: 100% !important;
    margin-bottom: 0 !important;
    padding: 0.85rem 1rem !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
  }

  .contact__cta .button {
    background: var(--first-color) !important;
    color: #ffffff !important;
    border: none !important;
  }

  .contact__cta .button:hover {
    background: var(--first-color-alt) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3) !important;
  }

  .contact__cta .button--ghost {
    background: transparent !important;
    color: var(--first-color) !important;
    border: 2px solid var(--first-color) !important;
  }

  .contact__cta .button--ghost:hover {
    background: var(--first-color) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2) !important;
  }

  /* Footer improvements */
  .footer {
    padding: 2rem 0 1rem !important;
    background: #ffffff !important;
  }

  .footer__container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto auto !important;
    text-align: center !important;
    gap: 1.5rem !important;
    padding: 0 1rem !important;
    max-width: 100% !important;
  }

  /* Logo section spans full width at top */
  .footer__content:nth-child(1) {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    margin-bottom: 0rem !important;
  }

  /* Second row: About and Our Services side by side */
  .footer__content:nth-child(2),
  .footer__content:nth-child(3) {
    grid-column: span 1 !important;
    grid-row: 2 !important;
  }

  /* Third row: Contact spans full width */
  .footer__content:nth-child(4) {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
  }

  .footer__content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
    padding: 0rem 0 !important;
  }

  .footer__logo {
    font-size: 1.2rem !important;
    margin-bottom: 0rem !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
  }

  .footer__logo-img {
    width: 95px !important;
    height: auto !important;
  }

  .footer__description {
    font-size: 0.9rem !important;
    max-width: 100% !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin: 0 auto 1rem auto !important;
    padding: 0 1rem !important;
  }

  .footer__title {
    font-size: 1.1rem !important;
    margin-bottom: 0rem !important;
    color: var(--first-color) !important;
    font-weight: 600 !important;
    text-align: center !important;
    position: relative !important;
  }

  .footer__title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40px !important;
  }

  .footer__links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0rem !important;
    align-items: center !important;
    width: 100% !important;
  }

  .footer__link {
    font-size: 0.9rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.3s ease !important;
    min-width: 120px !important;
    text-align: center !important;
    display: inline-block !important;
  }

  .footer__link:hover {
    background: transparent !important;
    color: var(--first-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: none !important;
    padding-left: 1rem !important;
  }

  .footer__copy {
    font-size: 0.85rem !important;
    margin-top: 2rem !important;
    padding: 1.5rem 1rem 0 !important;
    border-top: 2px solid rgba(139, 0, 0, 0.1) !important;
    color: var(--text-color-light) !important;
    text-align: center !important;
    line-height: 1.5 !important;
  }

  /* Hide decorative images on mobile */
  .footer__img-one,
  .footer__img-two {
    display: none !important;
  }
}

/* Large mobile devices - Better footer layout */
@media (min-width: 481px) and (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  /* Footer for medium devices */
  .footer {
    padding: 2rem 0 1.25rem !important;
  }

  .footer__container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
    padding: 0 1.25rem !important;
  }

  .footer__content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.1rem !important;
    padding: 1.1rem 0 !important;
  }

  .footer__logo {
    font-size: 1.25rem !important;
    margin-bottom: 1.1rem !important;
    justify-content: center !important;
  }

  .footer__logo-img {
    width: 90px !important;
  }

  .footer__description {
    font-size: 0.92rem !important;
    max-width: 100% !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin: 0 auto 1.4rem auto !important;
    padding: 0 1rem !important;
  }

  .footer__title {
    font-size: 1.15rem !important;
    margin-bottom: 1.1rem !important;
    text-align: center !important;
  }

  .footer__title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 42px !important;
  }

  .footer__links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    align-items: center !important;
    width: 100% !important;
  }

  .footer__link {
    font-size: 0.92rem !important;
    padding: 0.55rem 1.1rem !important;
    border-radius: 0.55rem !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.3s ease !important;
    min-width: 130px !important;
    text-align: center !important;
    display: inline-block !important;
  }

  .footer__link:hover {
    background: transparent !important;
    color: var(--first-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: none !important;
    padding-left: 1.1rem !important;
  }

  .footer__copy {
    font-size: 0.87rem !important;
    margin-top: 2.25rem !important;
    padding: 1.6rem 1.25rem 0 !important;
    border-top: 2px solid rgba(139, 0, 0, 0.1) !important;
    text-align: center !important;
    line-height: 1.5 !important;
  }

  /* Hide decorative images on medium devices */
  .footer__img-one,
  .footer__img-two {
    display: none !important;
  }
}

/* Tablet specific improvements */
@media (min-width: 641px) and (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  /* Navigation for tablets */
  .nav {
    height: 4.5rem !important;
  }
  
  .nav__logo-img {
    width: 8rem;
  }

  /* Home section for tablets */
  .home__content {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    text-align: center !important;
    padding: 3rem 0 2rem !important;
  }

  .home__data {
    transform: none !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .home__title {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }

  .home__subtitle {
    font-size: 1rem !important;
  }

  .home__description {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    max-width: 500px !important;
    margin: 0 auto 1.5rem auto !important;
  }

  .home__buttons {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
  }

  .home__group {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .home__img {
    max-width: 400px !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 1rem !important;
  }

  /* About section for tablets */
  .about {
    padding: 2.5rem 0 !important;
  }

  .about__container {
    padding: 0 1.5rem !important;
    max-width: 700px !important;
    margin: 0 auto !important;
  }

  .about__header {
    margin-bottom: 2.5rem !important;
  }

  .about__header .section__title {
    font-size: 2.2rem !important;
  }

  .about__subtitle {
    font-size: 1rem !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }

  .about__main {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem !important;
    align-items: center !important;
  }

  .about__visual {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .about__img {
    max-width: 400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    border-radius: 1.25rem !important;
  }

  /* Years overlay for tablets */
  .about__visual div[style*="position:absolute"] {
    padding: 1rem 1.5rem !important;
    min-width: 200px !important;
    bottom: 1.25rem !important;
    border-radius: 1rem !important;
  }

  .about__visual div[style*="font-size:2rem"] {
    font-size: 1.8rem !important;
  }

  .about__visual div[style*="font-size:1rem"] {
    font-size: 0.9rem !important;
  }

  .about__content {
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }

  .about__text {
    text-align: center !important;
  }

  .about__title {
    font-size: 1.6rem !important;
  }

  .about__description {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }

  .about__stats {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    max-width: 600px !important;
    margin: 2rem auto 0 !important;
  }

  .stat__item {
    flex: 1 1 150px !important;
    max-width: 180px !important;
    padding: 1.25rem 1rem !important;
  }

  .stat__number {
    font-size: 1.4rem !important;
  }

  .stat__label {
    font-size: 0.9rem !important;
  }

  /* Features for tablets */
  .about__features {
    margin-top: 3rem !important;
  }

  .features__title {
    font-size: 1.6rem !important;
    margin-bottom: 2rem !important;
  }

  .features__grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }

  .feature__card {
    max-width: 100% !important;
    width: 100% !important;
  }

  .feature__media {
    height: 200px !important;
  }

  .feature__title {
    font-size: 1.1rem !important;
  }

  .feature__description {
    font-size: 0.9rem !important;
  }

  .feature__hint {
    display: none !important;
  }

  /* Services for tablets */
  .services__grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    max-width: 500px !important;
    margin: 0 auto !important;
  }

  .service__card {
    max-width: 100% !important;
  }

  .services__cta {
    padding: 2rem 1.5rem !important;
  }

  .cta__actions {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 1rem !important;
  }

  .cta__btn {
    border-radius: 999px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
  }

  .cta__btn--light {
    background: #ffffff !important;
    color: var(--first-color) !important;
    border: 2px solid #ffffff !important;
  }

  .cta__btn--light:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3) !important;
  }

  .cta__btn--ghost {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }

  .cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2) !important;
  }

  /* Testimonials for tablets */
  .testimonial__card {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }

  /* Increased gap between testimonial cards on tablets */
  .new-swiper {
    padding: 0 1.25rem !important;
  }

  .swiper-slide {
    margin-right: 1.25rem !important;
  }

  /* Contact for tablets */
  .contact__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }

  .contact__form {
    padding: 1.5rem !important;
  }

  .form__row {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  .contact__cta {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 1rem !important;
  }

  .contact__cta .button,
  .contact__cta .button--ghost {
    width: auto !important;
    min-width: 150px !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
  }

  .contact__cta .button {
    background: var(--first-color) !important;
    color: #ffffff !important;
    border: none !important;
  }

  .contact__cta .button:hover {
    background: var(--first-color-alt) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3) !important;
  }

  .contact__cta .button--ghost {
    background: transparent !important;
    color: var(--first-color) !important;
    border: 2px solid var(--first-color) !important;
  }

  .contact__cta .button--ghost:hover {
    background: var(--first-color) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2) !important;
  }

  /* Footer for tablets */
  .footer {
    padding: 2.5rem 0 1.5rem !important;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
    text-align: center !important;
    padding: 0 1.5rem !important;
    max-width: 100% !important;
  }

  .footer__content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.25rem !important;
    padding: 1.25rem 0 !important;
  }

  .footer__logo {
    font-size: 1.3rem !important;
    margin-bottom: 1.25rem !important;
    justify-content: center !important;
  }

  .footer__logo-img {
    width: 55px !important;
  }

  .footer__description {
    font-size: 0.95rem !important;
    max-width: 100% !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin: 0 auto 1.5rem auto !important;
    padding: 0 1rem !important;
  }

  .footer__title {
    font-size: 1.2rem !important;
    margin-bottom: 1.25rem !important;
    text-align: center !important;
  }

  .footer__title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 45px !important;
  }

  .footer__links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
    align-items: center !important;
    width: 100% !important;
  }

  .footer__link {
    font-size: 0.95rem !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 0.6rem !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.3s ease !important;
    min-width: 140px !important;
    text-align: center !important;
    display: inline-block !important;
  }

  .footer__link:hover {
    background: transparent !important;
    color: var(--first-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: none !important;
    padding-left: 1.25rem !important;
  }

  .footer__copy {
    font-size: 0.9rem !important;
    margin-top: 2.5rem !important;
    padding: 1.75rem 1.5rem 0 !important;
    border-top: 2px solid rgba(139, 0, 0, 0.1) !important;
    text-align: center !important;
    line-height: 1.5 !important;
  }

  /* Show decorative images on tablets but smaller */
  .footer__img-one,
  .footer__img-two {
    display: block !important;
    opacity: 0.6 !important;
  }

  .footer__img-one {
    width: 80px !important;
    top: 4rem !important;
    right: -1rem !important;
  }

  .footer__img-two {
    width: 120px !important;
    bottom: 3rem !important;
    right: 2rem !important;
  }
}

/* Extra Small Devices - Very Small Phones */
@media (max-width: 360px) {
  .container {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
    padding: 0 0.25rem !important;
  }

  .nav {
    height: 4rem !important;
  }
  
  .nav__logo-img {
    width: 6rem !important;
  }

  .home__title {
    font-size: 1.4rem !important;
    line-height: 1.1 !important;
  }

  .home__subtitle {
    font-size: 0.8rem !important;
  }

  .home__description {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  .home__buttons .button,
  .home__buttons .button--link {
    padding: 0.75rem 0.85rem !important;
    font-size: 0.85rem !important;
  }

  .home__buttons .button {
    background: var(--first-color) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
  }

  .home__buttons .button:hover {
    background: var(--first-color-alt) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3) !important;
  }

  .home__buttons .button--link {
    background: rgba(139, 0, 0, 0.1) !important;
    color: var(--first-color) !important;
    border: 1px solid rgba(139, 0, 0, 0.2) !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
  }

  .home__buttons .button--link:hover {
    background: var(--first-color) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2) !important;
  }

  .about__header .section__title {
    font-size: 1.6rem !important;
  }

  .about__subtitle {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
  }

  .about__title {
    font-size: 1.2rem !important;
  }

  .about__description {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
  }

  .about__img {
    max-width: 250px !important;
  }

  /* Years overlay for very small screens */
  .about__visual div[style*="position:absolute"] {
    padding: 0.5rem 1rem !important;
    min-width: 140px !important;
    bottom: 0.75rem !important;
  }

  .about__visual div[style*="font-size:2rem"] {
    font-size: 1.3rem !important;
  }

  .about__visual div[style*="font-size:1rem"] {
    font-size: 0.75rem !important;
  }

  .stat__item {
    padding: 0.85rem !important;
    max-width: 250px !important;
  }

  .stat__number {
    font-size: 1.2rem !important;
  }

  .stat__label {
    font-size: 0.8rem !important;
  }

  .features__title {
    font-size: 1.2rem !important;
  }

  .feature__card {
    max-width: 280px !important;
  }

  .feature__media {
    height: 160px !important;
  }

  .feature__title {
    font-size: 0.9rem !important;
  }

  .feature__description {
    font-size: 0.8rem !important;
  }

  .feature__hint {
    display: none !important;
  }

  .services__header .section__title {
    font-size: 1.6rem !important;
  }

  .service__card {
    padding: 1rem 0.75rem !important;
    max-width: 280px !important;
  }

  .service__title {
    font-size: 1rem !important;
  }

  .service__description {
    font-size: 0.8rem !important;
  }

  .service__btn {
    background: var(--first-color) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 0.75rem 1rem !important;
  }

  .service__btn:hover {
    background: var(--first-color-alt) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.3) !important;
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .service__btn:focus {
    background: var(--first-color-alt) !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.2) !important;
  }

  .service__btn:active {
    background: var(--first-color-alt) !important;
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3) !important;
  }

  .contact__header .section__title {
    font-size: 1.6rem !important;
  }

  .testimonial__card {
    max-width: 280px !important;
    padding: 0.85rem !important;
  }

  .testimonial__text {
    font-size: 0.8rem !important;
  }

  /* Extra spacing for very small devices */
  .new-swiper {
    padding: 0 0.75rem !important;
  }

  .swiper-slide {
    margin-right: 1.25rem !important;
  }

  .footer {
    padding: 1.5rem 0 1rem !important;
  }

  .footer__container {
    gap: 1.5rem !important;
    padding: 0 0.75rem !important;
  }

  .footer__content {
    gap: 0.85rem !important;
    padding: 0.85rem 0 !important;
  }

  .footer__logo {
    font-size: 1.1rem !important;
    margin-bottom: 0.85rem !important;
    gap: 0.6rem !important;
  }

  .footer__logo-img {
    width: 85px !important;
  }

  .footer__description {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin: 0 auto 1.25rem auto !important;
    padding: 0 0.75rem !important;
  }

  .footer__title {
    font-size: 1rem !important;
    margin-bottom: 0.85rem !important;
  }

  .footer__title::after {
    width: 35px !important;
  }

  .footer__links {
    gap: 0.65rem !important;
  }

  .footer__link {
    font-size: 0.85rem !important;
    padding: 0.5rem 0.85rem !important;
    border-radius: 0.5rem !important;
    min-width: 110px !important;
  }

  .footer__link:hover {
    padding-left: 0.85rem !important;
  }

  .footer__copy {
    font-size: 0.8rem !important;
    margin-top: 1.75rem !important;
    padding: 1.25rem 0.75rem 0 !important;
    line-height: 1.4 !important;
  }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .home__content {
    padding: 1rem 0 !important;
    gap: 1rem !important;
  }

  .home__title {
    font-size: 1.4rem !important;
  }

  .home__description {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }

  .section {
    padding: 1.5rem 0 1rem !important;
  }

  .about,
  .services,
  .contact {
    padding: 1.5rem 0 !important;
  }
}

/* Touch Target Optimization for Mobile */
@media (max-width: 768px) {
  /* Ensure all clickable elements have minimum 44px touch target */
  .button,
  .button--ghost,
  .button--link,
  .nav__link,
  .cta__btn,
  .footer__link {
    min-height: 44px !important;
    min-width: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.5rem !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    font-size: 0.9rem !important;
  }

  /* Service buttons specific styling for mobile */
  .service__btn {
    min-height: 44px !important;
    min-width: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
    border-radius: 999px !important;
    background: var(--first-color) !important;
    color: #ffffff !important;
    border: none !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    width: 100% !important;
  }

  .footer__link:hover,
  .footer__link:focus {
    background: transparent !important;
    color: var(--first-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .footer__link:active {
    transform: translateY(0) !important;
    box-shadow: none !important;
  }

  /* Service button hover and focus states for mobile */
  .service__btn:hover,
  .service__btn:focus {
    background: var(--first-color-alt) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.3) !important;
    outline: none !important;
    text-decoration: none !important;
  }

  .service__btn:active {
    background: var(--first-color-alt) !important;
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3) !important;
  }

  /* Navigation touch targets */
  .nav__toggle {
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
  }

  .nav__close {
    display: none !important;
  }

  .nav__close:hover {
    background: var(--first-color) !important;
    color: #ffffff !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.2) !important;
  }

  .nav__close:active {
    background: var(--first-color-alt) !important;
    transform: scale(0.95) !important;
  }

  .nav__close:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.2) !important;
  }

  /* Form elements touch targets */
  .form__input,
  .form__textarea {
    min-height: 44px !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
  }

  /* Contact buttons */
  .contact__cta .button,
  .contact__cta .button--ghost {
    min-height: 48px !important;
    padding: 0.85rem 1.25rem !important;
  }

  /* Service buttons */
  .service__btn {
    min-height: 48px !important;
    padding: 0.85rem 1.25rem !important;
    font-size: 0.95rem !important;
    background: var(--first-color) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .service__btn:hover,
  .service__btn:focus {
    background: var(--first-color-alt) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.3) !important;
    outline: none !important;
    text-decoration: none !important;
  }

  .service__btn:active {
    background: var(--first-color-alt) !important;
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.3) !important;
  }

  /* Footer links */
  .footer__link {
    padding: 0.5rem 0 !important;
    min-height: 40px !important;
  }
}

/* Improved scrolling and performance */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection for content */
p, h1, h2, h3, h4, h5, h6, span, div, .home__description, .about__description, .service__description, .testimonial__text, .contact__subtitle, .footer__description {
  -webkit-user-select: text !important;
  -khtml-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

/* Smooth scrolling for all devices */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Prevent zoom on input focus for iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select,
  textarea,
  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"] {
    font-size: 16px !important;
  }
}