/* ========================================
   Dishley Holding - Replica Styles
   Based on dishleyholding.com (Aspasia / Helix3)
   ======================================== */

:root {
  --gold: #cda349;
  --gold-hover: #b28931;
  --gold-btn: #c69836;
  --orange: #EF6D00;
  --orange-hover: #de6906;
  --text: #666666;
  --text-dark: #24252a;
  --text-muted: #706d6d;
  --white: #ffffff;
  --bg-light: #f5f5f5;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --overlay-newsletter: rgba(0, 0, 0, 0.7);
  --purple-overlay: rgba(41, 14, 98, 0.5);
  --font: 'Open Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--gold-hover);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  margin: 0 0 15px;
  color: var(--text-dark);
}

h1 { font-weight: 800; }
h2 { font-weight: 600; }
h3 { font-weight: 400; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ========== HEADER ========== */
#sp-header {
  background: var(--white);
  height: 100px;
  position: relative;
  z-index: 999;
  transition: all 0.3s;
}

#sp-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  transition: height 0.3s;
}

#sp-header.is-sticky .header-inner {
  height: 70px;
}

.logo-wrap .logo {
  display: flex;
  align-items: center;
  height: 80px;
}

.logo-wrap .logo img {
  height: 70px;
  width: auto;
  max-height: 70px;
  max-width: 220px;
  object-fit: contain;
  transition: height 0.3s, max-width 0.3s;
}

#sp-header.is-sticky .logo-wrap .logo img {
  height: 48px;
  max-height: 48px;
  max-width: 160px;
}

.main-nav .menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav .menu li a {
  display: inline-block;
  padding: 0 15px;
  line-height: 60px;
  height: 60px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  position: relative;
}

.main-nav .menu li.active > a,
.main-nav .menu li a:hover {
  color: var(--gold);
}

#offcanvas-toggler {
  display: none;
  font-size: 22px;
  color: #333;
  padding: 10px;
}

#offcanvas-toggler:hover {
  color: var(--gold);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
  position: relative;
  height: 680px;
  overflow: hidden;
  margin-top: 0;
}

