/* ==========================================================================
   Base Variables & Typography (Premium Dark Corporate Design)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,400&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --color-primary: #1A2035; /* Deep Charcoal Black */
  --color-primary-dark: #12172B; /* Pitch Dark */
  --color-primary-light: #2C3556; /* Slate Gray */
  
  --color-accent: #F28E1C; /* Vibrant Flame Orange */
  --color-accent-hover: #FA9A2B; /* Lighter Orange */
  --color-accent-dark: #D67A12;
  
  --color-bg: #1A2035;
  --color-bg-alt: #202740; /* Slightly Lighter for cards */
  --color-bg-light: #2C3556; 
  
  --color-text: #94a3b8; /* Slate text for readability on dark */
  --color-text-dark: #f1f5f9; /* White Headings */
  --color-text-white: #ffffff;
  --color-border: #334155;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  /* Layout & Spacing */
  --container-width: 1200px;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;
  
  /* Utilities */
  --radius: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 20px -5px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px -5px rgba(242, 142, 28, 0.15); /* Orange glow */
  --shadow-hover: 0 20px 40px -5px rgba(242, 142, 28, 0.25);
  --glass: rgba(44, 53, 86, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   Reset & Global Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.2;
}

p {
  text-align: justify;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: var(--color-accent);
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: 1;
}

.section-bg-alt {
  background-color: var(--color-bg-alt);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title h2 {
  font-size: 2.8rem;
  color: var(--color-text-white);
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
}

.section-title h2 span {
  color: var(--color-accent);
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--color-accent), transparent);
  border-radius: 2px;
}

.section-title p {
  color: var(--color-text);
  font-size: 1.15rem;
  margin-top: 1.5rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Components: Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #fff;
  box-shadow: 0 10px 20px rgba(242, 142, 28, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-hover), var(--color-accent));
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 15px 25px rgba(242, 142, 28, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-white);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  background-color: var(--color-bg-light);
  border-color: var(--color-accent);
  color: var(--color-text-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* ==========================================================================
   Header & Navigation (Split-Level Design)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.top-header {
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}

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

.top-contact-info {
  display: flex;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}

.contact-item i, .contact-item .icon {
  color: var(--color-accent);
}

.bottom-header {
  padding: 12px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-placeholder {
  display: inline-block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-accent);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn { display: none; font-size: 1.8rem; cursor: pointer; color: var(--color-primary-dark); transition: var(--transition); }

/* ==========================================================================
   Modern Parallax Hero
   ========================================================================== */
.hero-modern {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  background-image: url('../images/slider_furnace_1774961333529.png'); /* Fallback image */
  z-index: 1;
}

/* Background overlay grid and gradient */
.hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 32, 53, 0.9) 0%, rgba(26, 32, 53, 0.6) 50%, rgba(242, 142, 28, 0.1) 100%);
  z-index: -1;
}

.hero-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  z-index: -1;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--spacing-xl);
  width: 100%;
  margin-top: 80px;
}

