/* ============================================================
   MIRANO TECHNOMATICS - EXACT THEME & DESIGN RECREATION
   Matching the original Astra + Elementor Navy/Gold Aesthetic
   ============================================================ */

:root {
  --primary-navy: #0a1128;
  --secondary-navy: #070d20;
  --card-bg: #0f1838;
  --card-bg-translucent: rgba(15, 24, 56, 0.7);
  --accent-gold: #ffc107;
  --accent-gold-hover: #e0a800;
  --text-light: #e0e2e5;
  --text-white: #ffffff;
  --text-muted: #9aa0a6;
  --border-color: rgba(224, 226, 229, 0.15);
  
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-btn: 'Karla', sans-serif;

  --container-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--primary-navy);
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.625rem);
  line-height: 1.1;
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.375rem);
  line-height: 1.2;
  letter-spacing: -1.5px;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.3;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.25;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #fff;
}

.text-gold {
  color: var(--accent-gold) !important;
}

.text-white {
  color: #ffffff !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Header & Navigation */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 17, 40, 0.4);
  border-bottom: 1px solid rgba(224, 226, 229, 0.1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  position: fixed;
  background-color: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img,
.brand-logo-img {
  height: 60px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.dropdown-chevron {
  transition: transform 0.25s ease;
  color: #94a3b8;
}

.menu-item-has-children:hover > .nav-link .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

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

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
  transform: scale(0, 0) translate(-50%, 0);
  transition: transform 0.25s ease-in-out;
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: scale(1, 1) translate(-50%, 0);
}

/* Dropdown Sub-menu */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(7, 13, 32, 0.98);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 220px;
  list-style: none;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1000;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  width: 100%;
  margin: 0;
}

.sub-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.sub-menu a:hover {
  background: rgba(255, 193, 7, 0.12);
  color: var(--accent-gold);
  padding-left: 1.5rem;
}

/* Header Right Buttons */
.btn-talk {
  background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
  color: var(--primary-navy);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  border: 2px solid var(--accent-gold);
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.35);
  white-space: nowrap;
}

.btn-talk:hover {
  background: transparent;
  color: var(--text-white);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.5px;
  padding: 10px 24px;
  border-radius: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-navy);
  border-color: var(--accent-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--accent-gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--accent-gold);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  color: var(--accent-gold);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

/* Sections */
.section {
  padding: 80px 0;
  position: relative;
}

/* Hero Section (Home) & Carousel */
.hero-section {
  position: relative;
  padding-top: 170px;
  padding-bottom: 90px;
  background-color: var(--primary-navy);
  overflow: hidden;
  min-height: 640px;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  filter: brightness(0.88) contrast(1.08);
  transform: scale(1.08);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, rgba(10, 17, 40, 0.78) 0%, rgba(10, 17, 40, 0.55) 45%, rgba(10, 17, 40, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 17, 40, 0.35) 0%, transparent 50%, rgba(7, 13, 32, 0.75) 100%);
  z-index: 2;
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-carousel-wrapper {
  position: relative;
  width: 100%;
}

.hero-slides-container {
  position: relative;
  width: 100%;
  min-height: 380px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.6s;
  pointer-events: none;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 17, 40, 0.75);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: var(--accent-gold);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulseGold 2s infinite ease-in-out;
}

@keyframes pulseGold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-content {
  max-width: 850px;
}

.hero-title {
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 1.35rem;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8), 0 4px 30px rgba(0, 0, 0, 0.6);
}

.highlight-gold {
  color: var(--accent-gold);
  text-shadow: 0 0 24px rgba(255, 193, 7, 0.4), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.65;
  color: #f3f4f6;
  margin-bottom: 2.25rem;
  max-width: 720px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero-buttons-wrap {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Carousel Navigation & Indicators */
.hero-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 32px;
  border-radius: 8px;
  background: var(--accent-gold);
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.4);
}

