/*=============== LOCAL FONT ===============*/
@font-face {
  font-family: 'Rabar';
  src: url('../fonts/Rabar_038.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

:root {

  /**
   * COLORS
   */

  --gold-crayola: hsl(38, 61%, 73%);
  --quick-silver: hsla(0, 0%, 65%, 1);
  --davys-grey: hsla(30, 3%, 34%, 1);
  --smoky-black-1: hsla(40, 12%, 5%, 1);
  --smoky-black-2: hsla(30, 8%, 5%, 1);
  --smoky-black-3: hsla(0, 3%, 7%, 1);
  --eerie-black-1: hsla(210, 4%, 9%, 1);
  --eerie-black-2: hsla(210, 4%, 11%, 1);
  --eerie-black-3: hsla(180, 2%, 8%, 1);
  --eerie-black-4: hsla(0, 0%, 13%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --white-alpha-20: hsla(0, 0%, 100%, 0.2);
  --white-alpha-10: hsla(0, 0%, 100%, 0.1);
  --black: hsla(0, 0%, 0%, 1);
  --black-alpha-80: hsla(0, 0%, 0%, 0.25);
  --black-alpha-15: hsla(0, 0%, 0%, 0.15);
  --border-radius: 12px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);



  /**
   * GRADIENT COLOR
   */

  --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%, transparent 66.66% 75%);
  --gradient-1: linear-gradient(to top, hsla(0, 0%, 0%, 0.9), hsla(0, 0%, 0%, 0.7), transparent);

  /**
   * TYPOGRAPHY
   */



  --fontFamily-rabar: 'Rabar', sans-serif;

  /* font-size */
  --fontSize-display-1: calc(1.3rem + 6.7vw);
  --fontSize-headline-1: calc(2rem + 2.5vw);
  --fontSize-headline-2: calc(1.3rem + 2.4vw);
  --fontSize-title-1: calc(1.6rem + 1.2vw);
  --fontSize-title-2: 2.2rem;
  --fontSize-title-3: 2.1rem;
  --fontSize-title-4: calc(1.6rem + 1.2vw);
  --fontSize-body-1: 2.4rem;
  --fontSize-body-2: 1.6rem;
  --fontSize-body-3: 1.8rem;
  --fontSize-body-4: 1.6rem;
  --fontSize-label-1: 1.4rem;
  --fontSize-label-2: 1.2rem;

  /* font-weight */
  --weight-regular: 400;
  --weight-bold: 700;

  /* line-height */
  --lineHeight-1: 1em;
  --lineHeight-2: 1.2em;
  --lineHeight-3: 1.5em;
  --lineHeight-4: 1.6em;
  --lineHeight-5: 1.85em;
  --lineHeight-6: 1.4em;

  /* letter-spacing */
  --letterSpacing-1: 0em;
  --letterSpacing-2: 0em;
  --letterSpacing-3: 0em;
  --letterSpacing-4: 0em;
  --letterSpacing-5: 0px;

  /**
   * SPACING
   */

  --section-space: 70px;

  /**
   * SHADOW
   */

  --shadow-1: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);

  /**
   * BORDER RADIUS
   */

  --radius-24: 24px;
  --radius-circle: 50%;

  /**
   * TRANSITION
   */

  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: 1000ms ease;

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a,
img,
data,
span,
input,
button,
select,
ion-icon,
textarea {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button,
select,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--eerie-black-1);
  color: var(--white);
  font-family: var(--fontFamily-rabar);
  font-size: var(--fontSize-body-4);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-5);
  overflow: hidden;
  font-family: 'Rabar', sans-serif;
  height: 300vh;
}

body.loaded {
  overflow: overlay;
}

body.nav-active {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--gold-crayola);
}


.footer-link i {
  margin-inline-end: 8px;
  vertical-align: middle;
  font-size: 1.2em;
}


/*-----------------------------------*\
  #TYPOGRAPHY
\*-----------------------------------*/

.display-1,
.headline-1,
.headline-2,
.title-1,
.title-2,
.title-3,
.title-4 {
  color: var(--white);
  font-family: var(--fontFamily-rabar);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}

.display-1 {
  font-size: var(--fontSize-display-1);
  line-height: var(--lineHeight-1);
}

.headline-1 {
  font-size: var(--fontSize-headline-1);
}

.headline-2 {
  font-size: var(--fontSize-headline-2);
  line-height: var(--lineHeight-6);
}

.title-1 {
  font-size: var(--fontSize-title-1);
}

.title-2 {
  font-size: var(--fontSize-title-2);
}

.title-3 {
  font-size: var(--fontSize-title-3);
}

.title-4 {
  font-size: var(--fontSize-title-4);
}

.body-1 {
  font-size: var(--fontSize-body-1);
  line-height: var(--lineHeight-6);
}

.body-2 {
  font-size: var(--fontSize-body-2);
  line-height: var(--lineHeight-4);
}

.body-3 {
  font-size: var(--fontSize-body-3);
}