.hero-slider .slides {
  height: 100%;
  position: relative;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slider .slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.slide-title {
  color: var(--gold) !important;
  font-size: 72px;
  line-height: 80px;
  font-weight: 700;
  margin: 0 0 27px;
}

.slide-text {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0;
}

.slide-btn {
  display: inline-block;
  margin-top: 80px;
  color: #ffffff !important;
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  border: 1px solid #ffffff;
  padding: 10px 50px;
  background: transparent;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.slide-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff !important;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.nav-control {
  pointer-events: auto;
  width: 55px;
  height: 55px;
  border: 1px solid #fefeff;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0);
  color: #fefeff;
  font-size: 33px;
  line-height: 53px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 0;
}

.nav-control:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.nav-control i {
  line-height: 1;
}

/* ========== SECTION TITLES ========== */
.section-title {
  margin-bottom: 40px;
}

.section-title.center {
  text-align: center;
}

.section-title h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 15px;
  text-transform: none;
  letter-spacing: 1px;
}

.section-title .subheading {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.section-title.light h3,
.section-title.light .subheading {
  color: #ffffff;
}

/* ========== WHAT WE DO ========== */
.what-we-do {
  position: relative;
  padding: 150px 0;
  background-image: url('../images/parallax.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: 0 0;
  color: #ffffff;
}

.what-we-do .section-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-dark);
}

.what-we-do .container {
  position: relative;
  z-index: 2;
}

.what-we-do .section-title h3,
.what-we-do .section-title .subheading {
  color: #ffffff;
}

.what-we-do-text {
  text-align: center;
  font-family: var(--font);
  font-weight: 400;
  font-size: 26px;
  line-height: 30px;
  color: #ffffff;
}

.what-we-do-text p {
  margin: 0;
}

/* ========== OUR COMPANIES ========== */
.our-companies {
  padding: 75px 0;
  background: var(--white);
}

.portfolio-filter {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio-filter ul {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.portfolio-filter ul li {
  margin-right: 40px;
}

.portfolio-filter ul li:last-child {
  margin-right: 0;
}

.portfolio-filter ul li a {
  display: block;
  padding: 5px;
  background: none;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.portfolio-filter ul li a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.portfolio-filter ul li.active a,
.portfolio-filter ul li a:hover {
  color: var(--gold);
  background: none;
}

.portfolio-filter ul li.active a::before,
.portfolio-filter ul li a:hover::before {
  width: 100%;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 -15px;
}

.portfolio-item {
  padding: 0 15px;
  transition: all 0.4s;
}

.portfolio-item.hide {
  display: none;
}

.portfolio-overlay-wrap {
  position: relative;
  overflow: hidden;
  background: #24252a;
}

.portfolio-overlay-wrap .video-icon {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(100, 100, 100, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  pointer-events: none;
  transition: opacity 0.3s;
}

.portfolio-item:hover .video-icon {
  opacity: 0;
}

.portfolio-overlay-wrap > img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s, opacity 0.3s;
}

.portfolio-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  text-align: left;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  background: transparent;
  z-index: 2;
}

.portfolio-item:hover .portfolio-overlay-wrap > img {
  transform: translateY(-80px);
  opacity: 0.4;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-btns {
  margin-bottom: 12px;
}

.portfolio-btns a {
  display: inline-block;
  padding: 4px 14px;
  margin-right: 8px;
  font-size: 13px;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.portfolio-btns a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.portfolio-title {
  margin-bottom: 10px !important;
  font-size: 20px;
  font-weight: 400;
  line-height: 21px;
  opacity: 0;
  transform: translate3d(50px, 0, 0);
  transition: all 0.3s;
  transition-delay: 0.15s;
}

.portfolio-title a {
  color: #fff !important;
}

.portfolio-tags {
  font-size: 16px;
  color: #706d6d;
  opacity: 0;
  transform: translate3d(50px, 0, 0);
  transition: all 0.5s;
  transition-delay: 0.3s;
}

.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-tags {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ========== OUR INVESTMENT ========== */
.our-investment {
  padding: 75px 0;
  background: var(--white);
}

.investment-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.investment-item {
  position: relative;
  display: block;
  min-height: 380px;
}

.investment-image {
  position: relative;
  width: 58%;
  overflow: hidden;
}

.investment-image::after {
  display: none;
}

.investment-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.investment-item:hover .investment-image img {
  transform: scale(1.04);
}

.investment-content {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  z-index: 2;
  background-color: rgba(41, 14, 98, 0.72);
  padding: 45px 40px 50px;
  color: #ffffff;
  box-sizing: border-box;
}

.investment-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 18px;
  color: #ffffff;
  line-height: 1.4;
}

.investment-content h3 a {
  color: #ffffff;
  transition: color 0.3s;
}

.investment-content h3 a:hover {
  color: var(--gold);
}

.investment-content p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
}

.btn-learn {
  display: inline-block;
  padding: 10px 26px;
  background-color: var(--orange);
  color: #FFFFFF !important;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0;
  transition: background 0.3s;
  margin-top: 0;
}

.btn-learn:hover {
  background-color: var(--orange-hover);
  color: #FFFFFF !important;
}

/* ========== NEWSLETTER ========== */
.newsletter {
  position: relative;
  padding: 100px 0;
  background-image: url('../images/newsletter-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: 50% 50%;
}

.newsletter .section-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-newsletter);
}

.newsletter .container {
  position: relative;
  z-index: 2;
}

.newsletter .section-title h3 {
  font-size: 42px;
  line-height: 42px;
  color: #ffffff;
}

.newsletter-form {
  max-width: 560px;
  margin: 30px auto 0;
}

.newsletter-form .form-group {
  display: flex;
  position: relative;
}

.newsletter-form input[type="email"] {
  flex: 1;
  height: 55px;
  padding: 10px 20px;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 14px;
  background: #fff;
  color: #333;
}

.newsletter-form button {
  height: 55px;
  padding: 0 30px;
  border: none;
  background: var(--gold);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold-hover);
}

/* ========== BOTTOM FOOTER ========== */
#sp-bottom {
  background-color: var(--bg-light);
  padding: 100px 0;
  font-size: 14px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-logo {
  margin-bottom: 30px;
  max-width: 180px;
  width: auto;
  height: auto;
}

#sp-bottom p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

.bottom-title {
  font-weight: 700;
  font-size: 16px;
  color: #333 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.contact-info li {
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.6;
}

.contact-info li i {
  color: #bbbbbb;
  font-size: 16px;
  width: 22px;
  margin-right: 8px;
}

.contact-info li a {
  color: var(--text);
}

.contact-info li a:hover {
  color: var(--gold);
}

.contact-info .indent {
  padding-left: 34px;
}

.quick-links li a {
  display: inline-block;
  line-height: 28px;
  color: var(--text);
}

.quick-links li a:hover {
  color: var(--gold);
}

.bottom-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 10px;
}

.bottom-social li {
  margin-right: 30px;
  margin-bottom: 15px;
}

.bottom-social li:last-child {
  margin-right: 0;
}

.bottom-social li a {
  font-size: 32px;
  color: #999;
}

.bottom-social li a:hover {
  color: var(--gold);
}

/* ========== COPYRIGHT ========== */
#sp-footer {
  background: var(--gold);
  text-align: left;
  padding: 20px 0 100px;
}

