@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Unna:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+MX:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

.ff {
  font-family: 'Hello Freshtea Brush';
  letter-spacing: -8px;
}

.headline__title {
  line-height: 1px;
  font-size: 140px;
}

.title-goldy {
  margin-top: 90px;
  font-size: 140px;
  line-height: 12px;
  margin-bottom: 20px;
}
.goldy-text {
  background: linear-gradient(271deg, rgba(230, 182, 151, 1) 0%, rgba(173, 120, 86, 1) 5%, rgba(122, 74, 46, 1) 10%, rgba(181, 127, 92, 1) 50%, rgba(230, 182, 151, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding: 100px 0;
  font-size: 210px;
  animation: shine 2s linear infinite;
}

.headline__title--gallery-final .goldy-text {
  display: block;
  padding: 0.35em 0 0;
  line-height: 1.05;
}

.headline__title--gallery-final .goldy-projects {
  display: inline;
}

.headline__title--gallery-final {
  line-height: normal;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}


.title-goldy-white {
  font-size: 140px;
}

@media screen and (max-width:600px) {
  .headline__title {
    line-height: 1px;
    font-size: 80px;
  }
  
  .title-goldy {
    font-size: 80px;
  }
  
  .goldy-text {
    font-size: 100px;
    padding: 50px 0;
  }
  
  .headline__title--gallery-final .goldy-projects {
    display: block;
  }
  
  .title-goldy-white {
    font-size: 80px;
  }
}


.mt-150 {
  margin-top: 150px;
}

.logo__icon {
  width: 155px;
}

blockquote {
  font-size: 4.8rem;
  line-height: 1.4;
  margin-bottom: 0;
}

@media screen and (max-width:600px) {
  blockquote {
    font-size: 2.8rem;
  }
}

@media screen and (max-width:1200px) {
  blockquote {
    font-size: 2.8rem;
  }
  .menu__link {
    font-size: 2.5rem;
    padding: 0.8rem 4.2rem;
  }
  .menu__list {
    border: 1px solid rgba(204, 204, 204, 0.226);
    border-radius: 13px;
  }
}

@media screen and (max-width:1199px) {
  .logo__icon {
    width: 115px;
  }
}

/* ========== ROOT COLORS ========== */
:root {
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --text-light: #1e293b;
  --text-dark: #f1f5f9;
}


/* Wrapper */
.color-wrapper {
  /* padding: 5px; */
  border-radius: 20px;
  backdrop-filter: blur(20px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Button */
.color-switcher {
  width: 80px;
  height: 42px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  cursor: pointer;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.2);
}

/* Glow Effect */
.color-switcher::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(45deg, #f1f1f1, #ffffff);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.dark .color-switcher::before {
  opacity: 0.3;
}

/* Thumb */
.switch-thumb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 3px;
  left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

/* Slide */
body.dark .switch-thumb {
  transform: translateX(38px);
}

/* Icons */
.icon {
  position: absolute;
  font-size: 16px;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.sun {
  opacity: 1;
}

.moon {
  opacity: 0;
}

body.dark .sun {
  opacity: 0;
  transform: rotate(180deg);
}

body.dark .moon {
  opacity: 1;
  transform: rotate(360deg);
}

/* Scope of Works list icons */
.scope-works-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.scope-works-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.scope-works-list li i {
  margin-top: 0.2em;
  opacity: 0.9;
}

/* logo video */
.video-mask {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  
  -webkit-mask-image: url("../img/logo/logo-icon.png");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  
  mask-image: url("../img/logo/logo-icon.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.video-mask video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.items__container {
  display: flex;
  gap: 20px; /* optional */
}

.projects-divider .item {
  width: 500px;
  height: 500px;
  flex: 0 0 500px;
  border-radius: 10px;
  overflow: hidden;
}

.projects-divider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.cta-footer .h2__text {
  margin-top: 0;
  padding-right: 40px;
}

.map {
  padding: 0 18%;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
}

/* Floating Button */
.fab-icon {
  position: absolute;
  top: 20%;
  right: 21%;
}

.floating {
  position: fixed;
  width: 40px;
  height: 40px;
  color: white;
  border-radius: 50px;
  /* box-shadow: 2px 2px 3px rgba(0, 0, 0, .5); */
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, .5));
  z-index: 100;
  transition: ease .3s;
  text-decoration: none;
}

.floating:hover {
  text-decoration: none;
  color: white;
  transform: scale(1.1);
}

.i-wa2 {
  background-color: #0cc143;
  bottom: 320px;
  right: 16px;
  font-size: 25px;
}
.i-wa {
  background-color: #0cc143;
  bottom: 270px;
  right: 16px;
  font-size: 25px;
}
.i-fb {
  background-color: #1877F2;
  bottom: 220px;
  right: 16px;
  font-size: 25px;
}
.i-ig {
  background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
  bottom: 170px;
  right: 16px;
  font-size: 25px;
}

.sticky-20 {
  position: sticky;
  top: 20%;
}

.pswp__img {
  object-fit: contain !important;
  margin: auto !important;
}

.pswp__zoom-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
}

/* Header menu dropdown (match existing menu style) */
/* =========================================================
MENU DROPDOWN
========================================================= */

.menu__item-inner {
  display: inline-flex;
  position: relative;
}

.menu__item--dropdown {
  display: inline-flex;
  position: relative;
}

.menu__dropdown-caret {
  display: none;
  margin-left: 0.8rem;
}

/* =========================================================
DESKTOP CARET
========================================================= */

@media only screen and (min-width: 1200px) {
  .menu__link .menu__dropdown-caret {
    display: inline-block !important;
    font-size: 1.4rem;
    opacity: 0.7;
  }
}

/* =========================================================
DROPDOWN BASE
========================================================= */

.menu__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  
  min-width: 18rem;
  padding: 0.8rem;
  margin: 0;
  margin-top: 0.8rem;
  
  list-style: none;
  border-radius: var(--_radius-s);
  
  background-color: rgba(var(--base-rgb), 0.92);
  border: 1px solid var(--stroke-elements);
  
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
  transform: translateY(8px);
  
  transition:
  opacity 0.2s ease,
  transform 0.2s ease,
  visibility 0.2s ease;
  
  z-index: 999;
}

/* =========================================================
MOBILE DROPDOWN - CENTER SCREEN
========================================================= */

@media only screen and (max-width: 1199px) {
  .menu__dropdown {
    position: fixed;
    
    left: 50%;
    bottom: 7rem;
    top: auto;
    
    transform: translate(-50%, 8px);
    
    width: max-content;
    max-width: calc(100vw - 2rem);
    
    margin-top: 0;
  }
}

/* =========================================================
HEADER MOBILE CENTER
========================================================= */

@media only screen and (max-width: 1199px) {
  .header {
    left: 50%;
    bottom: 5rem;
    transform: translateX(-50%);
  }
}

/* =========================================================
HOVER AREA
========================================================= */

.menu__item--dropdown::after {
  content: "";
  position: absolute;
  
  left: 0;
  right: 0;
  top: 100%;
  
  height: 0.8rem;
  
  background: transparent;
}

/* =========================================================
DROPDOWN ITEMS
========================================================= */

.menu__dropdown-item {
  display: block;
}

.menu__dropdown-link {
  width: 100%;
  height: auto;
  
  padding: 1.2rem 1.4rem;
  
  border-radius: var(--_radius-s);
  
  color: var(--t-medium);
  
  font:
  normal
  var(--font-weight-medium)
  1.5rem/1.2
  var(--_font-default);
  
  text-align: left;
  white-space: nowrap;
  
  transition:
  background-color 0.2s ease,
  color 0.2s ease;
}

.menu__dropdown-link:hover,
.menu__dropdown-link:focus-visible {
  background-color: rgba(var(--base-rgb), 0.35);
  color: var(--t-bright);
}

/* =========================================================
DESKTOP OPEN STATE
========================================================= */

@media only screen and (min-width: 1200px) {
  .menu__item--dropdown:hover .menu__dropdown,
  .menu__item--dropdown:focus-within .menu__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    
    transform: translateY(0);
  }
}