.body-4 {
  font-size: var(--fontSize-body-4);
}

.label-1 {
  font-size: var(--fontSize-label-1);
}

.label-2 {
  font-size: var(--fontSize-label-2);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 16px;
}

.separator {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-crayola);
  transform: rotate(45deg);
}

.contact-label {
  font-weight: var(--weight-bold);
}

.contact-number {
  color: var(--gold-crayola);
  max-width: max-content;
  margin-inline: auto;
}

.hover-underline {
  position: relative;
  max-width: max-content;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid var(--gold-crayola);
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);
}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}

.contact-number::after {
  bottom: -5px;
}

.text-center {
  text-align: center;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  position: relative;
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 12px;
}

.section-subtitle::after {
  display: block;
  width: 100px;
  margin-inline: auto;
  margin-block-start: 5px;
}

.btn {
  position: relative;
  color: var(--gold-crayola);
  font-size: var(--fontSize-label-2);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-5);
  max-width: max-content;
  border: 2px solid var(--gold-crayola);
  padding: 12px 45px;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: var(--radius-circle);
  background-color: var(--gold-crayola);
  transition: var(--transition-2);
  z-index: -1;
}

.btn .text {
  transition: var(--transition-1);
}

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: var(--smoky-black-1);
}

.btn:is(:hover, :focus-visible)::before {
  bottom: -50%;
}

.btn:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}

.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-secondary {
  background-color: var(--gold-crayola);
  color: var(--black);
}

.btn-secondary::before {
  background-color: var(--smoky-black-1);
}

.btn-secondary .text-2 {
  color: var(--white);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
  z-index: 1;
}

.bg-black-10 {
  background-color: var(--smoky-black-2);
}

.grid-list {
  display: grid;
  gap: 40px;
}

.hover\:shine {
  position: relative;
}

.hover\:shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
  transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {
  transform: skewX(-0.08turn) translateX(275%);
  transition: var(--transition-3);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
  background-color: var(--eerie-black-4);
}

.btn-text {
  color: var(--gold-crayola);
  padding-block-end: 4px;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  font-weight: var(--weight-bold);
  transition: var(--transition-1);
}

.btn-text:is(:hover, :focus-visible) {
  color: var(--white);
}

.shape {
  display: none;
  position: absolute;
  max-width: max-content;
  z-index: -1;
}

.w-100 {
  width: 100%;
}

.move-anim {
  animation: move 5s linear infinite;
}

@keyframes move {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.input-field {
  background-color: var(--eerie-black-2);
  color: var(--white);
  height: 56px;
  padding: 10px 20px;
  border: 1px solid var(--white-alpha-10);
  margin-block-end: 20px;
  outline: none;
  transition: border-color var(--transition-2);
}

.input-field::placeholder {
  color: inherit;
}

.input-field:focus {
  border-color: var(--gold-crayola);
}

.icon-wrapper {
  position: relative;
  margin-block-end: 20px;
}

.icon-wrapper .input-field {
  margin-block-end: 0;
  padding-inline-start: 40px;
  appearance: none;
  cursor: pointer;
}

.icon-wrapper ion-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  --ionicon-stroke-width: 50px;
  pointer-events: none;
}

.icon-wrapper ion-icon:first-child {
  left: 15px;
}

.icon-wrapper ion-icon:last-child {
  right: 10px;
}





/*-----------------------------------*\
  #PRELOAD
\*-----------------------------------*/

.preload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gold-crayola);
  z-index: 10;
  display: grid;
  place-content: center;
  justify-items: center;
  transition: var(--transition-2);
}

.preload>* {
  transition: var(--transition-1);
}

.preload.loaded>* {
  opacity: 0;
}

.preload.loaded {
  transition-delay: 250ms;
  transform: translateY(100%);
}

.circle {
  width: 112px;
  height: 112px;
  border-radius: var(--radius-circle);
  border: 3px solid var(--white);
  border-block-start-color: var(--smoky-black-3);
  margin-block-end: 45px;
  animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}

.preload .text {
  background-image: var(--loading-text-gradient);
  background-size: 500%;
  font-size: calc(2rem + 3vw);
  font-weight: var(--weight-bold);
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0px;
  padding-inline-start: 16px;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.5px var(--eerie-black-3);
  animation: loadingText linear 2s infinite;
}

@keyframes loadingText {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}





/*-----------------------------------*\
  #TOPBAR
\*-----------------------------------*/

.topbar {
  display: none;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  padding-block: 40px;
  z-index: 4;
  border-block-end: 1px solid transparent;
  transition: var(--transition-1);
}

.header.active {
  padding-block: 20px;
  background-color: var(--eerie-black-4);
  border-color: var(--black-alpha-15);
}

.header.hide {
  transform: translateY(-100%);
  transition-delay: 250ms;
}