#sp-footer .sp-copyright {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

/* ========== OFFCANVAS ========== */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #1a1a1a;
  z-index: 9999;
  padding: 60px 30px 30px;
  transition: right 0.35s ease;
  overflow-y: auto;
}

.offcanvas-menu.active {
  right: 0;
}

.close-offcanvas {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 22px;
}

.close-offcanvas:hover {
  color: var(--gold);
}

.offcanvas-menu .menu li a {
  display: block;
  padding: 12px 0;
  color: #ccc;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-menu .menu li a:hover,
.offcanvas-menu .menu li.active a {
  color: var(--gold);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 40px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }

  #offcanvas-toggler {
    display: block;
  }

  .hero-slider {
    height: 500px;
  }

  .slide-title {
    font-size: 50px;
    line-height: 60px;
  }

  .slide-text {
    font-size: 14px;
  }

  .slide-btn {
    margin-top: 40px;
    padding: 6px 30px;
  }

  .slider-nav {
    left: 20px;
    right: 20px;
  }

  .nav-control {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .what-we-do {
    padding: 100px 0;
    background-attachment: scroll;
  }

  .what-we-do-text {
    font-size: 20px;
  }

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

  .portfolio-filter ul li {
    margin-right: 20px;
    margin-bottom: 10px;
  }

  .investment-item {
    min-height: 0;
  }

  .investment-image {
    width: 100%;
  }

  .investment-image img {
    height: 280px;
  }

  .investment-content {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: -40px;
    padding: 35px 28px 40px;
  }

  .bottom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .newsletter {
    background-attachment: scroll;
  }
}

