/* 
 * Corporate Holding Theme 
 * Premium Gold & Dark Aesthetic
 */

:root {
  --gold-primary: #C5A059;
  --gold-hover: #b08d4b;
  --gold-light: #f4ecd9;
  --dark-bg: #1a1a1a;
  --dark-text: #2c2c2c;
  --gray-light: #f8f9fa;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

html,
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* --- Utilities --- */
.text-gold {
  color: var(--gold-primary) !important;
}

.bg-gold {
  background-color: var(--gold-primary) !important;
}

.bg-dark-corp {
  background-color: var(--dark-bg) !important;
  color: #fff;
}

.section-padding {
  padding: 80px 0;
}

/* --- Typography Utilities --- */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--gold-primary);
}

/* --- Buttons --- */
.btn-gold {
  background-color: var(--gold-primary);
  color: #fff;
  border: 2px solid var(--gold-primary);
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 0;
  /* Sharp corners for corporate look */
}

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

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 0;
}

.btn-outline-gold:hover {
  background-color: var(--gold-primary);
  color: #fff;
}

/* --- Navigation --- */
.navbar {
  padding: 1.5rem 0;
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 75px;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-left: 1.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary) !important;
}

/* --- Hero Section (Split Layout) --- */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--dark-bg);
  color: #fff;
  overflow: hidden;
  padding: 80px 0;
}

/* Background Abstract Glow */
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, rgba(26, 26, 26, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Left Side Text */
.hero-small-tag {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 8px 16px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #fff;
}

.hero-title span {
  color: var(--gold-primary);
  /* Gold text highlight */
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #aaa;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 90%;
}

/* Right Side Visual (Orbit Layout Option D) */
.hero-visual-container {
  position: relative;
  height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Contain orbits */
}

.hero-orbit-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central Core */
.orbit-core {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, var(--gold-primary), #8a6d3b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 60px rgba(197, 160, 89, 0.4);
  color: #fff;
  text-align: center;
  flex-direction: column;
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.core-icon {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.core-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Orbit Rings */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 1;
}

.ring-1 {
  width: 280px;
  height: 280px;
  border-style: dashed;
  animation: spinRight 40s linear infinite;
}

.ring-2 {
  width: 420px;
  height: 420px;
  border-color: rgba(197, 160, 89, 0.15);
  animation: spinLeft 60s linear infinite;
}

.ring-3 {
  width: 560px;
  height: 560px;
  border-style: dotted;
  opacity: 0.5;
  animation: spinRight 80s linear infinite;
}

/* Satellites */
.satellite {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Start center */
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--dark-bg);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  z-index: 5;
  transition: transform 0.3s ease;
}

.satellite i {
  color: #fff;
  font-size: 1.5rem;
}



/* Container for rotating satellites */
.sat-rotator-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spinRight 30s linear infinite;
}

.sat-pos-1 {
  position: absolute;
  top: 0;
  left: 105%;
  transform: translate(-50%, -50%);
}

/* Top */
.sat-pos-2 {
  position: absolute;
  bottom: 0;
  left: 145%;
  transform: translate(-50%, 50%);
}

/* Bottom */

.sat-rotator-2 {
  position: absolute;
  width: 84% !important;
  height: 84% !important;
  /* Smaller ring */
  animation: spinLeft 25s linear infinite;
}

.sat-pos-3 {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(50%, -50%);
}

/* Right */

/* Hover Effects */
.satellite:hover {
  transform: scale(1.2);
  background: var(--gold-primary);
  cursor: default;
}

.sat-label {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
  pointer-events: none;
}

.satellite:hover .sat-label {
  opacity: 1;
}

/* Animations */
@keyframes spinRight {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spinLeft {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

/* --- Services / Cards --- */
.service-card {
  background: #fff;
  padding: 40px 30px;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--gold-primary);
}

.service-icon {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

/* --- Project Spotlight (Single) --- */
.project-spotlight-section {
  background-color: var(--dark-bg);
  color: #fff;
  /* overflow: hidden; Removed to allow container padding if needed, but keeping generally safe */
}

/* Updated Wrapper for use inside .container */
.spotlight-wrapper {
  display: flex;
  flex-wrap: wrap;
  min-height: 500px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  /* Add shadow for depth inside container */
}

.spotlight-image-col {
  flex: 0 0 55%;
  /* Keep ratio */
  position: relative;
  min-height: 400px;
}

.spotlight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

/* Image overlay on hover or static */
.spotlight-image-col::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.3) 100%);
  pointer-events: none;
}

