@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

@font-face {
  font-family: BankGothicMedium;
  src:
    local("BankGothic Md BT"), local("BankGothic Medium BT"),
    local("Bank Gothic Medium");
  font-weight: 500;
}
:root {
  --black: #0a0a0a;
  --black-2: #111;
  --black-3: #1a1a1a;
  --white: #fff;
  --white-60: rgba(255, 255, 255, 0.6);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --gold: #d4a843;
  --gold-light: #f0c060;
  --gold-dark: #b8892a;
  --gold-pale: rgba(212, 168, 67, 0.15);
  --gray-100: #f8f8f8;
  --gray-200: #e8e8e8;
  --gray-300: #d0d0d0;
  --gray-400: #a0a0a0;
  --gray-500: #707070;
  --font-heading:
    "BankGothicMedium", "Bank Gothic", "Century Gothic", "Futura",
    "Trebuchet MS", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 8px 32px rgba(212, 168, 67, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: 0;
  background: none;
  font-family: inherit;
}
.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #004643;
  background: rgba(0, 70, 67, 0.15);
  border: 1px solid rgba(0, 70, 67, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag.light {
  background: rgba(0, 70, 67, 0.25);
  color: #02c39a;
  border-color: rgba(0, 70, 67, 0.5);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 20px;
}
.section-title.light {
  color: #fff;
}
.text-accent {
  color: var(--gold);
}
.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 650px;
  line-height: 1.7;
}
.text-center {
  text-align: center;
}
.text-center .section-desc {
  margin: auto;
}
.light-desc {
  color: #777;
}
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-primary {
  background: var(--black);
  color: #fff;
  border: 2px solid var(--black);
}
.btn-primary:hover {
  background: #004643;
  border-color: #004643;
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-color: rgba(212, 168, 67, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}
.logo-accent {
  color: var(--gold);
}
.logo-tagline {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-60);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-tour {
  color: #02c39a;
}
.nav-cta {
  background: var(--gold);
  color: #000;
  padding: 10px 16px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.hero {
  min-height: 100vh;
  background: #080808;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)),
    url("img/yer.jpg") center/cover no-repeat;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 70, 67, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 70, 67, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
}
.glow-1 {
  width: 300px;
  height: 300px;
  background: #004643;
  left: -100px;
  top: 30%;
}
.glow-2 {
  width: 280px;
  height: 280px;
  background: #d4a843;
  right: -100px;
  top: 15%;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  flex: 1;
  margin: auto;
  padding: 140px 24px 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 70, 67, 0.3);
  border: 1px solid rgba(0, 70, 67, 0.6);
  color: #02c39a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease both 0.2s;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(56px, 10vw, 130px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: titleReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.title-line:nth-child(1) {
  animation-delay: 0.4s;
}
.title-line:nth-child(2) {
  animation-delay: 0.6s;
}
.title-line:nth-child(3) {
  animation-delay: 0.8s;
}
.title-accent {
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(13px, 2vw, 18px);
  color: var(--white-60);
  max-width: 650px;
  line-height: 1.8;
  margin-bottom: 42px;
  animation: fadeUp 0.8s ease both 1s;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s ease both 1.2s;
}
.hero-scroll {
  position: absolute;
  bottom: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white-60);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 45px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2s infinite;
}
.hero-stats-bar {
  position: relative;
  z-index: 2;
  background: rgba(0, 70, 67, 0.08);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 70, 67, 0.3);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.stat-plus {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--white-60);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--white-20);
}

.director-section {
  position: relative;
  background: #ecebe6;
  overflow: hidden;
}
.director-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80")
    center/cover;
  opacity: 0.05;
}
.director-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(400px, 1.5fr);
  gap: 60px;
  align-items: center;
}
.director-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.director-card {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 6px solid #fff;
  background: #d8d8d8;
}
.director-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: 0.6s;
}
.director-card:hover .director-card-photo {
  transform: scale(1.05);
}
.director-name {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  color: #0c3328;
  line-height: 1.15;
  margin-bottom: 14px;
}
.director-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #0c3328;
  text-transform: uppercase;
}
.director-divider {
  width: 2px;
  height: 100%;
  min-height: 350px;
  background: linear-gradient(
    to bottom,
    transparent,
    #004643,
    var(--gold),
    #004643,
    transparent
  );
}
.director-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.director-text {
  font-size: clamp(16px, 2vw, 20px);
  color: #0c3328;
  line-height: 1.7;
}

