/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #1a1a1a;
  color: #dadada;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
a {
  color: #d4af37;
  transition: 0.5s;
}

.nav-button{
  background: #ffd700 !important;
}

a:hover,
a:active,
a:focus {
  color: #ffd700;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.dot.active{
  background: #d4af37 !important;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #d4af37;
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: #d4af37;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #2a2a2a;
  color: #fff;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: linear-gradient(45deg, #d4af37 -132%, #4a4a4a 100%);
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  display: none !important;
}

#topbar .contact-info a {
  line-height: 1;
  color: #acacac;
}

#topbar .contact-info a:hover {
  color: #d4af37;
}

#topbar .contact-info i {
  color: #d4af37;
  padding: 4px;
}
.contact-info.float-left {
  color: #acacac;
}
#topbar .contact-info .fa-phone {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #e9e9e947;
}

#topbar .social-links a {
  color: #d4af37;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  border-left: 1px solid #e9e9e924;
}

#topbar .social-links a:hover {
  color: #d4af37;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
#header {
  padding: 10px 0;
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  background: #1a1a1a;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

#header #logo h1 a {
  color: #d4af37;
  line-height: 1;
  display: inline-block;
}

#header #logo h1 a span {
  color: #ffd700;
  padding: 0 1px;
  border-radius: 0 10px;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
  width: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #d4af37;
}

.nav-menu .menu-active a {
  color: #d4af37;
}

.nav-menu button {
  background: #d4af37;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-menu button:hover {
  background: #ffd700;
}

.nav-menu button li {
  list-style: none;
}

.nav-menu button li a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu button li a i {
  vertical-align: middle;
  line-height: 1;
}

/* Mobile toggle button spacing fix */
@media (max-width: 768px) {
  #header {
    padding: 20px 0;
    height: 74px;
  }

  #header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
  }

  #header #logo {
    flex: 1;
    margin-right: 15px;
  }

  #header #logo h1 {
    font-size: 28px;
    margin: 0;
  }

  #header #logo img {
    max-height: 40px;
  }

  /* Ensure toggle button has proper spacing */
  #nav-menu-container {
    margin-left: auto;
    padding-left: 15px;
  }

  .nav-menu {
    display: none;
  }

  /* Mobile menu toggle button */
  .mobile-nav-toggle {
    cursor: pointer;
    display: block;
    line-height: 0;
    transition: 0.5s;
    margin-left: 15px;
  }

  .mobile-nav-toggle i {
    color: #d4af37;
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  height: 87vh;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#intro .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

#intro .intro-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 14%;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}

@media (max-width: 768px) {
  #intro .intro-content {
    margin-top: 130px;
    margin-left: 40px;
  }
}

#intro .intro-content h2 {
  color: #ffffff;
  margin-bottom: 30px;
  font-size: 24px;
  text-align: left;
}

#intro .intro-content h2 span {
  color: #d4af37;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
}

#intro .intro-content .btn-get-started,
#intro .intro-content .btn-projects {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  color: #1d1d1d;
  text-decoration: none;
}

#intro .intro-content .btn-get-started {
  background: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 5px 0 5px;
  margin: 0;
}

#intro .intro-content .btn-get-started:hover {
  background: none;
  color: #d4af37;
}

#intro .intro-content .btn-projects {
  background: #d4af37;
  border: 2px solid #d4af37;
}

#intro .intro-content .btn-projects:hover {
  background: none;
  color: #d4af37;
}

#intro #intro-carousel::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 7;
}

#intro #intro-carousel .item {
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: opacity;
}

/* REMOVE EXTRA MARGIN ON MOBILE */
@media (max-width: 767px) {
  #intro {
    height: 100vh;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  #intro .bg-image {
    object-fit: cover;
    object-position: center;
  }

  #intro .intro-content {
    left: 10px;
    right: 10px;
    margin-bottom: 120px;
    text-align: left;
    align-items: flex-start;
  }

  #intro .intro-content h2 {
    font-size: 18px;
    margin-bottom: 20px;
    padding: 0;
  }

  #intro .intro-content h2 span {
    font-size: 22px;
  }

  #intro .btn-get-started {
    font-size: 14px;
    padding: 10px 24px;
  }

  #gallery {
    margin-top: 0 !important;
    padding-top: 20px !important;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

.nav-menu i {
  color: #d4af37;
  font-size: 24px;
  margin-right: 5px;
}

.nav-menu button {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  border: none;
  background: transparent;
}

.nav-menu button a .nav-menu li a {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 10px 16px;
  text-decoration: none;
  display: inline-block;
  color: #cdcdcd;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 13px;
  outline: none;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
  color: #d4af37;
}