.hero-text {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(242, 142, 28, 0.1);
  border: 1px solid rgba(242, 142, 28, 0.3);
  color: var(--color-accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: slideDown 0.8s ease forwards;
}

.hero-modern h1 {
  font-size: 4.5rem;
  color: var(--color-text-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -2px;
  animation: slideUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-modern h1 span {
  color: var(--color-accent);
  text-shadow: 0 0 30px rgba(242, 142, 28, 0.4);
}

.hero-modern p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: slideUp 1s ease 0.6s forwards;
  opacity: 0;
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes slideDown {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   About Section - Glassmorphic
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.img-main {
  width: 90%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
}

.experience-box {
  position: absolute;
  bottom: -30px;
  right: 0;
  background: rgba(44, 53, 86, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 200px;
}

.experience-box h3 {
  font-size: 3rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.experience-box p {
  text-align: center;
  color: var(--color-text-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.about-text h3 {
  color: var(--color-accent);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.about-text h2 {
  font-size: 2.8rem;
  color: var(--color-text-white);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--color-text);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Services Grid (Glass Cards)
   ========================================================================== */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(242, 142, 28, 0.1), transparent);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(242, 142, 28, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(44, 53, 86, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--color-text-white);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--color-text-white);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link i {
  transition: var(--transition);
}

.service-card:hover .service-link {
  color: var(--color-accent);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ==========================================================================
   Highlights / Stats Section
   ========================================================================== */
.stats-section {
  position: relative;
  background-image: url('../images/slider_inspection_1774961353312.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 32, 53, 0.85); /* Dark overlay */
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-accent);
}

.stat-number {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-text {
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background-color: var(--color-primary-dark); color: var(--color-text); padding: 5rem 0 0; border-top: 1px solid var(--glass-border); position: relative; overflow: hidden; }

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 1px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 100%);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 { color: var(--color-text-white); font-size: 1.2rem; margin-bottom: 2rem; position: relative; }

.footer-col h4::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  bottom: -10px;
  left: 0;
  background-color: var(--color-accent);
}

.footer-desc {
  margin-bottom: 2rem;
  font-size: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon { width: 45px; height: 45px; border-radius: 50%; background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; color: var(--color-primary-dark); font-size: 1.2rem; transition: var(--transition); }

.social-icon:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(242, 142, 28, 0.3);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links li a {
  color: var(--color-text);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links li a::before { content: '\2192'; color: var(--color-accent); font-size: 1.2rem; line-height: 1; margin-right: 5px; }

.footer-links li a:hover {
  color: var(--color-text-white);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact li i {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-bottom {
  background: #000;
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-bottom p {
  color: #64748b;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

.seo-hidden {
  font-size: 0.7rem;
  color: #2C3556;
  margin-top: 1rem;
  text-align: center;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-modern h1 { font-size: 3.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: rgba(26, 32, 53, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    border-left: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-btn { 
      display: block !important; 
      font-size: 1.8rem; 
      cursor: pointer; 
      color: #fff !important; 
      transition: var(--transition); 
  }

  .about-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { gap: 2rem; }
}

/* ==========================================================================
   Inner Page Headers
   ========================================================================== */
.inner-page-header {
    padding: 180px 0 100px; /* Increased top padding for the menu, consistent vertical space */
    background-image: linear-gradient(rgba(26, 32, 53, 0.8), rgba(26, 32, 53, 0.9)), url('../images/hero_cinematic_furnace.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    min-height: 400px; /* Fixed minimum height for size uniformity */
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-page-header .container {
    width: 100%;
}

.inner-page-header .page-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-white);
    line-height: 1.2;
}

.inner-page-header .page-title span {
    color: var(--color-accent);
}

.inner-page-header p {
    color: var(--color-text);
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
}

/* ==========================================================================
   Infrastructure / Machineries Styles
   ========================================================================== */
.section-light {
    background-color: #f1f3f6; /* Slightly darker for better visibility */
}

/* Alternating Layout Utilities */
.infra-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.infra-grid > div {
    flex: 1;
}

.infra-grid.row-reverse {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .infra-grid {
        flex-direction: column !important;
        gap: 2rem;
    }
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--color-accent);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: block;
}

.feature-card h4 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}







/* Premium Divider Line */
.premium-divider {
    height: 2px;
    width: 100%;
    margin: 8rem 0;
    background: linear-gradient(90deg, transparent, #F28E1C, transparent);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.premium-divider::after {
    content: '✦';
    position: absolute;
    background: #1A2035; /* Explicit charcoal black matching site bg */
    color: #F28E1C;
    padding: 0 1.5rem;
    font-size: 2rem;
    text-shadow: 0 0 15px rgba(242, 142, 28, 0.8);
    z-index: 10;
}

.premium-divider::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 15px;
    background: #F28E1C;
    filter: blur(25px);
    opacity: 0.4;
    z-index: 1;
}

/* ==========================================================================
   Final Light Theme Overrides & Corrections
   ========================================================================== */
/* ==========================================================================
   Header & Multi-Theme Support
   ========================================================================== */
.inner-page .header { background: #ffffff !important; border-bottom: 1px solid rgba(0,0,0,0.1); }
.inner-page .bottom-header { background: #ffffff !important; border-bottom: 1px solid rgba(0,0,0,0.1); }
.inner-page .bottom-header .nav-links li a { color: var(--color-primary-dark) !important; font-weight: 600; }
.inner-page .bottom-header .nav-links li a:hover, 
.inner-page .bottom-header .nav-links li a.active { color: var(--color-accent) !important; }
.inner-page .bottom-header .mobile-menu-btn { color: var(--color-primary-dark) !important; }

/* Mobile Menu Overrides for White Theme */
@media (max-width: 768px) {
  .inner-page .nav-links { background: #ffffff; border-left: 1px solid rgba(0,0,0,0.1); }
  .inner-page .nav-links li a { color: var(--color-primary-dark) !important; }
}


/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 15px 30px rgba(0,0,0,0.3);
    color: white;
}

/* Static SEO/UX responsive hardening */
.capacity-table-lead {
  margin: 0.9rem 0 1.5rem;
  max-width: 760px;
  color: #c2d0e6;
  font-size: 1.05rem;
}

.capacity-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(130deg, rgba(242, 142, 28, 0.85) 0%, rgba(250, 154, 43, 0.45) 32%, rgba(80, 99, 151, 0.44) 65%, rgba(44, 53, 86, 0.95) 100%);
  box-shadow: 0 24px 60px -35px rgba(0, 0, 0, 0.9), 0 10px 30px -20px rgba(242, 142, 28, 0.7);
}

.capacity-table-wrapper::-webkit-scrollbar {
  height: 10px;
}

.capacity-table-wrapper::-webkit-scrollbar-track {
  background: rgba(148, 163, 184, 0.15);
  border-radius: 999px;
}

.capacity-table-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--color-accent), #f7b161);
  border-radius: 999px;
}

.capacity-table {
  width: 100%;
  min-width: 920px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 21px;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(242, 142, 28, 0.2), transparent 40%), linear-gradient(160deg, rgba(28, 36, 63, 0.98), rgba(17, 23, 42, 0.98));
}

.capacity-table thead th {
  padding: 1.05rem 1.2rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: #fff;
  background: linear-gradient(120deg, rgba(242, 142, 28, 0.97), rgba(214, 122, 18, 0.97));
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.capacity-table thead th:last-child {
  border-right: none;
}

.capacity-table td {
  padding: 1rem 1.2rem;
  color: #d5e1f0;
  font-size: 0.97rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  vertical-align: middle;
}

.capacity-table tbody tr:nth-child(odd) td {
  background-color: rgba(39, 50, 84, 0.65);
}

.capacity-table tbody tr:nth-child(even) td {
  background-color: rgba(30, 40, 67, 0.8);
}

.capacity-table tbody tr:hover td {
  background-color: rgba(242, 142, 28, 0.13);
}

.capacity-table tbody tr:last-child td {
  border-bottom: none;
}

.capacity-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #fff;
}

.capacity-table td:nth-child(2) {
  color: #bfcce2;
}

.capacity-pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 142, 28, 0.42);
  background: rgba(242, 142, 28, 0.14);
  color: #ffd5a0;
  font-weight: 600;
  line-height: 1.3;
}

.capacity-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  padding: 0.28rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 214, 146, 0.45);
  background: rgba(111, 214, 146, 0.16);
  color: #b6ffd0;
  font-family: var(--font-heading);
  font-weight: 700;
}

.capacity-count-meta {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: #9fb0ca;
}

.capacity-muted {
  color: #9fb0ca;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .hero-modern h1 {
    font-size: 2.4rem;
  }

  .container {
    padding: 0 1rem;
  }

  .capacity-table-lead {
    font-size: 0.96rem;
    margin-bottom: 1.2rem;
  }

  .capacity-table {
    min-width: 760px;
  }

  .capacity-table thead th,
  .capacity-table td {
    padding: 0.85rem 0.85rem;
    font-size: 0.87rem;
  }

  .capacity-pill {
    font-size: 0.8rem;
  }

  .capacity-count-meta {
    font-size: 0.7rem;
  }

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

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Accessibility Focus Styles */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

/* Skip Link Styles */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 8px;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: none;
}

/* Split Header Adjustments */
.header { padding: 0 !important; display: flex; flex-direction: column; background: transparent !important; border: none !important; }
.top-header { border-bottom: 2px solid var(--color-accent); background-color: #ffffff !important; padding: 0.5rem 0; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.top-header-container { display: flex; justify-content: space-between; align-items: center; }
.top-contact-info { display: flex; gap: 2.5rem; align-items: center; }
.contact-item { display: flex; align-items: center; gap: 0.8rem; color: var(--color-primary-dark); font-weight: 600;}
.contact-item a { color: var(--color-primary-dark); font-size: 1rem; font-family: var(--font-heading); text-decoration: none; transition: var(--transition); }
.contact-item a:hover { color: var(--color-accent); }
.contact-item .icon { color: var(--color-accent); font-size: 1.3rem; display: flex; align-items: center; justify-content: center; }

.bottom-header { background: rgba(26, 32, 53, 0.90) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 0.8rem 0; width: 100%; display: flex; justify-content: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
.bottom-header .navbar { width: 100%; display: flex; justify-content: center; position: relative;}
.bottom-header .nav-links { gap: 1.2rem; align-items: center; }
.bottom-header .nav-links li a { color: #ffffff !important; font-weight: 500; font-size: 0.95rem; padding: 0.3rem 0; margin: 0; letter-spacing: 0.5px; white-space: nowrap; }
.bottom-header .nav-links li a:hover, .bottom-header .nav-links li a.active { color: var(--color-accent) !important; }
.bottom-header .mobile-menu-btn { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: #ffffff !important; }

@media (max-width: 768px) {
  .top-header-container { flex-direction: column; gap: 1rem; text-align: center; }
  .top-contact-info { flex-direction: column; gap: 0.5rem; }
  .bottom-header .nav-links { justify-content: flex-start; }
}

/* Footer Customizations (White Background) */
.footer { background-color: #ffffff !important; color: var(--color-primary-dark) !important; border-top: 1px solid rgba(0,0,0,0.1) !important; padding-top: 4rem !important; }
.footer::before { background: radial-gradient(circle, rgba(242, 142, 28, 0.5) 0%, transparent 100%) !important; }
.footer-col h4 { color: var(--color-primary-dark) !important; }
.footer-col h4::after { background-color: var(--color-accent) !important; }
.footer-desc { color: var(--color-primary-dark) !important; font-weight: 500; }
.footer-links li a { color: var(--color-primary-dark) !important; font-weight: 600; }
.footer-links li a:hover { color: var(--color-accent) !important; transform: translateX(5px) !important; }
.footer-contact li { color: var(--color-primary-dark) !important; font-weight: 500; }
.footer-contact li i { color: var(--color-accent) !important; }
.social-icon { color: var(--color-primary-dark) !important; border-color: rgba(0,0,0,0.2) !important; }

/* 2-Column Footer Links */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}

/* Footer Bottom (Matches Menu Background) */
.footer-bottom { background: rgba(26, 32, 53, 0.95) !important; border-top: none !important; padding: 0.8rem 0 !important; }
.footer-bottom p { color: #ffffff !important; font-weight: 500; font-size: 0.9rem; }

/* SEO Text Styling */
.seo-hidden {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
    text-align: center;
    line-height: 1.4;
}

/* ==========================================================================
   Gallery & Lightbox System
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(242, 142, 28, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem;
    background: linear-gradient(to top, rgba(26, 32, 53, 0.95), transparent);
    color: var(--color-text-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox Pop-up CSS */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 23, 43, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    object-fit: contain;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-text-white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-white);
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

/* ==========================================================================
   Gallery & Lightbox System
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(242, 142, 28, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem;
    background: linear-gradient(to top, rgba(26, 32, 53, 0.95), transparent);
    color: var(--color-text-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox Pop-up CSS */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 23, 43, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    object-fit: contain;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-text-white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-white);
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

/* ==========================================================================
   Contact Page System
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info i {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-top: 0.2rem;
}

.contact-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--color-text-white);
}

.contact-info span {
    color: var(--color-text);
    font-size: 1.05rem;
    line-height: 1.5;
}

.map-embed {
    margin-top: 3rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.contact-card {
    background: rgba(44, 53, 86, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(26, 32, 53, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--color-text-white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control::placeholder {
    color: #64748b;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(26, 32, 53, 0.9);
    box-shadow: 0 0 10px rgba(242, 142, 28, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* ==========================================================================
   Ultra-Small Devices
   ========================================================================== */
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-modern h1 { font-size: 2rem; }
    .section-title h2 { font-size: 1.75rem; }
    .footer-col a img { height: 80px !important; }
}