.spotlight-content-col {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background-color: var(--dark-bg);
  /* Seamless match */
}

.spotlight-tag {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.spotlight-tag::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  width: 50px;
  height: 1px;
  background: var(--gold-primary);
  margin-left: 15px;
}

.spotlight-title {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.spotlight-desc {
  color: #aaa;
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 500px;
  font-weight: 300;
}

.spotlight-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.stat-item h5 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  line-height: 1;
}

.stat-item p {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 0;
  letter-spacing: 1px;
}

@media (max-width: 991px) {

  .spotlight-image-col,
  .spotlight-content-col {
    flex: 0 0 100%;
  }

  .spotlight-image-col {
    height: 350px;
  }

  .spotlight-content-col {
    padding: 40px 20px;
  }

  .spotlight-title {
    font-size: 2.2rem;
  }
}

/* --- Portfolio Grid --- */

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.9);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  color: #fff;
}

.portfolio-wrap:hover .portfolio-info {
  transform: translateY(0);
}

/* --- About Page (Onyx Header Redesign) --- */
.page-hero {
  position: relative;
  height: 450px;
  background-color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  /* Clear navbar margin if handled by padding elsewhere */
  padding-top: 80px;
  /* Offset for fixed navbar */
}

/* Texture Pattern Overlay */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.hero-title-wrapper {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: #fff;
  letter-spacing: 5px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

/* Gold accent line */
.hero-main-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-primary);
  margin: 15px auto 0;
}

/* --- Light Footer Variant (Premium) --- */
.footer-light {
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
  padding: 80px 0 30px;
}

.footer-light h5 {
  color: #000;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-light h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--gold-primary);
}

.footer-light ul li a {
  color: #666;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  padding-bottom: 5px;
}

.footer-light ul li a:hover {
  color: var(--gold-primary);
  transform: translateX(5px);
}

.footer-light .footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

footer.footer-light a {
  color: #555;
}

footer.footer-light a:hover {
  color: var(--gold-primary);
}

footer.footer-light .footer-bottom {
  border-top: 1px solid #ddd;
  color: #888;
}

footer.footer-light .footer-bottom p {
  color: #888;
}

.hero-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

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

/* --- Stats Strip --- */
.stats-strip {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid #f0f0f0;
}

.stat-box {
  text-align: center;
  padding: 10px;
  border-right: 1px solid #eee;
}

.stat-box:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Strategic Pillars (Mission/Vision) --- */
.strategic-section {
  background-color: var(--dark-bg);
  color: #fff;
  padding: 100px 0;
  position: relative;
}

.pillar-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.pillar-icon {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 25px;
}

/* --- Brand Card Specifics --- */
.brand-logo-box {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 25px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* --- Prestige Brand Card --- */
.prestige-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.prestige-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-primary);
}

.prestige-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.prestige-card:hover::after {
  transform: scaleX(1);
}

.prestige-logo-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.prestige-logo-container img {
  max-height: 100%;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.prestige-card:hover .prestige-logo-container img {
  transform: scale(1.1);
}

/* --- About Image Frame --- */
.about-frame-wrapper {
  position: relative;
  padding: 20px;
}

.about-frame-img {
  position: relative;
  z-index: 2;
  border-radius: 4px;
}

.about-frame-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--gold-primary);
  border-left: 3px solid var(--gold-primary);
  z-index: 1;
}

.about-frame-deco.bottom-right {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  border: none;
  border-bottom: 3px solid var(--gold-primary);
  border-right: 3px solid var(--gold-primary);
}

/* --- Contact Info --- */
.contact-box {
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
}

/* --- Partners / Brands Section --- */
.partners-section {
  background-color: #fff;
  padding: 60px 0;
  border-top: 1px solid #f0f0f0;
}



.partner-logo-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: all 0.3s ease;
  padding: 10px;
}