.nav-menu > li {
  margin-left: 0;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #1a1a1a;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #cdcdcd;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #d4af37;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #d4af37;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: #888;
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
  background: linear-gradient(45deg, #4a4a4a -200%, #1a1a1a 100%);
}

#mobile-nav i {
  color: #d4af37;
  font-size: 24px;
  margin-right: 5px;
}

#mobile-nav button {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  border: none;
  background: transparent;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fffc;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #d4af37;
}

#mobile-nav ul .menu-item-active {
  color: #d4af37;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(13, 13, 13, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/

.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
  text-align: center;
}

.section-header h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 46px;
  height: 3px;
  bottom: 0;
  left: 0;
  border-top: #d4af37 dotted 10px;
  right: 0;
  text-align: center;
  margin: 0 auto;
}

.section-header p {
  padding: 0;
  margin: 0;
  text-align: center;
}

/* About Section
--------------------------------*/
#about {
  position: relative;
  overflow: HIDDEN;
}

#about .about-img {
  overflow: hidden;
}

#about .about-img img {
  margin-left: -15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  #about .about-img {
    height: auto;
  }
  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

#about .content h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  font-family: "Raleway", sans-serif;
}

#about .content h3 {
  color: #d5d5d5;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

#about .content p {
  line-height: 26px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .content i {
  font-size: 20px;
  padding-right: 4px;
  color: #d4af37;
}

#about .content ul {
  list-style: none;
  padding: 0;
}

#about .content ul li {
  padding-bottom: 5px;
}

/* Services Section
--------------------------------*/

#services {
  background: #1a1a1a;
  color: #ffffff9c;
}

#services .row {
  display: flex;
  justify-content: center;
}

#services .services-overlay {
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  text-align: center;
  margin-top: -66px;
}

#services .services-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 10px;
  vertical-align: middle;
  text-align: center;
  opacity: 0.8;
}

#services .services-item h2 {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
  text-transform: capitalize;
  font-weight: 700;
  padding: 8px;
  background: linear-gradient(45deg, #d4af3757 0%, #6a6a6a91 100%);
}

#services .services-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  width: 100%;
  height: 100%;
}

#services .services-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#services .services-item:hover .services-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

#services .services-item:hover {
  opacity: 1;
}

#services .services-info {
  position: relative;
}

/* Clients Section
--------------------------------*/
#clients {
  background: #d4af37;
}



#clients img:hover {
  opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: #d4af37;
}


--------------------------------*/
#clients {
  background: #d4af37;
}

#clients img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: 80px;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: #d4af37;
}
/* Our Portfolio Section
--------------------------------*/
#portfolio {
  background: #1a1a1a;
  color: #ffffff9c;
  overflow: hidden;
}

#portfolio .portfolio-overlay {
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  text-align: center;
  margin-top: -66px;
}

#portfolio .portfolio-item {
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 10px;
  vertical-align: middle;
  text-align: center;
}

#portfolio .portfolio-item h2 {
  color: #ffffff;
  font-size: 16px;
  margin: 0;
  text-transform: capitalize;
  font-weight: 700;
  padding: 8px;
  background: linear-gradient(45deg, #d4af3757 0%, #6a6a6a91 100%);
}

#portfolio .portfolio-item img {
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  width: 100%;
  height: 100%;
}

#portfolio .portfolio-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#portfolio .portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

#portfolio .portfolio-info {
  position: relative;
}

#portfolio .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 4px;
  justify-content: center;
  box-sizing: border-box;
}

#portfolio .column {
  -ms-flex: 25%;
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

#portfolio .column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

@media screen and (max-width: 800px) {
  #portfolio .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  #portfolio .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: #d4af37;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #d4af37;
  border: 3px solid #d4af37;
}

#call-to-action a {
  color: white;
  margin: 15px;
}

#call-to-action .instagram:hover {
  color: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}



#call-to-action2 {
  background: #d4af37;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action2 .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action2 .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action2 .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action2 .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action2 .cta-btn:hover {
  background: #d4af37;
  border: 3px solid #d4af37;
}

#call-to-action2 a {
  color: white;
  margin: 15px;
}

#call-to-action2 .instagram:hover {
  color: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
}


/* Contact Section
--------------------------------*/

#contact .contact-info {
  margin-bottom: 20px;
}

#contact .contact-info i {
  font-size: 24px;
  display: inline-block;
  margin-bottom: 2px;
  color: #d4af37;
  margin-left: 2px;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #fff;
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 15px;
  padding: 0;
  margin-top: 0;
  margin-left: 27px;
  font-size: 14px;
}