.header .container {
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.nav-open-btn {
  padding: 12px;
  padding-inline-end: 0;
}

.nav-open-btn .line {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin-block: 4px;
  transform-origin: left;
  animation: branchsBtn 400ms ease-in-out alternate infinite;
}

@keyframes branchsBtn {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0.5);
  }
}

.nav-open-btn .line-2 {
  animation-delay: 150ms;
}

.nav-open-btn .line-3 {
  animation-delay: 300ms;
}

.navbar {
  position: fixed;
  background-color: var(--smoky-black-1);
  top: 0;
  left: -360px;
  bottom: 0;
  max-width: 360px;
  width: 100%;
  padding-inline: 30px;
  padding-block-end: 50px;
  overflow-y: auto;
  visibility: hidden;
  z-index: 2;
  transition: var(--transition-2);
}

.navbar.active {
  visibility: visible;
  transform: translateX(360px);
}

.navbar .close-btn {
  color: var(--white);
  border: 1px solid currentColor;
  padding: 4px;
  border-radius: var(--radius-circle);
  margin-inline-start: auto;
  margin-block: 30px 20px;
}

.navbar .close-btn ion-icon {
  --ionicon-stroke-width: 40px;
}

.navbar .close-btn:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.navbar .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 60px;
}

.navbar-list {
  border-block-end: 1px solid var(--white-alpha-20);
  margin-block-end: 100px;
}

.navbar-item {
  border-block-start: 1px solid var(--white-alpha-20);
  font-size: 1.4rem;
}

.navbar-link {
  position: relative;
  font-size: 1.4rem;
  text-transform: uppercase;
  padding-block: 10px;
  max-width: unset;
}

.navbar-link::after {
  display: none;
}

.navbar-link .span {
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active) .span {
  color: var(--gold-crayola);
  transform: translateX(20px);
}

.navbar-link .separator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active) .separator {
  opacity: 1;
}

.navbar-title {
  margin-block-end: 15px;
}

.navbar-text {
  margin-block: 10px;
}

.navbar .body-4 {
  color: var(--quick-silver);
}

.sidebar-link {
  transition: var(--transition-1);
}

.sidebar-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.navbar .text-center .separator {
  margin-block: 30px;
  margin-inline: auto;
}

.navbar .contact-label {
  margin-block-end: 10px;
}

.navbar::-webkit-scrollbar-thumb {
  background-color: var(--white-alpha-10);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--black-alpha-80);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
  z-index: 1;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}





/*-----------------------------------*\
  #home
\*-----------------------------------*/

.home .slider-btn {
  display: none;
}

.home {
  position: relative;
  padding-block: 120px;
  min-height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.home .slider-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  padding-block-start: 100px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-3);
  z-index: 1;
}

.home .slider-item.active {
  opacity: 1;
  visibility: visible;
}

.home .slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.15);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.home .slider-item.active .slider-bg {
  animation: smoothScale 7s linear forwards;
}


.home .slider-bg img {
  filter: brightness(0.4);
}

@keyframes smoothScale {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.home .section-subtitle::after {
  margin-block: 14px 20px;
}

.home-text {
  margin-block: 10px 40px;
}

.home .btn {
  margin-inline: auto;
}

.home-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 2;
  background-color: var(--gold-crayola);
  width: 110px;
  height: 110px;
  padding: 12px;
  transform: scale(0.6);
}

.home-btn img {
  margin-inline: auto;
  margin-block-end: 6px;
}

.home-btn .span {
  color: var(--black);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-1);
  line-height: var(--lineHeight-3);
}

.home-btn::after {
  inset: 0;
  border: 1px solid var(--gold-crayola);
  animation: rotate360 15s linear infinite;
}

.slider-reveal {
  transform: translateY(30px);
  opacity: 0;
}

.home .slider-item.active .slider-reveal {
  animation: sliderReveal 1s ease forwards;
}

@keyframes sliderReveal {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.home .slider-item.active .section-subtitle {
  animation-delay: 500ms;
}

.home .slider-item.active .home-title {
  animation-delay: 1000ms;
}

.home .slider-item.active .home-text {
  animation-delay: 1.5s;
}

.home .slider-item.active .btn {
  animation-delay: 2s;
}



/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  background: linear-gradient(to bottom, var(--eerie-black-1), var(--eerie-black-2));
  position: relative;
  overflow: hidden;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.about .section-title {
  font-size: 3.5rem;
  color: var(--gold-crayola);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about .section-subtitle {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.about .section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: var(--gold-crayola);
}

.about .quality-badge {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid var(--gold-crayola);
  border-radius: 20px;
  padding: 20px;
  margin: 30px 0;
  position: relative;
}

.about .quality-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
}

.about .highlight {
  font-size: 2rem;
  line-height: 1.6;
  color: var(--white);
  margin: 0;
}

.about .gold-text {
  color: var(--gold-crayola);
  font-weight: bold;
  font-size: 2.2rem;
  display: block;
  margin-top: 10px;
}

.about-history,
.our-pride {
  background: var(--eerie-black-3);
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
  text-align: right;
  border-left: 4px solid var(--gold-crayola);
}

.history-title,
.pride-title {
  color: var(--gold-crayola);
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-family: var(--fontFamily-rabar);
}

.history-text,
.pride-text {
  color: var(--quick-silver);
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.read-more-content {
  display: none;
  padding-top: 15px;
  border-top: 1px dashed var(--gold-crayola);
  margin-top: 15px;
}

.about-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 5px solid var(--gold-crayola);
}

.about-banner img {
  transition: transform 0.5s ease;
}

.about-banner:hover img {
  transform: scale(1.05);
}

.achievement-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--gold-crayola);
  color: var(--eerie-black-1);
  padding: 15px 25px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.years {
  font-size: 2.5rem;
  display: block;
  line-height: 1;
}