.partner-logo-wrap:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.partner-logo-wrap img {
  max-width: 140px;
  max-height: 60px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-logo-wrap:hover img {
  filter: grayscale(0%);
}

.partner-logo-lg {
  max-width: 180px !important;
  /* Increased from 140px */
  max-height: 80px !important;
  /* Increased from 60px */
}

/* --- CTA Section (Floating Bar) --- */
.cta-section-wrapper {
  background-color: #fff;
  padding-bottom: 80px;
  /* Space before footer */
}

.cta-floating-box {
  background: var(--dark-bg);
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern for CTA */
.cta-floating-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(45deg, rgba(197, 160, 89, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(197, 160, 89, 0.05) 25%, transparent 25%);
  background-size: 20px 20px;
  pointer-events: none;
}

.cta-content h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-content p {
  color: #aaa;
  margin-bottom: 0;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .cta-floating-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 30px;
  }
}

/* --- Footer --- */
footer {
  background: var(--dark-bg);
  color: #fff;
  padding: 60px 0 20px;
}

footer h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-primary);
}

footer a {
  color: #bbb;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #888;
}

/* --- Responsive --- */
/* --- Responsive Design --- */

/* Tablet & Mobile Layouts */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  /* Hero Visual */
  .hero-visual-container {
    height: 400px;
    margin-top: 2rem;
  }

  .hero-orbit-wrapper {
    transform: scale(0.7);
  }

  /* Footer Alignment */
  .footer-light .col-lg-2,
  .footer-light .col-lg-3 {
    text-align: center;
  }

  .footer-light .col-lg-5 {
    margin-bottom: 2rem;
  }

  /* Spotlight Cards */
  .spotlight-img-container {
    height: 300px;
  }

  /* Prestige Cards */
  .prestige-card {
    padding: 30px;
  }
}

/* Mobile Layouts */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .spotlight-tag::after {
    display: none;
  }


  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

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

  /* Navbar */
  .navbar-brand img {
    height: 50px;
  }

  .navbar-toggler {
    border: none;
    padding: 0;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  /* Hero Section */
  .hero-section {
    min-height: auto;
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 300px;
    margin-right: 0 !important;
  }

  /* Hero Orbit - Further scale down for mobile */
  .hero-orbit-wrapper {
    transform: scale(0.5);
    width: 350px;
    height: 350px;
  }

  .hero-visual-container {
    height: 350px;
    overflow: hidden;
  }

  /* Page Headers (Onyx) */
  .page-hero {
    height: 300px;
  }

  .hero-main-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  /* Section Titles */
  .section-title {
    font-size: 2rem;
  }

  /* Strategic Pillars / Cards */
  .strategic-section {
    padding: 60px 0;
  }

  /* CTA Box */
  .cta-floating-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .cta-btn {
    width: 100%;
  }

  .cta-btn .btn {
    width: 100%;
  }

  /* Partners */
  .partner-logo-wrap {
    height: 80px;
  }

  .partner-logo-wrap img {
    max-width: 100px;
  }

  /* Footer */
  .footer-light {
    padding: 50px 0 20px;
  }

  /* About Frame */
  .about-frame-wrapper {
    padding: 10px;
  }

  .about-frame-deco {
    width: 60px;
    height: 60px;
  }

  /* Contact Page */
  .stats-strip .col-6 {
    width: 100%;
    /* Stack on very small screens if needed, otherwise col-6 is usually fine */
  }

  /* Gallery Single Column */
  .gallery-item {
    height: 250px;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .hero-main-title {
    font-size: 2rem;
  }

  .spotlight-title {
    font-size: 1.8rem;
  }

  .orbit-ring.ring-3 {
    display: none;
    /* Hide outer ring on very small screens to prevent overflow */
  }

  .hero-orbit-wrapper {
    transform: scale(0.45);
  }
}

/* --- Portfolio Spotlight --- */
.project-spotlight-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease;
  border: 1px solid #eee;
}

.project-spotlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.spotlight-img-container {
  height: 400px;
  position: relative;
  overflow: hidden;
}

.spotlight-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-spotlight-card:hover .spotlight-img-container img {
  transform: scale(1.05);
}

.spotlight-content {
  padding: 40px;
}

.project-meta-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.project-meta-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 5px;
}

.project-meta-item span {
  font-size: 0.95rem;
  color: #555;
}

/* --- Contact Process --- */
.contact-process-step {
  padding: 30px;
  background: #fff;
  border-left: 3px solid #eee;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-process-step:hover {
  border-left-color: var(--gold-primary);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.contact-process-step:hover .step-number {
  opacity: 1;
}