/* =========================================================
MOBILE / GLOBAL OPEN STATE
========================================================= */

.menu__item--dropdown.is-open .menu__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  
  transform: translate(-50%, 0);
}

/* =========================================================
DESKTOP RESET
========================================================= */

@media only screen and (min-width: 1200px) {
  .menu__item--dropdown.is-open .menu__dropdown {
    transform: translateY(0);
  }
}

/* About Us - services cards */
.services-cards {
  margin-top: 1.2rem;
}

.service-card {
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background-color: rgba(var(--base-rgb), 0.22);
  border: 1px solid var(--stroke-elements);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.service-card__media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.service-card__body {
  padding: 1.6rem 1.6rem 1.8rem;
}

.service-card__title {
  margin: 0;
  font-size: 2.0rem;
  line-height: 1.25;
}

@media only screen and (max-width: 768px) {
  .intro__background.intro-bg-01 img, .intro__background.intro-bg-02 img {
    display: block;
    width: 156%;
    height: auto;
    max-width: 578px;
  }
  .intro-bg-01__01 {
    top: -74px;
    right: 18px;
    width: 232px;
    height: 320px;
  }
  .intro-bg-01__02 {
    top: 369px;
    right: 18px;
    width: 150px;
    height: 320px;
  }
  .headline__subtitle {
    margin-top: 40px;
    width: 240px;
  }
  .headline__title .goldy-text{
    line-height: 1px;
  }
}

.service-card__title {
  margin-bottom: 30px;
  font-size: 33px;
  font-weight: 600;
  line-height: normal;
}

.btn-default .btn-caption {
  line-height: normal;
}

#captcha
{
  border: 2px solid #2b2b2b;
  border-radius:5px;
  padding: 8px;
  text-align: center;
  margin-top:5px;
  margin-bottom:30px;
  outline:none;
  box-sizing : border-box;
  width: 100%;
  -webkit-appearance: none;
  font-size: 26px;
}