@media (max-width: 767px) {
  #sp-header {
    height: 80px;
  }

  .header-inner {
    height: 80px;
  }

  .logo-wrap .logo img {
    height: 55px;
    max-height: 55px;
    max-width: 170px;
  }

  .hero-slider {
    height: 500px;
  }

  .slide-title {
    font-size: 36px;
    line-height: 46px;
  }

  .nav-control {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .section-title h3 {
    font-size: 28px;
  }

  .newsletter .section-title h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .what-we-do {
    padding: 80px 0;
  }

  .what-we-do-text {
    font-size: 18px;
    line-height: 26px;
  }

  .our-companies,
  .our-investment {
    padding: 50px 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .portfolio-filter ul {
    gap: 5px;
  }

  .portfolio-filter ul li {
    margin-right: 10px;
  }

  .portfolio-filter ul li a {
    font-size: 12px;
  }

  .newsletter-form .form-group {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #sp-bottom {
    padding: 60px 0;
  }

  #sp-footer {
    padding: 20px 0 40px;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .slide-title {
    font-size: 28px;
    line-height: 36px;
  }
}

/* ========== INNER PAGE TITLE ========== */
.sp-page-title {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.sp-page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.sp-page-title .container {
  position: relative;
  z-index: 2;
}

.sp-page-title h2 {
  color: #fff !important;
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 15px;
  text-transform: capitalize;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.breadcrumb li {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb li a {
  color: #fff;
}

.breadcrumb li a:hover {
  color: var(--gold);
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .fa-home {
  margin-right: 0;
}

/* ========== ABOUT PAGE ========== */
.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h4 {
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 25px;
}

.about-content .about-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.about-content .about-desc em {
  font-style: italic;
}

.about-content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 20px 0;
}

.about-content ul li {
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.7;
}

.about-content p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== CONTACT PAGE ========== */
.contact-info-section {
  padding: 60px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: start;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.address-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}

.address-text {
  padding-top: 8px;
  font-size: 15px;
  line-height: 1.7;
}

.address-text a {
  color: var(--text);
}

.address-text a:hover {
  color: var(--gold);
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  padding-left: 70px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 16px;
  transition: all 0.3s;
}

.contact-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.contact-form-section {
  padding: 40px 0 80px;
}

/* Flash messages — Dishley brand */
.site-flash {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 28px;
  padding: 22px 24px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  animation: siteFlashIn 0.45s ease;
}

.site-flash::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.site-flash-success {
  background: linear-gradient(135deg, rgba(41, 14, 98, 0.06), rgba(205, 163, 73, 0.14));
  border: 1px solid rgba(205, 163, 73, 0.35);
  color: #24252a;
}

.site-flash-success::before {
  background: linear-gradient(180deg, #290e62, #cda349);
}

.site-flash-error {
  background: #fff8f5;
  border: 1px solid rgba(239, 109, 0, 0.35);
  color: #24252a;
}

.site-flash-error::before {
  background: #EF6D00;
}

.site-flash-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.site-flash-success .site-flash-icon {
  background: rgba(205, 163, 73, 0.2);
  color: #cda349;
}

.site-flash-error .site-flash-icon {
  background: rgba(239, 109, 0, 0.15);
  color: #EF6D00;
}

.site-flash-body {
  flex: 1;
  min-width: 0;
}

.site-flash-body strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #290e62;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.site-flash-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.site-flash-body ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #666;
  font-size: 14px;
}

.site-flash-close {
  flex-shrink: 0;
  background: none;
  border: 0;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.site-flash-close:hover {
  color: #290e62;
}

.careers-form-wrap .site-flash {
  max-width: none;
  margin-bottom: 24px;
}

@keyframes siteFlashIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-row.full {
  grid-template-columns: 1fr;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  background: #f9f9f9;
  font-family: var(--font);
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn-submit {
  display: inline-block;
  padding: 12px 40px;
  background: var(--gold);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.contact-form .btn-submit:hover {
  background: var(--gold-hover);
}

.form-center {
  text-align: center;
}

/* ========== CAREERS PAGE ========== */
.careers-section {
  padding: 75px 0;
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.careers-form h2 {
  display: none;
}

.career-field {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 15px;
  align-items: start;
  margin-bottom: 18px;
}

.career-field label {
  font-size: 14px;
  color: #333;
  padding-top: 10px;
  font-weight: 400;
}

.career-field label .req {
  color: #c00;
  margin-left: 2px;
}

.career-field input,
.career-field select,
.career-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  font-family: var(--font);
  font-size: 14px;
  color: #333;
  background: #fff;
  outline: none;
}

.career-field input:focus,
.career-field select:focus,
.career-field textarea:focus {
  border-color: var(--gold);
}

.career-field textarea {
  min-height: 120px;
  resize: vertical;
}

.career-field .btn-submit {
  padding: 10px 30px;
  background: var(--gold);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.career-field .btn-submit:hover {
  background: var(--gold-hover);
}

.careers-approach h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.careers-approach p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ========== BLOG PAGE ========== */
.blog-section {
  padding: 80px 0;
}

.blog-article {
  max-width: 900px;
  margin: 0 auto;
}

.blog-gallery {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.blog-gallery .gallery-slides {
  position: relative;
}

.blog-gallery .gallery-slide {
  display: none;
}

.blog-gallery .gallery-slide.active {
  display: block;
}

.blog-gallery .gallery-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.blog-gallery .gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
}

.blog-gallery .gallery-nav button {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.blog-gallery .gallery-nav button:hover {
  background: var(--gold);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.blog-meta .post-format {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.blog-meta .published {
  color: var(--text-muted);
  font-size: 13px;
}

.blog-meta .published i {
  margin-right: 6px;
}

.blog-article h2 a {
  color: var(--text-dark);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-article h2 a:hover {
  color: var(--gold);
}

.blog-body {
  margin-top: 25px;
  color: var(--text);
  line-height: 1.8;
}

.blog-body h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}

.blog-body img {
  max-width: 400px;
  height: auto;
  margin: 15px 0;
}

.blog-body ul {
  list-style: disc;
  padding-left: 25px;
  margin: 15px 0;
}

.blog-body ul li {
  margin-bottom: 6px;
}

.blog-body p {
  margin-bottom: 14px;
}

/* ========== INNER PAGES RESPONSIVE ========== */
@media (max-width: 991px) {
  .about-grid,
  .careers-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .career-field {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .career-field label {
    padding-top: 0;
  }

  .contact-social {
    padding-left: 0;
  }

  .sp-page-title {
    padding: 60px 0;
  }

  .sp-page-title h2 {
    font-size: 32px;
  }

  .blog-gallery .gallery-slide img {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .about-section,
  .careers-section {
    padding: 50px 0;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .blog-article h2 a {
    font-size: 22px;
  }
}

/* ========== DETAIL PAGES (Company / Project) ========== */
.detail-section {
  padding: 80px 0;
}

.company-detail-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

.ps-informations .info-title,
.ps-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ps-informations ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ps-informations ul li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  line-height: 1.6;
}

.port-label {
  font-weight: 600;
  color: #333;
  min-width: 160px;
}

.port-value {
  color: var(--text);
  flex: 1;
}

.port-value a {
  color: var(--gold);
  word-break: break-all;
}

.company-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  list-style: none;
  padding: 0;
}

.company-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 16px;
  transition: all 0.3s;
}

.company-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.ps-share {
  margin-top: 40px;
}

.company-image-col img {
  width: 100%;
  height: auto;
  display: block;
  background: #f5f5f5;
}

.project-desc {
  margin-top: 20px;
}

.project-desc p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.detail-back {
  margin-top: 40px;
}

/* Project detail */
.project-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.project-detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.project-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.project-meta-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f5f5f5;
  color: var(--text);
  font-size: 13px;
  border-radius: 2px;
}

.project-meta-badges .badge i {
  color: var(--gold);
}

.project-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 18px;
}

.project-detail-summary {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.project-detail-body p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.related-projects {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid #eee;
}

.related-projects h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 30px;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.related-card {
  display: block;
  color: inherit;
  transition: transform 0.3s;
}

.related-card:hover {
  transform: translateY(-5px);
  color: var(--gold);
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}

.related-card h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
}

.related-card:hover h4 {
  color: var(--gold);
}

@media (max-width: 991px) {
  .company-detail-grid,
  .project-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-detail-image img {
    height: 300px;
  }

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

@media (max-width: 575px) {
  .related-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-title {
    font-size: 22px;
  }
}