.label {
  font-size: 1.4rem;
}

.contact-label {
  font-size: 1.6rem;
  color: var(--gold-crayola);
  margin: 30px 0 10px;
}

.contact-number {
  font-size: 2rem;
  color: var(--white);
  display: block;
  margin-bottom: 30px;
  transition: color 0.3s ease;
}

.contact-number:hover {
  color: var(--gold-crayola);
}

.btn {
  font-size: 1.6rem;
  padding: 15px 35px;
  background: var(--gold-crayola);
  color: var(--eerie-black-1);
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-banner {
    margin-top: 50px;
  }

  .about .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .about .section-title {
    font-size: 2.4rem;
  }

  .highlight {
    font-size: 1.6rem;
  }

  .gold-text {
    font-size: 1.8rem;
  }

  .history-title,
  .pride-title {
    font-size: 1.8rem;
  }

  .history-text,
  .pride-text {
    font-size: 1.4rem;
  }
}

/*-----------------------------------*\
  #branchs
\*-----------------------------------*/



#branchs-social {
  max-width: 700px;
  margin: 3rem auto;
  padding: 0 1rem;
}

#branchs-social .social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

#branchs-social .social-item {
  --bg-color: #6e41e2;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

#branchs-social .social-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

#branchs-social .social-link {
  display: flex;
  align-items: center;
  padding: 1.4rem 1.6rem;
  background-color: var(--bg-color);
  color: white;
  text-decoration: none;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#branchs-social .social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  border-radius: 16px;
}

#branchs-social .social-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.4rem;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

#branchs-social .social-item:hover .social-icon {
  background-color: rgba(255, 255, 255, 0.4);
}

#branchs-social .social-icon i {
  font-size: 36px;
  transition: transform 0.3s ease;
}

#branchs-social .social-item:hover .social-icon i {
  transform: scale(1.1);
}

#branchs-social .social-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#branchs-social .social-name {
  font-weight: 800;
  font-size: 1.5rem;
  /* Bigger font */
  margin-bottom: 0.3rem;
  letter-spacing: 0.0em;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

#branchs-social .social-action {
  font-size: 1.1rem;
  opacity: 0.85;
  font-weight: 600;
}

/* Snapchat text black */
#branchs-social .social-item .social-link[href*="snapchat"] .social-info,
#branchs-social .social-item .social-link[href*="snapchat"] .social-name,
#branchs-social .social-item .social-link[href*="snapchat"] .social-action {
  color: #000000 !important;
}

/* Alternatively, better use the platform class for snapchat */
/* Add this to your PHP: class += " platform-snapchat" */
/* Then: */
#branchs-social .platform-snapchat .social-info,
#branchs-social .platform-snapchat .social-name,
#branchs-social .platform-snapchat .social-action {
  color: #000000 !important;
}

#branchs-social .social-arrow {
  margin-right: 0.6rem;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

#branchs-social .social-link:hover .social-arrow {
  transform: translateX(-8px);
}

/* Instagram gradient fix */
#branchs-social .platform-instagram .social-link {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

@media (max-width: 768px) {
  #branchs-social .social-link {
    padding: 1.1rem 1.3rem;
  }

  #branchs-social .social-icon {
    width: 52px;
    height: 52px;
    margin-left: 1rem;
  }

  #branchs-social .social-icon i {
    font-size: 28px;
  }

  #branchs-social .social-name {
    font-size: 1.3rem;
  }

  #branchs-social .social-action {
    font-size: 1rem;
  }

  #branchs-social .social-arrow {
    font-size: 1.4rem;
  }
}



.branchs .section-title {
  margin-block-end: 40px;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: var(--letterSpacing-1);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.branchs .section-subtitle {
  font-size: 1.8rem;
  color: var(--gold-crayola);
  margin-bottom: 1rem;
}

.branchs .grid-list {
  margin-block-end: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.branch-card {
  display: flex;
  flex-direction: column;
  background: var(--eerie-black-2);
  border-radius: var(--radius-24);
  overflow: hidden;
  transition: var(--transition-2);
  height: 100%;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--gold-crayola);
}

.branch-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--white);
}