.about-grid-3d {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual-3d {
  perspective: 1200px;
  height: 480px;
  display: flex;
  align-items: center;
}
.window-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s;
}
.window-frame {
  position: absolute;
  inset: 0;
  border: 16px solid var(--black);
  border-radius: 12px;
  background: url("https://images.pexels.com/photos/803/road-traffic-night-street.jpg")
    center/cover;
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.5),
    0 30px 60px rgba(0, 0, 0, 0.3);
}
.about-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 16px;
}

.company-video {
  background: #0d0d0d;
}
.company-video .section-title {
  color: #fff;
}
.company-video .section-desc {
  color: #cfcfcf;
}
.video-wrapper {
  margin-top: 60px;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  border: 2px solid rgba(212, 168, 67, 0.25);
  background: #000;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  transition: 0.4s;
}
.video-frame:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.organization {
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.org-bg-luxury {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 45% at 50% -5%,
      rgba(212, 168, 67, 0.13),
      transparent 55%
    ),
    radial-gradient(
      ellipse 55% 45% at 0% 100%,
      rgba(0, 70, 67, 0.4),
      transparent 55%
    ),
    radial-gradient(
      ellipse 55% 45% at 100% 100%,
      rgba(0, 70, 67, 0.28),
      transparent 55%
    );
}
.group-director {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 45px auto 0;
  max-width: 680px;
}
.group-director-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--gold), rgba(212, 168, 67, 0.15));
}
.group-director-card {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 28px 34px;
  border: 1px solid rgba(212, 168, 67, 0.42);
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(0, 70, 67, 0.32),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.group-director-photo-wrap {
  width: 120px;
  height: 140px;
  min-width: 120px;
  border-radius: 17px;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: #ddd;
}
.group-director-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.group-director-info {
  position: relative;
  z-index: 1;
}
.group-director-info h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: #fff;
  margin: 5px 0;
}
.group-director-info > p:not(.org-label) {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.group-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(212, 168, 67, 0.35);
  border-radius: 100px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.group-director-card .org-num {
  position: absolute;
  right: 18px;
  top: 12px;
  font-family: var(--font-heading);
  font-size: 40px;
  color: rgba(212, 168, 67, 0.1);
}
.group-connector {
  width: 72%;
  height: 45px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.group-connector:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(212, 168, 67, 0.45);
}
.group-connector span {
  width: 1px;
  height: 45px;
  background: linear-gradient(var(--gold), rgba(212, 168, 67, 0.2));
}
.group-companies {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.company-card {
  position: relative;
  min-height: 330px;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition: 0.4s;
}
.company-card:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #004643, var(--gold));
}
.company-card:hover {
  transform: translateY(-9px);
  border-color: rgba(212, 168, 67, 0.45);
  background: rgba(0, 70, 67, 0.14);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5);
}
.company-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.company-number {
  font-family: var(--font-heading);
  font-size: 34px;
  color: rgba(212, 168, 67, 0.14);
}
.company-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: rgba(0, 70, 67, 0.35);
  border: 1px solid rgba(0, 195, 154, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.company-status {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 700;
}
.company-card-body {
  position: relative;
  z-index: 1;
}
.company-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 5px;
}
.company-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 13px;
}
.company-card h3 span {
  color: var(--gold);
}
.company-focus {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 5px;
  background: rgba(0, 70, 67, 0.3);
  border: 1px solid rgba(0, 195, 154, 0.2);
  color: #02c39a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.company-description {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.53);
  min-height: 66px;
}
.company-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.company-services span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.68);
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.group-note {
  position: relative;
  z-index: 2;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: max-content;
  max-width: 100%;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.025);
}
.group-note-icon {
  color: var(--gold);
  font-size: 18px;
}
.group-note strong {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 1px;
}
.group-note p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.services {
  background: var(--gray-100);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card-featured {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.service-icon-wrap {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--gray-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.service-card-featured .service-icon-wrap {
  background: rgba(212, 168, 67, 0.15);
}
.service-title {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 8px 0 12px;
  padding-right: 70px;
}
.service-card-featured .service-title {
  color: #fff;
}
.service-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card-featured .service-desc {
  color: var(--white-60);
}
.service-list {
  margin-bottom: 24px;
}
.service-list li {
  font-size: 13px;
  color: var(--gray-500);
  padding: 4px 0 4px 16px;
  position: relative;
}
.service-card-featured .service-list li {
  color: var(--white-60);
}
.service-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  background: var(--gold);
  border-radius: 50%;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  transition: 0.3s;
}
.service-link:hover {
  letter-spacing: 0.4px;
}

.tour-section {
  position: relative;
  background: linear-gradient(135deg, #061817, #0d0d0d 60%, #15100a);
  color: #fff;
  overflow: hidden;
}
.tour-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(0, 195, 154, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(212, 168, 67, 0.12),
      transparent 30%
    );
}
.tour-section .section-title {
  color: #fff;
}
.tour-section .section-desc {
  color: rgba(255, 255, 255, 0.62);
}
.tour-badge {
  display: inline-block;
  color: #02c39a;
  border: 1px solid rgba(2, 195, 154, 0.4);
  background: rgba(0, 70, 67, 0.3);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.tour-intro {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 850px;
  margin: 0 auto 50px;
  padding: 24px 28px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
}
.tour-intro-mark {
  font-size: 40px;
  color: var(--gold);
}
.tour-intro h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 6px;
}
.tour-intro p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tour-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  min-height: 260px;
  transition: 0.35s;
  overflow: hidden;
}
.tour-card:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, #004643, var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s;
}
.tour-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212, 168, 67, 0.4);
  background: rgba(0, 70, 67, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.tour-card:hover:before {
  transform: scaleX(1);
}
.tour-card-number {
  position: absolute;
  top: 15px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 36px;
  color: rgba(212, 168, 67, 0.12);
}
.tour-icon {
  font-size: 38px;
  margin-bottom: 18px;
}
.tour-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  margin-bottom: 10px;
}
.tour-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  min-height: 66px;
}
.tour-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}
.tour-cta {
  margin-top: 45px;
  padding: 28px 32px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 70, 67, 0.55),
    rgba(212, 168, 67, 0.08)
  );
  border: 1px solid rgba(212, 168, 67, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.tour-cta .section-tag {
  margin-bottom: 8px;
}
.tour-cta h3 {
  font-family: var(--font-heading);
  font-size: 22px;
}
.btn-tour {
  padding: 14px 22px;
  border: 1px solid var(--gold);
  border-radius: 7px;
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  transition: 0.3s;
}
.btn-tour:hover {
  background: var(--gold);
  color: #000;
}

.projects {
  background: #fff;
}
.project-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  transition: 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}
.project-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}
.project-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.project-card-large {
  grid-column: span 2;
}
.project-img-ph {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  font-size: 90px;
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.project-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
  width: max-content;
  margin-bottom: 8px;
}
.project-info h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #fff;
}
.project-info p {
  font-size: 12px;
  color: var(--white-60);
}