.hero-nav-arrows {
  display: flex;
  gap: 0.6rem;
}

.hero-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #070d20;
  transform: scale(1.05);
}

/* Counter Strip */
.counter-strip-section {
  background-color: rgba(7, 13, 32, 0.95);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 45px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.counter-item {
  padding: 0 1rem;
  position: relative;
}

.counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-color);
}

.counter-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

/* Service Boxes Section */
.services-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.services-header-left h2 {
  margin-bottom: 1rem;
}

.services-header-left p {
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.service-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.service-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-box:hover .service-icon-wrap {
  background-color: var(--accent-gold);
  color: var(--primary-navy);
}

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

.service-box p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.service-checklist {
  list-style: none;
  margin-top: 1.25rem;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.service-checklist li svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* District Section */
.district-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.district-divider {
  width: 80px;
  height: 2px;
  background-color: var(--accent-gold);
  margin: 1.75rem 0;
}

.hub-location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hub-icon {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hub-info h4 {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.hub-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-container img {
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}

/* Bottom CTA Box */
.cta-box-section {
  padding: 60px 0 90px 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(15, 24, 56, 0.95), rgba(10, 17, 40, 0.98));
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.cta-box h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.cta-box p {
  max-width: 620px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Footer Section */
.site-footer {
  background: linear-gradient(180deg, #0a1128 0%, #060b1b 100%);
  border-top: 1px solid rgba(255, 193, 7, 0.2);
  padding: 75px 0 0 0;
  position: relative;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.35fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
  padding-bottom: 55px;
}

.footer-logo {
  margin-bottom: 1.5rem;
  display: block;
}

.footer-logo img {
  height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: #c5cad3;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-districts-list {
  font-size: 0.88rem;
  color: #a0a6b2;
  line-height: 1.65;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--accent-gold);
}

.footer-districts-list strong {
  color: #ffffff;
  display: block;
  margin-bottom: 5px;
}

.footer-col-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.2px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 32px;
  height: 2px;
  background-color: var(--accent-gold);
  border-radius: 2px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.footer-info-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  column-gap: 14px;
  color: #c5cad3;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-info-icon {
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
}

.footer-info-icon svg {
  width: 20px;
  height: 20px;
}

.footer-info-text {
  color: #c5cad3;
  line-height: 1.6;
}

.footer-info-text strong {
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 2px;
}

.footer-info-text a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-info-text a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav li {
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: #c5cad3;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-nav a::before {
  content: '›';
  color: var(--accent-gold);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-below {
  border-top: 1px solid rgba(224, 226, 229, 0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-below a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-below a:hover {
  color: var(--accent-gold);
}

/* Page Sub-Heros for About, Services, Contact with Image Background */
.page-hero {
  position: relative;
  padding-top: 175px;
  padding-bottom: 85px;
  text-align: center;
  overflow: hidden;
  background-color: var(--primary-navy);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 30%, rgba(10, 17, 40, 0.68) 0%, rgba(10, 17, 40, 0.85) 100%),
    linear-gradient(180deg, rgba(10, 17, 40, 0.4) 0%, rgba(7, 13, 32, 0.95) 100%);
  z-index: 1;
}

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

.page-hero h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8), 0 4px 28px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.25rem;
}

.page-hero p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.page-label-sub {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.35rem 1.1rem;
  background: rgba(10, 17, 40, 0.75);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   CLEAN & NATURAL CONTACT PAGE STYLING
   ============================================================ */
.contact-section-wrap {
  padding: 60px 0 85px 0;
  position: relative;
}

/* Left Column: Clean, Polished Form Card */
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 2.75rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.form-label-prominent {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}

.form-label-prominent span.req-star {
  color: var(--accent-gold);
  font-weight: 700;
}

.contact-input {
  width: 100%;
  padding: 0.95rem 1.15rem;
  background: rgba(4, 8, 22, 0.85);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all 0.25s ease;
}

.contact-input.no-icon {
  padding-left: 1.15rem;
}

.contact-input::placeholder {
  color: #64748b;
  font-size: 0.95rem;
}

.contact-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.25);
  background: rgba(10, 17, 40, 0.95);
}

select.contact-input option {
  background: #0a1128;
  color: #ffffff;
}

textarea.contact-input {
  resize: vertical;
  min-height: 125px;
}

.contact-submit-btn {
  width: 100%;
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.25);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: var(--accent-gold);
  color: #070d20;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.35);
  background: #ffca28;
}

/* Right Column: Exact Contact Info Block (Matching Reference) */
.exact-contact-info {
  padding-left: clamp(0rem, 1.5vw, 1.5rem);
}

.exact-info-group {
  margin-bottom: 3.5rem;
}

.exact-info-group:last-child {
  margin-bottom: 0;
}

.exact-info-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

.exact-info-title.underline-title {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

.exact-info-text {
  font-size: 1.2rem;
  line-height: 1.65;
  color: #e0e2e5;
  margin-bottom: 0;
}

.exact-info-text a {
  color: #e0e2e5;
  transition: color 0.2s ease;
}

.exact-info-text a:hover {
  color: var(--accent-gold);
}

.exact-social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}

.exact-social-icon {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.exact-social-icon:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Embedded Map Frame */
.contact-map-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  height: 440px;
}

/* Contact Page Trust Badges & Strip */
.contact-hero-pills {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 17, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.5rem 1.15rem;
  border-radius: 50px;
  font-size: 0.88rem;
  color: #ffffff;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-hero-pill span.pill-gold {
  color: var(--accent-gold);
  font-weight: 700;
}

.contact-live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--accent-gold);
  margin-top: 1rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 0.4rem 0.95rem;
  border-radius: 20px;
}