.branch-card .card-banner {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.branch-card .card-banner .img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}


.branch-card .card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.branch-card .title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.branch-card .card-title {
  font-size: 2rem;
  margin: 0;
  transition: var(--transition-1);
  color: var(--gold-crayola);
  font-family: var(--fontFamily-rabar);
  font-weight: var(--weight-bold);
}

.branch-card .card-title:hover {
  color: var(--white);
  text-decoration: underline;
}

.branch-card .badge {
  background-color: var(--gold-crayola);
  color: var(--eerie-black-1);
  font-size: 1rem;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: bold;
}

.branch-card .card-text {
  color: var(--quick-silver);
  line-height: 1.8;
  margin-bottom: 15px;
  flex-grow: 1;
  font-size: 1.5rem;
}


.branch-card .card-text strong {
  display: inline-block;
  width: 120px;
  vertical-align: top;
  color: var(--white);
  font-weight: var(--weight-bold);
}

.branch-card .card-text span {
  display: inline-block;
  vertical-align: top;
}


/* Styles for inactive branches */
.inactive-branch {
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.8;
  position: relative;
}

.inactive-branch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 1;
}

.inactive-branch .img-cover,
.inactive-branch video {
  filter: grayscale(100%) contrast(0.8);
}

.inactive-branch .card-title {
  color: #666;
  cursor: default;
  text-decoration: none;
}

.inactive-branch .badge {
  background-color: #ccc;
  color: #666;
}




.inactive-message {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  margin-top: 10px;
}

.inactive-text {
  color: #666;
  font-style: italic;
  margin: 0;
}

/* Optional: Add a subtle "INACTIVE" overlay */
.inactive-branch .card-banner::after {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .branchs .section-title {
    font-size: 2.8rem;
  }

  .branchs .grid-list {
    grid-template-columns: 1fr;
  }

  .branch-card {
    flex-direction: column;
  }

  .branch-card .card-banner {
    height: 200px;
  }

  .branch-card .card-title {
    font-size: 1.8rem;
  }

  .branch-card .card-text {
    font-size: 1.4rem;
  }
}

/* Shapes and other elements */
.branchs-text {
  font-size: 1.6rem;
  margin-top: 30px;
}

.branchs-text .span {
  display: inline-block;
  color: var(--gold-crayola);
  font-weight: bold;
}

.branchs .btn {
  margin-inline: auto;
  margin-block-start: 30px;
  font-size: 1.6rem;
  padding: 15px 30px;
}

.branchs .shape {
  display: block;
  width: 70%;
  position: absolute;
  z-index: -1;
  opacity: 0.7;
}

.branchs .shape-2 {
  top: 0;
  left: 0;
}

.branchs .shape-3 {
  bottom: 0;
  right: 0;
}




/*-----------------------------------*\
  #Contact
\*-----------------------------------*/


/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.contact {
  background-color: var(--eerie-black-2);
  padding-block: var(--section-space);
  position: relative;
  overflow: hidden;
}

.contact .container {
  display: grid;
  gap: 80px;
}

.contact-content {
  text-align: center;
}

.contact .section-title {
  color: var(--gold-crayola);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact .section-text {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 40px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.contact-info {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-card {
  background: var(--eerie-black-3);
  padding: 30px;
  border-radius: var(--radius-24);
  text-align: center;
  transition: var(--transition-2);
  border: 1px solid var(--gold-crayola);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-crayola);
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 20px;
}

.card-icon ion-icon {
  font-size: 2.4rem;
  color: var(--eerie-black-1);
}

.card-title {
  color: var(--white);
  margin-bottom: 15px;
}

.contact-link {
  transition: var(--transition-1);
  margin-bottom: 10px;
}

.contact-link:hover {
  color: var(--gold-crayola);
}

.contact-form {
  background: var(--smoky-black-1);
  padding: 40px;
  border-radius: var(--radius-24);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--gold-crayola);
}

.contact-form .input-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.contact-form .input-field {
  width: 100%;
  padding: 15px 15px 15px 50px;
  border: 1px solid var(--white-alpha-10);
  background: var(--eerie-black-2);
  color: var(--white);
  border-radius: 10px;
  transition: var(--transition-1);
}

.contact-form .input-field:focus {
  border-color: var(--gold-crayola);
}

.contact-form .textarea {
  height: 150px;
  resize: none;
  padding-top: 15px;
}

.contact-form ion-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--gold-crayola);
  font-size: 2rem;
}

.contact-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 1.6rem;
}

.contact-map {
  border-radius: var(--radius-24);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--gold-crayola);
}

/* Responsive Design */
@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .contact-content {
    text-align: right;
  }

  .contact-form {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .contact-form {
    padding: 30px 20px;
  }

  .contact-card {
    padding: 20px;
  }
}
