.projects-cta { text-align: center; margin-top: 48px; }

.stats-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
}
.stats-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 70, 67, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 70, 67, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
}
.stats-big-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.stat-big-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  transition: 0.3s;
}
.stat-big-card:hover {
  background: rgba(0, 70, 67, 0.12);
  transform: translateY(-4px);
}
.stat-big-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
.stat-big-label {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 10px;
}
.stat-big-desc {
  font-size: 13px;
  color: var(--white-60);
}

.testimonials {
  background: var(--gray-100);
}
.testimonial-single {
  max-width: 720px;
  margin: auto;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 56px;
  border: 1px solid var(--gray-200);
  position: relative;
}
.quote-icon {
  font-size: 80px;
  font-family: Georgia;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 24px;
  left: 40px;
}
.testimonial-text {
  font-size: 20px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  background: #004643;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}
.testimonial-author strong {
  display: block;
}
.testimonial-author small {
  color: var(--gray-400);
}

.contact {
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
  margin: 20px 0 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.contact-form-wrap {
  background: var(--gray-100);
  border-radius: 32px;
  padding: 48px;
  border: 1px solid var(--gray-200);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 6px;
  font-size: 15px;
  background: #fff;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.footer {
  background: var(--black-2);
  color: #fff;
}
.footer-top {
  padding: 80px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-logo {
  font-size: 24px;
  display: block;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-20);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  font-size: 12px;
}
.social-btn:hover {
  background: #004643;
  color: #fff;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li {
  font-size: 14px;
  color: var(--white-60);
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p,
.footer-bottom-links a {
  font-size: 13px;
  color: var(--white-60);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.floating-wa {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
}
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #000;
  border-radius: 6px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.project-card.hidden {
  display: none;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.5);
  }
}
@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 0;
  }
  .nav-link {
    padding: 8px 6px;
    font-size: 11px;
  }
  .nav-cta {
    display: none;
  }
  .stats-big-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .group-companies {
    grid-template-columns: 1fr;
  }
  .group-director-card {
    max-width: 620px;
  }
  .group-connector {
    width: 50%;
  }
  .director-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .director-left {
    align-items: center;
  }
  .director-divider {
    width: 80px;
    height: 2px;
    min-height: 2px;
    margin: auto;
  }
  .about-grid-3d {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-visual-3d {
    height: 360px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-card-large {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
  .nav-links {
    position: fixed;
    top: 67px;
    left: 0;
    right: 0;
    background: #0a0a0a;
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    border-bottom: 1px solid var(--white-10);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 14px;
  }
  .hamburger {
    display: flex;
  }
  .hero-title {
    font-size: clamp(40px, 12vw, 70px);
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-stats-bar {
    gap: 20px;
    padding: 20px 16px;
    flex-wrap: wrap;
  }
  .stat-divider {
    display: none;
  }
  .org-grid,
  .tour-grid {
    grid-template-columns: 1fr;
  }
  .org-card-main {
    grid-column: 1;
  }
  .group-director-card {
    flex-direction: column;
    text-align: center;
    padding: 26px 20px;
  }
  .group-director-info {
    width: 100%;
  }
  .group-connector {
    width: 70%;
  }
  .group-note {
    border-radius: 18px;
    text-align: center;
  }
  .tour-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .project-card-large {
    grid-column: span 1;
  }
  .testimonial-card {
    padding: 36px 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .floating-wa {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .hero-scroll {
    display: none;
  }
  .about-visual-3d {
    height: 260px;
  }
  .window-frame {
    border-width: 10px;
  }
  .contact-form-wrap {
    padding: 24px 16px;
  }
  .tour-intro {
    align-items: flex-start;
  }
  .org-card-inner--director {
    flex-direction: column;
    align-items: flex-start;
  }
  .org-card-main .org-card-text h3 {
    font-size: 22px;
  }
}


/* =========================================================
   TESTIMONIAL SYSTEM
   ========================================================= */
.testimonial-intro {
  margin: 0 auto 42px;
}

.testimonial-list {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 42px 40px;
  border: 1px solid var(--gray-200);
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  overflow-wrap: anywhere;
}

.testimonial-card .testimonial-author {
  position: relative;
  z-index: 1;
}

.testimonial-cta {
  max-width: 1080px;
  margin: 28px auto 0;
  padding: 22px 26px;
  background: #0d0d0d;
  border-radius: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-cta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-cta strong {
  font-family: var(--font-heading);
  font-size: 15px;
}

.testimonial-cta span {
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

.testimonial-open-btn {
  flex-shrink: 0;
}

.testimonial-form-wrap {
  max-width: 1080px;
  margin: 24px auto 0;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(0,0,0,.08);
}

.testimonial-form-wrap[hidden] {
  display: none;
}

.testimonial-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.testimonial-form-head h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: #0c3328;
  margin: 0 0 6px;
}

.testimonial-form-head p {
  color: var(--gray-500);
  font-size: 13px;
}

.testimonial-close {
  font-size: 32px;
  line-height: 1;
  color: var(--gray-500);
  padding: 0 6px;
}

.testimonial-close:hover {
  color: var(--black);
}

.testimonial-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rating-picker {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: max-content;
}

.rating-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-picker label {
  cursor: pointer;
  color: #d5d5d5;
  font-size: 30px;
  line-height: 1;
  padding: 2px 3px;
  transition: .2s;
}

.rating-picker label:hover,
.rating-picker label:hover ~ label,
.rating-picker input:checked ~ label {
  color: var(--gold);
}

.testimonial-counter {
  align-self: flex-end;
  color: var(--gray-400);
  font-size: 11px;
  margin-top: -2px;
}

.testimonial-form textarea {
  resize: vertical;
  min-height: 130px;
}

.testimonial-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.testimonial-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.testimonial-cancel {
  color: var(--black);
  border-color: var(--gray-300);
}

.testimonial-form-status {
  min-height: 22px;
  font-size: 13px;
  font-weight: 600;
}

.testimonial-form-status.success {
  color: #087f5b;
}

.testimonial-form-status.error {
  color: #b42318;
}

.testimonial-form-status.info {
  color: #7a5b00;
}

.testimonial-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray-500);
  padding: 20px;
}

@media (max-width: 768px) {
  .testimonial-list {
    grid-template-columns: 1fr;
  }

  .testimonial-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial-open-btn {
    width: 100%;
  }

  .testimonial-form-wrap {
    padding: 26px 20px;
  }
}


/* =========================================================
   SOCIAL MEDIA — CONTACT & FOOTER PREMIUM
   ========================================================= */

.contact-social {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.contact-social-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gray-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.contact-social-line {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-social-card {
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: linear-gradient(135deg, #fff, #f8f8f8);
  overflow: hidden;
  transition: var(--transition);
}

.contact-social-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #004643);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.contact-social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.55);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
}

.contact-social-card:hover::before {
  transform: scaleX(1);
}

.contact-social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #101010;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  transition: var(--transition);
}

.contact-social-card.instagram:hover .contact-social-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.contact-social-card.linkedin:hover .contact-social-icon {
  background: #0a66c2;
}

.contact-social-card small {
  display: block;
  margin-bottom: 2px;
  color: var(--gray-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-social-card strong {
  display: block;
  color: var(--black);
  font-size: 13px;
  line-height: 1.35;
}

.contact-social-arrow {
  color: var(--gold-dark);
  font-size: 18px;
  transition: var(--transition);
}

.contact-social-card:hover .contact-social-arrow {
  transform: translate(2px, -2px);
  color: var(--black);
}


/* Footer social buttons */
.footer-socials {
  align-items: center;
  gap: 9px;
  margin-top: 26px;
}

.footer-socials .social-btn {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  transition: var(--transition);
}

.footer-socials .social-btn:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.footer-socials .social-btn.instagram:hover {
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: transparent;
}

.footer-socials .social-btn.linkedin:hover {
  color: #fff;
  background: #0a66c2;
  border-color: transparent;
}

.footer-socials .social-btn.whatsapp:hover {
  color: #fff;
  background: #25d366;
  border-color: transparent;
}

.footer-socials .social-btn.email:hover {
  color: #fff;
  background: #004643;
  border-color: transparent;
}

/* Footer contact network */
.footer-contact-col > a {
  display: block;
  margin-bottom: 9px;
}

.footer-network {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-network > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-network > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-network > div a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  transition: var(--transition);
}

.footer-network > div a:hover {
  color: var(--gold);
  border-color: rgba(212, 168, 67, 0.28);
  background: rgba(212, 168, 67, 0.06);
  transform: translateX(3px);
}

.footer-network b {
  color: var(--gold);
  font-size: 13px;
}

/* Better footer spacing with the new social/network content */
.footer-top {
  padding-bottom: 68px;
}

.footer-brand > p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 700px) {
  .contact-social-grid {
    grid-template-columns: 1fr;
  }

  .contact-social-card {
    min-height: 74px;
  }

  .footer-socials .social-btn {
    width: 40px;
    height: 40px;
  }
}