#contact .contact-info h3 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #d4af37;
  float: left;
  margin: 8px 15px;
}

#contact .contact-info a {
  color: #fff;
}

#contact .contact-info a:hover {
  color: #d4af37;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 0;
    text-align: left;
  }
}

#contact #google-map {
  height: 290px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  #contact #google-map {
    margin-top: 20px;
  }
}

#contact .form #sendmessage {
  color: #d4af37;
  border: 1px solid #d4af37;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
  background: transparent;
  border-color: #504f54;
  color: #fff;
}

#contact .form button[type="submit"] {
  background: #d4af37;
  border: 0;
  border-radius: 3px;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: #d4af37;
  color: #23042f !important;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0b111f;
  padding: 0 0 30px 0;
  font-size: 14px;
  color: #fff;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #ffffffad;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ffffff85;
  margin-top: 8px;
}

#footer .credits a {
  color: #c802a0;
}

.owl-carousel .owl-item img {
  display: block;
  width: auto;
  height: 70px;
  margin: 0 auto;
}

/*-------------------
Price
-------------------------*/
.shape {
  border-style: solid;
  border-width: 0 70px 40px 0;
  float: right;
  height: 0px;
  width: 0px;
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.offer {
  border: 1px solid #ddd;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin: 15px 0;
  overflow: hidden;
}

.offer:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: rotate scale(1.1);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.shape {
  border-color: rgba(255, 255, 255, 0) #d9534f rgba(255, 255, 255, 0)
    rgba(255, 255, 255, 0);
}

.offer-danger {
  border-color: #d9534f;
}

.offer-danger .shape {
  border-color: transparent #d9534f transparent transparent;
}

.offer-success {
  border-color: #5cb85c;
}

.offer-success .shape {
  border-color: transparent #5cb85c transparent transparent;
}

.offer-default {
  border-color: #999999;
}

.offer-default .shape {
  border-color: transparent #999999 transparent transparent;
}

.offer-primary {
  border-color: #428bca;
}

.offer-primary .shape {
  border-color: transparent #428bca transparent transparent;
}

.offer-info {
  border-color: #5bc0de;
}

.offer-info .shape {
  border-color: transparent #5bc0de transparent transparent;
}

.offer-warning {
  border-color: #f0ad4e;
}

.offer-warning .shape {
  border-color: transparent #f0ad4e transparent transparent;
}

.shape-text {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  right: -40px;
  top: 2px;
  white-space: nowrap;
  -ms-transform: rotate(30deg);
  -o-transform: rotate(360deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.offer-content {
  padding: 20px 20px 0;
  text-align: center;
}

@media (min-width: 487px) {
  .container {
    max-width: 750px;
  }
  .col-sm-6 {
    width: 50%;
  }
  #intro {
    width: 100%;
    height: 87vh;
    position: relative;
    background: url(../img/intro-carousel/1.jpg) no-repeat;
    background-size: contain;
  }
}

@media (min-width: 900px) {
  .container {
    max-width: 970px;
  }
  .col-md-4 {
    width: 33.33333333333333%;
  }
  #intro {
    background-size: cover;
  }
}

.sec-padding {
  padding: 50px 0 50px 0;
}

@media (max-width: 767px) {
  #intro {
    width: 100%;
    height: 43vh;
    position: relative;
    background: url(../img/intro-carousel/1.jpg) no-repeat;
    background-size: contain;
  }

  .sec-padding {
    padding: 30px 0;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
  .col-lg-3 {
    width: 25%;
  }
}

/*--------------------------------------------------------------
# CUSTOM STYLES FOR GALLERY AND PORTFOLIO
--------------------------------------------------------------*/

/* Fixed portfolio display */
.row.photo-gallery {
  display: flex;
  flex-wrap: wrap;
}

.column {
  flex: 33.33%;
  max-width: 33.33%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  transition: all 0.3s ease;
}

.column img:hover {
  opacity: 0.8;
}

/* Responsive layout */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

/* Deal items */
.services-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.services-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.services-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.services-info h2 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin: 0;
  padding: 15px;
}

.services-item:hover img {
  transform: scale(1.1);
}

/* Dark background for the services section */
#gallery {
  background-color: #0a0d17;
  color: #fff;
  padding: 60px 0;
}

#gallery .section-header h2 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

#gallery .section-header p {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

/* Consistent gallery box sizes */
.gallery-item {
  height: 350px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Fixed overlay to cover the entire box - always visible */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.75);
}

.gallery-info {
  text-align: center;
  width: 100%;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-info {
  transform: translateY(-5px);
}

.gallery-info h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.5px;
}