.status-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseGreen 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes pulseGreen {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.contact-direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.25);
  transition: all 0.25s ease;
}

.contact-direction-btn:hover {
  color: #070d20;
  background: var(--accent-gold);
  transform: translateX(3px);
}

/* 4-Step Roadmap Section */
.roadmap-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 2rem;
}

.roadmap-step-card {
  background: linear-gradient(165deg, rgba(14, 23, 54, 0.8) 0%, rgba(7, 13, 32, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.75rem 1.4rem;
  position: relative;
  transition: all 0.3s ease;
}

.roadmap-step-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 193, 7, 0.12);
}

.step-num-badge {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.roadmap-step-card h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.roadmap-step-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 0;
}

/* 4 Value Proposition Cards */
.contact-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-value-card {
  background: linear-gradient(165deg, rgba(14, 23, 54, 0.85) 0%, rgba(7, 13, 32, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-value-card:hover {
  border-color: rgba(255, 193, 7, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 193, 7, 0.1);
}

.contact-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.contact-value-card h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-value-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 0;
}

/* Map Frame & Floating Info Card */
.map-wrap-relative {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
}

.contact-map-frame {
  height: 460px;
  width: 100%;
}

.map-floating-card {
  position: absolute;
  top: 25px;
  left: 25px;
  max-width: 320px;
  background: rgba(7, 13, 32, 0.92);
  border: 1px solid rgba(255, 193, 7, 0.35);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.map-floating-card h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.map-floating-card p {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

/* Mobile Responsiveness */
@media (max-width: 921px) {
  .site-header {
    position: relative;
    background-color: var(--primary-navy);
  }

  .main-navigation {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--secondary-navy);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: none;
  }

  .main-navigation.open {
    display: block;
  }

  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .main-navigation .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(4, 8, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    padding: 0.3rem 0;
    margin-top: 0.3rem;
    margin-left: 1rem;
    width: calc(100% - 1rem);
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-cta-btn,
  .btn-talk {
    display: none;
  }

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

  .counter-item:nth-child(2)::after {
    display: none;
  }

  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .district-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hub-location-item {
    justify-content: center;
    text-align: left;
  }

  .district-divider {
    margin: 1.5rem auto;
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    text-align: left;
  }
  .footer-main-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-below {
    justify-content: space-between;
    text-align: left;
  }
  .contact-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid-modern {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .roadmap-step-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero-slides-container {
    min-height: 440px;
  }
  
  .hero-carousel-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .map-floating-card {
    position: static;
    max-width: 100%;
    margin-top: 1rem;
    border-radius: 12px;
  }

  .contact-map-frame {
    height: 340px;
  }
}

@media (max-width: 544px) {
  .hero-section {
    padding-top: 130px;
    padding-bottom: 50px;
    min-height: auto;
  }

  .hero-slides-container {
    min-height: 480px;
  }

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

  .roadmap-step-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons-wrap .btn {
    width: 100%;
    text-align: center;
  }

  .counter-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .counter-item::after {
    display: none !important;
  }
}

/* ============================================================
   GALLERY PAGE STYLES
   ============================================================ */
.gallery-section {
  padding: 80px 0 100px;
  background-color: var(--primary-navy);
}

.gallery-filter-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.gallery-filter-btn {
  background: rgba(15, 24, 56, 0.85);
  border: 1px solid rgba(255, 193, 7, 0.25);
  color: var(--text-light);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-filter-btn:hover {
  border-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.gallery-filter-btn.active {
  background: var(--accent-gold);
  color: var(--primary-navy);
  border-color: var(--accent-gold);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-card {
  background: var(--card-bg);
  border: 1px solid rgba(224, 226, 229, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 193, 7, 0.15);
}

.gallery-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #050a18;
}

.gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.gallery-card:hover .gallery-card-media img {
  transform: scale(1.07);
}

.gallery-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 17, 40, 0.88);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 17, 40, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
}

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

.gallery-view-btn {
  background: var(--accent-gold);
  color: var(--primary-navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}

.gallery-view-btn:hover {
  transform: scale(1.15);
}

.gallery-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.gallery-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.gallery-card-desc {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.gallery-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(224, 226, 229, 0.1);
}

.gallery-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-size: 0.78rem;
  padding: 3px 9px;
  border-radius: 4px;
}

/* Lightbox Modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 24, 0.95);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-modal.open {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-content {
  max-width: 900px;
  width: 100%;
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.gallery-modal-img {
  width: 100%;
  max-height: 65vh;
  object-fit: cover;
  display: block;
}

.gallery-modal-info {
  padding: 1.5rem 2rem;
}

.gallery-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(10, 17, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.gallery-modal-close:hover {
  background: var(--accent-gold);
  color: var(--primary-navy);
  border-color: var(--accent-gold);
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-filter-wrap {
    gap: 0.5rem;
  }
  .gallery-filter-btn {
    padding: 8px 16px;
    font-size: 0.88rem;
  }
}

/* ============================================================
   CAREER PAGE STYLES (MATCHING JIBINSOLAR STRUCTURE IN MIRANO THEME)
   ============================================================ */
.career-section {
  padding: 80px 0 100px;
  background-color: var(--primary-navy);
}

.career-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.career-intro-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 193, 7, 0.25);
  border-radius: 16px;
  padding: clamp(2rem, 3.5vw, 3rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.career-intro-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.career-card-heading {
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.career-intro-text {
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.7;
}

.career-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.career-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: #e0e2e5;
  font-size: 1.02rem;
  line-height: 1.5;
}

.career-benefit-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.career-openings-header {
  text-align: center;
  margin-bottom: 3rem;
}

.career-openings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4.5rem;
}

/* Streamlined, Punchy Job Card */
.job-card {
  background: linear-gradient(145deg, rgba(15, 24, 56, 0.75) 0%, rgba(8, 14, 34, 0.95) 100%);
  border: 1px solid rgba(224, 226, 229, 0.12);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 193, 7, 0.12);
}

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

.job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.job-type-badge {
  display: inline-block;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.35);
  color: var(--accent-gold);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.job-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 600;
}

.job-live-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

.job-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.35;
  transition: color 0.25s ease;
  min-height: 2.7rem;
}

.job-card:hover .job-title {
  color: var(--accent-gold);
}

/* Meta Details (Location & Experience) */
.job-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding: 1rem 1.15rem;
  background: rgba(10, 17, 40, 0.5);
  border: 1px solid rgba(224, 226, 229, 0.08);
  border-radius: 10px;
}