/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--eerie-black-1);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
  z-index: 1;
  direction: rtl;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.footer-top {
  margin-block-end: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-brand {
  position: relative;
  padding: 50px 40px;
  background: var(--smoky-black-1) url("../images/footer-form-bg.png");
  background-position: center top;
  background-repeat: repeat;
  border-radius: var(--radius-24);
  box-shadow: var(--shadow-1);
}

.footer-brand::before,
.footer-brand::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15px;
  height: 100%;
  background-image: url("../images/footer-form-pattern.svg");
  background-repeat: repeat-y;
}

.footer-brand::before {
  left: 0;
}

.footer-brand::after {
  right: 0;
}

.footer-brand .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 40px;
  transition: transform var(--transition-1);
}

.footer-brand .logo:hover {
  transform: scale(1.05);
}

.footer-brand :is(.body-4, .label-1) {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.footer-brand .contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-block: 6px;
  transition: var(--transition-1);
  justify-content: center;
}

.footer-brand .contact-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.footer-brand .wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-block: 40px 25px;
}

.footer-brand .separator {
  width: 40px;
  height: 2px;
  background: var(--gold-crayola);
  animation: rotate360 15s linear infinite;
}

.footer-brand .label-1 {
  margin-block-end: 30px;
  font-size: var(--fontSize-label-1);
}

.footer-brand .label-1 .span {
  display: inline;
  color: var(--white);
}

.footer-brand .icon-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.footer-brand .icon-wrapper ion-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-crayola);
  font-size: 20px;
}

.footer-brand .input-field {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border-radius: 50px;
  border: 1px solid var(--gold-crayola);
  background: transparent;
  color: var(--white);
  cursor: text;
  transition: var(--transition-1);
}

.footer-brand .input-field:focus {
  border-color: var(--white);
  outline: none;
}

.footer-brand .btn {
  min-width: 100%;
  padding: 15px;
  background: var(--gold-crayola);
  color: var(--eerie-black-1);
  border: none;
  border-radius: 50px;
  font-weight: var(--weight-bold);
  transition: var(--transition-2);
}

.footer-brand .btn:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-list {
  display: grid;
  gap: 20px;
  text-align: right;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--quick-silver);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-4);
  margin-inline: auto;
  transition: var(--transition-1);
  justify-content: flex-end;
}

.footer-link ion-icon {
  font-size: 16px;
}

.footer-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
  text-decoration: underline;
}

.social-links .footer-link {
  justify-content: flex-start;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 50px;
  text-align: center;
}

.copyright {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
  font-size: var(--fontSize-label-2);
}

.copyright .link {
  display: inline;
  color: var(--gold-crayola);
  text-decoration: underline;
  font-weight: var(--weight-bold);
  transition: var(--transition-1);
}

.copyright .link:hover {
  color: var(--white);
}

/* Animation */
@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-list {
    text-align: center;
  }

  .footer-link {
    justify-content: center;
  }

  .footer-brand::before,
  .footer-brand::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 20px;
  }

  .footer-brand {
    padding: 30px 20px;
  }

  .footer-link {
    font-size: var(--fontSize-label-2);
  }
}