/* Pink label styling for categories */
.gallery-label {
  background-color: #d4af37;
  color: white;
  padding: 6px 18px;
  border-radius: 4px;
  margin-top: 10px;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Equal sizing for boxes */
#gallery .row {
  display: flex;
  flex-wrap: wrap;
}

#gallery .col-lg-4 {
  display: flex;
  flex-direction: column;
}

#gallery .col-lg-4 .gallery-item {
  flex: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .gallery-item {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .gallery-item {
    height: 250px;
  }

  .gallery-info h2 {
    font-size: 18px;
  }
}

/* Loading states */
.loading {
  text-align: center;
  padding: 2rem;
  color: #666;
}

.loading i {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error states */
.error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 0;
  text-align: center;
}

/*--------------------------------------------------------------
# CAROUSEL/PRICE SECTION STYLES
--------------------------------------------------------------*/

.carousel-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.carousel-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  padding: 20px;
}

.carousel-card {
  flex: 0 0 calc(33.333% - 14px);
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.carousel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.carousel-card:hover .card-overlay {
  opacity: 1;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #333;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.nav-button:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-prev {
  left: 10px;
}

.nav-next {
  right: 10px;
}

.dots-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #d4af37;
  transform: scale(1.2);
}

.dot:hover {
  background: #d4af37;
  opacity: 0.7;
}

/* Responsive Design for Carousel */
@media (max-width: 1200px) {
  .carousel-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 100%;
  }
  
  .carousel-title {
    font-size: 2rem;
  }
  
  .nav-button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# FIXED MODAL STYLES FOR PRICE IMAGES WITH ZOOM
--------------------------------------------------------------*/

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  cursor: zoom-out;
  overflow: hidden;
}

.modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  background-color: transparent !important;
}

.modal-content img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  cursor: zoom-in;
  transform-origin: center center;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.modal-content img.zoomed {
  cursor: zoom-out;
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(2) !important;
  max-width: none;
  max-height: none;
  pointer-events: auto;
  z-index: 10000;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.7);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-close:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
  transform: scale(1.1);
}

.close-button {
  position: fixed;
  top: 20px;
  right: 100px;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.7);
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  z-index: 10001;
}

.close-button:hover {
  background: rgba(212, 175, 55, 0.8);
  border-color: #d4af37;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.close-button:active {
  transform: translateY(0);
}

.zoom-hint {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10001;
  border: 1px solid rgba(212, 175, 55, 0.5);
}

.zoom-hint.show {
  opacity: 0.9;
}

.modal.zoom-active {
  overflow: hidden;
}

.modal.zoom-active .modal-content {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# CUSTOM LIGHTBOX STYLES - NO JQUERY DEPENDENCY
--------------------------------------------------------------*/

.custom-lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.custom-lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 500px;
  max-height: 600px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: -50px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 73, 183, 0.8);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  user-select: none;
}

.lightbox-nav:hover {
  background: rgba(255, 73, 183, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/*--------------------------------------------------------------
# SOCIAL MEDIA SIDEBAR
--------------------------------------------------------------*/

.social-sidebar {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.social-link:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Social Media Colors */
.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.linkedin { background: #000; }
.youtube { background: #ff0000; }
.whatsapp { background: #25d366; }
.telegram { background: #0088cc; }

/* Alternative Left Side Position */
.social-sidebar.left {
  right: auto;
  left: 20px;
}

/*--------------------------------------------------------------
# RESPONSIVE DESIGN
--------------------------------------------------------------*/

/* Mobile responsive for modal */
@media (max-width: 768px) {
  .modal-content {
    padding: 20px 10px;
  }
  
  .modal-content img {
    max-width: 95vw;
    max-height: 80vh;
  }
  
  .modal-content img.zoomed {
    transform: translate(-50%, -50%) scale(1.8) !important;
  }
  
  .modal-close {
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  
  .close-button {
    top: 15px;
    right: 75px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .zoom-hint {
    bottom: 10px;
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Social sidebar responsive */
  .social-sidebar {
    right: 10px;
    gap: 10px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.responsive-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.3s ease;
}

/* Optional: Make image smaller on very small screens */
@media (max-width: 480px) {
  .responsive-image {
    max-width: 90%;
    max-height: 500px;
  }
}

@media (max-width: 480px) {
  .modal-content img {
    max-width: 98vw;
    max-height: 75vh;
  }
  
  .modal-content img.zoomed {
    transform: translate(-50%, -50%) scale(1.6) !important;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    font-size: 25px;
  }
  
  .close-button {
    top: 10px;
    right: 65px;
    padding: 8px 16px;
    font-size: 12px;
  }

  /* Hidden on very small screens */
  .social-sidebar {
    display: none;
  }
}