.job-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.job-meta-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.job-meta-item strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.4px;
}

.job-apply-btn {
  width: 100%;
  margin-top: auto;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 1100px) {
  .career-openings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Embedded Application Form Card */
.career-apply-wrap {
  background: linear-gradient(145deg, #0f1838 0%, #070d20 100%);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* File Upload Dropzone */
.file-dropzone {
  position: relative;
  border: 2px dashed rgba(255, 193, 7, 0.4);
  background: rgba(10, 17, 40, 0.6);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.file-dropzone:hover,
.file-dropzone.dragover {
  border-color: var(--accent-gold);
  background: rgba(255, 193, 7, 0.08);
}

.file-input-hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
}

.file-dropzone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  pointer-events: none;
}

.file-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-choose-cta {
  display: block;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.file-format-hint {
  display: block;
  color: #94a3b8;
  font-size: 0.82rem;
  margin-top: 2px;
}

.file-selected-info {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  pointer-events: auto;
}

.file-remove-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.file-remove-btn:hover {
  color: #ef4444;
}

@media (max-width: 991px) {
  .career-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .career-openings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-below {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 0.75rem;
  }
}

/* ============================================================
   SERVICES PAGE - NATURAL & HUMAN-CRAFTED SOLAR ENGINEERING
   ============================================================ */

.services-process-section {
  padding: 70px 0;
  position: relative;
}

.services-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

.services-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.service-card-modern {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card-modern:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 193, 7, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.service-card-modern:hover .service-card-icon {
  background: var(--accent-gold);
  color: var(--primary-navy);
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.3;
  margin: 0;
}

.service-card-desc {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
  flex-grow: 1;
}

.service-includes-heading {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-includes-list li {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.service-includes-list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  top: -1px;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.service-includes-list .include-title {
  color: #f1f5f9;
  font-weight: 600;
}

/* Quote Consultation Section */
.service-quote-section {
  padding: 80px 0;
  background: #070d20;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.service-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.quote-showcase-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.quote-showcase-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.quote-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 17, 40, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.quote-showcase-overlay h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.quote-showcase-overlay p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.service-quote-form-wrap {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.quote-form-header {
  margin-bottom: 1.75rem;
}

.quote-form-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.quote-form-header p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.quote-field-full {
  grid-column: 1 / -1;
}

.quote-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.quote-input-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-input-icon.icon-top {
  top: 14px;
}

.quote-form-input {
  width: 100%;
  background: #090e1f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  padding: 12px 14px 12px 42px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.12);
  background: #080c1b;
}

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

select.quote-form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

select.quote-form-input option {
  background: #0f172a;
  color: #ffffff;
}

textarea.quote-form-input {
  resize: vertical;
  min-height: 105px;
  padding-top: 12px;
}

.btn-quote-submit {
  width: 100%;
  background: var(--accent-gold);
  color: #0a1128;
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 13px 26px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-quote-submit:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .services-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-top-grid > div:last-child {
    grid-column: 1 / -1;
  }
  .services-bottom-grid {
    grid-template-columns: 1fr;
  }
  .service-quote-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

@media (max-width: 640px) {
  .services-top-grid {
    grid-template-columns: 1fr;
  }
  .quote-form-grid {
    grid-template-columns: 1fr;
  }
}