/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--white);
  color: var(--gold-crayola);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-body-2: 2rem;

  }



  /**
   * REUSED STYLE
   */

  :is(.service, .about) .section-text {
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-number {
    --fontSize-body-1: 3rem;
  }



  /**
   * TOPBAR
   */

  .topbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 10px;
    border-block-end: 1px solid var(--white-alpha-20);
    z-index: 4;
    transition: var(--transition-1);
  }

  .topbar:has(~ .header.active) {
    transform: translateY(-100%);
  }

  .topbar-item:not(.link),
  .topbar .separator {
    display: none;
  }

  .topbar .container,
  .topbar-item {
    display: flex;
    align-items: center;
  }

  .topbar .container {
    justify-content: center;
    gap: 30px;
  }

  .topbar-item {
    gap: 6px;
  }

  .topbar-item ion-icon {
    --ionicon-stroke-width: 60px;
  }

  .topbar-item .span {
    font-size: var(--fontSize-label-1);
  }

  .topbar .link {
    transition: var(--transition-1);
  }

  .topbar .link:is(:hover, :focus-visible) {
    color: var(--gold-crayola);
  }



  /**
   * HEADER
   */

  .header {
    top: 51px;
  }

  .header.active {
    top: 0;
  }

  .header .btn {
    display: block;
    margin-inline-start: auto;
  }



  /**
   * home
   */

  .home-btn {
    transform: scale(0.7);
  }



  /**
   * SERVICE
   */

  .service .container {
    max-width: 420px;
    margin-inline: auto;
  }



  /**
   * ABOUT
   */

  .about .container {
    gap: 80px;
  }

  .about-banner>.w-100 {
    padding-inline-start: 90px;
  }

  .about .abs-img-1 {
    width: 285px;
  }

  .about .contact-number {
    --fontSize-body-1: 2.4rem;
  }



  /**
   * branchs
   */

  .branchs-card .title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }

  .branchs-card .badge {
    margin-block-start: 0;
  }

  .branchs-card .span {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
  }

  .branchs-card .span::before {
    content: "";
    height: 6px;
    flex-grow: 1;
    border-block: 1px solid var(--white-alpha-20);
  }



  /**
   * EVENT
   */

  .event .container {
    max-width: 420px;
    margin-inline: auto;
  }



  /**
   * FOOTER
   */

  .footer-brand>* {
    max-width: 460px;
    margin-inline: auto;
  }

  .footer .input-wrapper {
    position: relative;
  }

  .footer .input-field {
    margin-block-end: 0;
    padding-inline-end: 205px;
  }

  .footer-brand .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: max-content;
  }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  :is(.service, .event) .container {
    max-width: 820px;
  }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 20px);
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .navbar-list {
    margin-inline: 30px;
  }



  /**
   * home
   */

  .home .slider-btn {
    display: grid;
    position: absolute;
    z-index: 1;
    color: var(--gold-crayola);
    font-size: 2.4rem;
    border: 1px solid var(--gold-crayola);
    width: 45px;
    height: 45px;
    place-items: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition-1);
  }

  .home .slider-btn ion-icon {
    transform: rotate(-45deg);
  }

  .home .slider-btn.prev {
    left: 30px;
  }

  .home .slider-btn.next {
    right: 30px;
  }

  .home .slider-btn:is(:hover, :focus-visible) {
    background-color: var(--gold-crayola);
    color: var(--black);
  }



  /**
   * RESERVATION
   */

  .reservation .input-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  .reservation .input-wrapper:nth-child(4) {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * FOOTER
   */

  .footer-brand {
    grid-column: 1 / 3;
  }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-space: 100px;

  }



  /**
   * REUSED STYLE
   */

  :is(.service, .event) .container {
    max-width: unset;
  }

  :is(.service, .event) .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: auto;
    width: 100%;
  }



  /**
   * TOPBAR
   */

  .topbar-item:not(.link) {
    display: flex;
  }

  .topbar .item-2 {
    margin-inline-end: auto;
  }



  /**
   * SERVICE
   */

  .service .shape {
    display: block;
  }

  .service .shape-1 {
    bottom: 0;
    left: 0;
  }

  .service .shape-2 {
    top: 0;
    right: 0;
  }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 0.7fr 1fr;
    gap: 30px;
  }




  /**
   * branchs
   */

  .branchs .grid-list {
    position: relative;
    column-gap: 90px;
  }

  .branchs .grid-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    border-inline-start: 1px solid var(--white-alpha-20);
  }



  /**
   * TESTIMONIALS
   */

  .testi-text {
    max-width: 910px;
    margin-inline: auto;
  }



  /**
   * RESERVATION
   */

  .reservation-form {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
  }



  /**
   * FOOTER
   */

  .footer .grid-list {
    grid-template-columns: 0.45fr 1fr 0.45fr;
    align-items: center;
  }

  .footer-brand {
    grid-column: auto;
    order: 1;
    padding-block: 100px;
  }

  .footer-list:last-child {
    order: 2;
  }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-title-2: 2.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container,
  :is(.service, .event) .container {
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * TOPBAR
   */

  .topbar .container {
    max-width: unset;
  }

  .topbar .separator {
    display: block;
  }



  /**
   * HEADER
   */

  .nav-open-btn,
  .navbar>*:not(.navbar-list),
  .header .overlay {
    display: none;
  }

  .header .container {
    max-width: unset;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
  }

  .navbar,
  .navbar.active {
    margin-inline: auto 20px;
  }

  .navbar-list {
    display: flex;
    gap: 30px;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar .separator {
    display: none;
  }

  .navbar-link:is(:hover, :focus-visible, .active) .span {
    transform: unset;
  }

  .navbar-link {
    font-weight: var(--weight-bold);
    letter-spacing: var(--letterSpacing-1);
  }

  .navbar-link::after {
    display: block;
  }

  .navbar-link.active::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .header .btn {
    margin-inline-start: 0;
  }



  /**
   * home
   */

  .home {
    height: 880px;
  }

  .home-btn {
    bottom: 50px;
    right: 50px;
    transform: scale(1);
  }




  /**
   * ABOUT
   */

  .about {
    padding-block: 170px 100px;
  }





  /**
   * branchs
   */

  .branchs .grid-list {
    gap: 55px 200px;
    margin-block-end: 55px;
  }



  /**
   * TESTIMONIALS
   */

  .form-left,
  .form-right {
    padding: 75px 60px;
  }




  /**
   * FEATURES
   */

  .features .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

}





/**
 * responsive for larger than 1400px screen
 */

@media (min-width: 1400px) {

  /**
   * HEADER
   */

  .navbar {
    margin-inline: auto;
  }



  /**
   * ABOUT
   */

  .about-content {
    padding-inline-end: 90px;
  }

  .about .shape {
    display: block;
    top: 46%;
    left: 0;
  }


}


/* Galary */
/* Welcome Gallery Overlay Styles */
.welcome-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.welcome-overlay.active {
  opacity: 1;
  visibility: visible;
}

.welcome-container {
  background-color: var(--eerie-black-3);
  border: 1px solid var(--gold-crayola);
  border-radius: 12px;
  max-width: 900px;
  width: 95%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.welcome-header {
  padding: 20px;
  background-color: var(--eerie-black-4);
  border-bottom: 1px solid var(--white-alpha-10);
  text-align: center;
  position: relative;
}

.welcome-title {
  color: var(--gold-crayola);
  font-size: 2rem;
  margin-bottom: 5px;
}

.welcome-subtitle {
  color: var(--quick-silver);
  font-size: 1.1rem;
}

.close-welcome {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold-crayola);
  color: var(--smoky-black-1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-welcome:hover {
  transform: rotate(90deg);
}

.welcome-gallery {
  height: 60vh;
  position: relative;
}

.gallery-main {
  height: 100%;
  position: relative;
}

.gallery-slide {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s ease;
}

.gallery-slide.active {
  opacity: 1;
}

.welcome-media {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, var(--smoky-black-3), transparent);
  color: var(--white);
}

.slide-caption h3 {
  color: var(--gold-crayola);
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.gallery-thumbs {
  display: flex;
  padding: 10px;
  background-color: var(--eerie-black-4);
  overflow-x: auto;
  gap: 10px;
}

.thumb-item {
  width: 80px;
  height: 60px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.thumb-item.active {
  border-color: var(--gold-crayola);
  opacity: 1;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background-color: var(--eerie-black-4);
  border-top: 1px solid var(--white-alpha-10);
}

@media (max-width: 768px) {
  .welcome-title {
    font-size: 1.5rem;
  }

  .welcome-subtitle {
    font-size: 0.9rem;
  }

  .welcome-gallery {
    height: 50vh;
  }

  .welcome-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* gaalry */



/* Gallery Section */
.luxury-gallery {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  padding: 3rem 0;
}

.luxury-gallery .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.luxury-headline {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.title-accent {
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
}

.gold-text {
  color: var(--gold);
}

.luxury-subtitle {
  color: #999;
  font-size: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Gallery Layout */
.desktop-gallery {
  display: none;
}

.mobile-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 769px) {
  .mobile-gallery {
    display: none;
  }

  .desktop-gallery {
    display: grid;
    grid-template-columns: 1fr 2.2fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 1.2rem;
    height: 75vh;
    min-height: 650px;
  }

  .left-column,
  .right-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .center-video {
    grid-row: span 2;
    align-self: stretch;
  }

  .bottom-row {
    grid-column: span 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    height: 180px;
  }
}

/* Gallery Items */
.gallery-item,
.center-video {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  will-change: transform;
  transform: translateZ(0);
}

.mobile-gallery .gallery-item {
  aspect-ratio: 16/9;
  height: auto;
}

.desktop-gallery .gallery-item {
  flex: 1;
  min-height: 0;
}

.media-frame {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.15);
  position: relative;
  background: #111;
}

.media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
  will-change: transform;
  transform: translateZ(0);
}

.gallery-item:hover .media,
.center-video:hover .media {
  transform: scale(1.05);
}

/* Media Type Icons */
.media-type-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 2;
  transition: var(--transition);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.center-video .media-type-icon {
  width: 38px;
  height: 38px;
  top: 16px;
  right: 16px;
}

.gallery-item:hover .media-type-icon,
.center-video:hover .media-type-icon {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  padding: 1rem;
  opacity: 0;
  transition: var(--transition);
  transform: translateY(10px);
}

.gallery-item:hover .overlay,
.center-video:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay-content {
  color: white;
}

.item-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.featured .item-title {
  font-size: 1.2rem;
}

/* Badge */
.badge {
  background: linear-gradient(135deg, var(--gold), #e6b800);
  color: var(--text-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90%;
  margin: 0 auto;
  animation: lightboxSlide 0.3s ease-out;
}

@keyframes lightboxSlide {
  from {
    transform: scale(0.9) translateY(30px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.media-container {
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.media-container img,
.media-container video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
}

.close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Performance Optimizations */
.gallery-item,
.center-video,
.media,
.overlay,
.media-type-icon {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .luxury-headline {
    font-size: 1.8rem;
  }

  .title-accent {
    font-size: 2rem;
  }

  .mobile-gallery .gallery-item {
    height: 220px;
  }

  .item-title {
    font-size: 0.85rem;
  }

  .media-type-icon {
    width: 28px;
    height: 28px;
    top: 8px;
    right: 8px;
  }

  .overlay {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .mobile-gallery .gallery-item {
    height: 180px;
  }

  .luxury-subtitle {
    font-size: 0.9rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }
}

/* High DPI Screen Optimizations */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .media-type-icon svg {
    width: 14px;
    height: 14px;
  }

  .center-video .media-type-icon svg {
    width: 18px;
    height: 18px;
  }
}