/* 
 * Kap Industries Global Stylesheet
 * 
 * --primary-dark: #0A0F1E
 * --primary-blue: #0D2357
 * --accent-gold: #F0A500
 * --accent-gold-light: #FFB800
 * --white: #FFFFFF
 * --off-white: #F5F5F0
 * --text-muted: #9BA3B2
 * --card-bg: #111827
 * --border-subtle: rgba(240,165,0,0.2)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Montserrat:wght@600;700&family=Old+Standard+TT:wght@400;700&display=swap');

:root {
  --primary-dark: #0A0F1E;
  --primary-blue: #0D2357;
  --accent-gold: #F0A500;
  --accent-gold-light: #FFB800;
  --white: #FFFFFF;
  --off-white: #F5F5F0;
  --text-muted: #555555;
  --card-bg: #FFFFFF;
  --border-subtle: rgba(0,0,0,0.1);
  --font-heading: 'Old Standard TT', serif;
  --font-subheading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: #ffffff;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.subheading, .nav-links {
  font-family: var(--font-subheading);
}

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

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

.eyebrow {
  font-family: var(--font-subheading);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 3rem 0;
}

.section-light {
  background-color: var(--off-white);
  color: #1e293b;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-subheading);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #FFFFFF !important;
  font-weight: 700;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent-gold-light);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--accent-gold);
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 0px;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--primary-dark);
  padding: 0.5rem 0px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.logo-k {
  color: var(--accent-gold);
  font-size: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
}

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

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

.dropdown {
  position: relative;
}

.nav-links .dropdown > a,
.nav-links a.dropdown-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.nav-links .dropdown > a i,
.nav-links a.dropdown-toggle i {
  color: #FFFFFF !important;
  font-size: 10px !important;
  line-height: 1 !important;
  display: inline-block !important;
  opacity: 1 !important;
  transition: transform 0.25s ease, color 0.2s ease !important;
  position: relative;
  top: 0;
  vertical-align: middle;
}

.nav-links .dropdown:hover > a i,
.nav-links .dropdown:hover a.dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 280px;
  white-space: nowrap;
  padding: 0.85rem 0;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  border-top: 2px solid var(--accent-gold);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.6rem;
  text-transform: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: #1e293b !important;
  letter-spacing: 0;
  transition: all 0.2s ease;
}

.dropdown-menu li a::after {
  display: none !important;
}

.dropdown-menu li a:hover {
  color: var(--accent-gold) !important;
  background-color: #f8fafc;
  padding-left: 1.85rem;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9)), 
              url('images/hero_home.jpg') center/cover;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--primary-dark), transparent);
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.hero-subtext {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin: 0 auto 2.5rem auto;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--accent-gold);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-20px) translateX(-50%); }
  60% { transform: translateY(-10px) translateX(-50%); }
}

/* Stats Bar */
.stats-bar {
  background-color: var(--card-bg);
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-family: var(--font-subheading);
}

.stat-item p {
  font-family: var(--font-subheading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Section Titles */
.section-header {
  text-align: center;
  margin-bottom: 1rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

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

/* Cards & Placeholders */
.placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.2);
  font-size: 3rem;
}

.real-img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.img-service-aviation { background-image: url('images/Aviation Interiors img1.jpeg'); }
.img-service-corporate { background-image: url('images/Corporate Offices img.jpeg'); }
.img-service-commercial { background-image: url('images/Commercial Spaces img1.jpeg'); }
.img-service-turnkey { background-image: url('images/Turnkey image.jpeg'); }

.img-proj-aviation { background-image: url('images/Aviation Lounge img1.jpeg'); }
.img-proj-boardroom { background-image: url('images/Executive Boardroom img.jpeg'); }
.img-proj-commercial { background-image: url('images/Open-Commercial-Interior.jpeg'); }
.img-proj-reception { background-image: url('images/Kap-slider1.jpeg'); }
.img-proj-suite { background-image: url('images/proj_suite.jpg'); }
.img-proj-lounge { background-image: url('images/Hospitality-img1.jpeg'); }

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

.service-card {
  background-color: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-img-wrapper {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.service-card:hover .placeholder-img,
.service-card:hover .real-img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.service-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  color: var(--accent-gold);
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.link-arrow:hover {
  color: var(--accent-gold);
}

/* Process Timeline */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-subtle);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 18%;
}

.step-num {
  width: 60px;
  height: 60px;
  background-color: var(--primary-dark);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

.timeline-step:hover .step-num,
.timeline-step.active .step-num {
  background-color: var(--accent-gold);
  color: var(--white);
}

.timeline-step h4 {
  font-family: var(--font-subheading);
  font-size: 1rem;
}

/* Split Section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bullet-list {
  margin-top: 2rem;
}

.bullet-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bullet-list i {
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.quote-block {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--card-bg);
  border-left: 4px solid var(--accent-gold);
}

.quote-block p,
.parallax-section .quote-block p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: #1A1A1A !important;
  margin-bottom: 1rem;
}

.quote-block .text-muted,
.parallax-section .quote-block .text-muted {
  color: #555555 !important;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  position: relative;
  background-color: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Stronger default shadow */
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* Stronger hover shadow */
}

.project-card .placeholder-img,
.project-card .real-img {
  height: 400px;
  margin-bottom: 1.5rem;
}

.category-tag {
  color: var(--accent-gold);
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.project-card .category-tag,
.project-card h3,
.project-card p {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.project-card p {
  padding-bottom: 1.5rem;
}

/* Products Strip */
.product-strip {
  background-color: var(--off-white);
  color: var(--white);
  padding: 4rem 0;
}

/* Global Product Card Styles (Inspired by Image 2 Design) */
.product-card {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.03) !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 35px -5px rgba(11, 19, 30, 0.12), 0 10px 15px -5px rgba(11, 19, 30, 0.04) !important;
  border-color: #cbd5e1 !important;
}

/* Product Page Titles */
.product-info h3 {
  color: #0b131e !important;
  font-family: var(--font-heading) !important;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  margin-bottom: 0.5rem;
}

/* Modern Enquire Button for Product Cards (Replaces Yellow with Dark Theme) */
.product-card .btn-primary,
.product-info .btn-primary {
  background-color: #0b131e !important;
  color: #ffffff !important;
  border: 1px solid #0b131e !important;
  border-radius: 30px !important;
  font-family: var(--font-subheading) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 0.65rem 2rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(11, 19, 30, 0.1) !important;
}

.product-card .btn-primary::before,
.product-info .btn-primary::before {
  display: none !important;
}

.product-card .btn-primary:hover,
.product-info .btn-primary:hover {
  background-color: #1e293b !important;
  border-color: #1e293b !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(11, 19, 30, 0.18) !important;
}

.product-icons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.product-icon-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.product-icon-item i {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.product-icon-item:hover i {
  color: var(--accent-gold);
}

.product-icon-item span {
  display: block;
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 2rem 0;
}

.marquee {
  display: flex;
  gap: 2rem;
  align-items: center;
  width: max-content;
}

.marquee-left {
  animation: marquee-left 45s linear infinite;
}

.marquee-right {
  animation: marquee-right 45s linear infinite;
}

.client-logo {
  height: 80px;
  width: auto;
  max-width: none;
  object-fit: contain;
  background-color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.client-logo:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(240, 165, 0, 0.15);
}

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

@keyframes marquee-right {
  0% { transform: translateX(calc(-50% - 1rem)); }
  100% { transform: translateX(0); }
}

/* CTA Banner */
.cta-banner {
  background-color: var(--primary-blue);
  text-align: center;
  padding: 6rem 2rem;
}

.cta-banner h2 {
  color: #ffffff !important;
}

.cta-banner p {
  color: #ffffff !important;
}

/* Footer Redesigned */
.footer-redesigned {
  background-color: #F4F4F4; /* Light gray from reference */
  padding: 5rem 0 2rem;
  color: #333333;
}

.footer-redesigned .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr 1.2fr 1.2fr 1.2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-redesigned .footer-col-logo {
  margin-bottom: 1.5rem;
}

.footer-redesigned .footer-col-contact h4,
.footer-redesigned .footer-links h4 {
  color: #1A1A1A;
  margin-bottom: 1.5rem;
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-redesigned .footer-col-contact p {
  color: #555555;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-redesigned .social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.footer-redesigned .social-icons a {
  width: 35px;
  height: 35px;
  background-color: #333333;
  border-radius: 4px; /* Square with slightly rounded corners */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.footer-redesigned .social-icons a:hover {
  background-color: var(--accent-gold);
}

.footer-redesigned .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-redesigned .footer-links ul li {
  margin-bottom: 1rem;
  color: #555555;
  font-size: 0.9rem;
}

.footer-redesigned .footer-links a {
  color: #555555;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-redesigned .footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777777;
  font-size: 0.8rem;
  font-weight: 500;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #03a84e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 99;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f7f7f8;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 6%;
  position: sticky;
  top: 0;
  background: #f7f7f8;
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.mobile-brand-logo img {
  display: block;
}

.close-menu {
  position: static;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d5d9e0;
  color: #22252a;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.close-menu:hover {
  background: #f1f3f5;
  color: #000000;
  transform: rotate(90deg);
}

.mobile-nav-links {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 6% 3rem;
  width: 100%;
}

.mobile-nav-links > a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #22252a;
  text-decoration: none;
  padding: 1.15rem 0;
  border-bottom: 1px solid #e5e7eb;
  display: block;
  text-align: left;
  line-height: 1.2;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-links > a:hover {
  color: var(--accent-gold);
  padding-left: 0.4rem;
}

.mobile-nav-links > a.active {
  color: var(--accent-gold);
}

.mobile-dropdown {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #22252a;
  text-decoration: none;
  padding: 1.15rem 0;
  text-align: left;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mobile-dropdown-toggle:hover {
  color: var(--accent-gold);
}

.mobile-dropdown-toggle i {
  font-size: 0.9rem;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.4rem 0 1.2rem 1rem;
  background: transparent;
  border-left: 2px solid #d1d5db;
  margin-bottom: 0.8rem;
  width: 100%;
}

.mobile-dropdown-menu.active {
  display: flex;
}

.mobile-dropdown-menu a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  padding: 0.35rem 0;
  text-align: left;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-dropdown-menu a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.mobile-dropdown-menu a.active {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Footer Grid Dark */
.footer-grid-dark {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-grid, .projects-grid, .split-section {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-redesigned .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid-dark {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }

  /* Hide navigation links, phone number, and Enquire button on tablet and mobile */
  .nav-links,
  .nav-cta,
  .header-phone,
  .header-btn-pill {
    display: none !important;
  }
  
  .hamburger {
    display: block !important;
  }
}

@media (max-width: 768px) {
  /* One column per row in mobile footer */
  .footer-grid-dark {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }

  .nav-links,
  .nav-cta,
  .header-phone,
  .header-btn-pill {
    display: none !important;
  }
  
  .hamburger {
    display: block !important;
  }
  
  .timeline {
    flex-direction: column;
    gap: 2rem;
  }
  
  .timeline::before {
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
  }
  
  .timeline-step {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
  }
  
  .step-num {
    margin: 0;
  }
  
  .footer-redesigned .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-redesigned .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Image Focused Homepage Updates */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.parallax-section, 
.parallax-section h1, 
.parallax-section h2, 
.parallax-section h3, 
.parallax-section p, 
.parallax-section span {
    color: #ffffff !important;
}
.parallax-section .overlay-dark {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgb(0 0 0 / 35%);
    z-index: 1;
}
.parallax-section .container {
    position: relative;
    z-index: 2;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin-top: 3rem;
}
.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.masonry-item:hover img {
    transform: scale(1.05);
}
.masonry-item .masonry-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    color: var(--black);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}
.masonry-item:hover .masonry-overlay {
    transform: translateY(0);
    opacity: 1;
}
.masonry-item h3 {
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.item-large {
    grid-column: span 8;
    grid-row: span 2;
}
.item-tall {
    grid-column: span 4;
    grid-row: span 2;
}
.item-wide {
    grid-column: span 8;
    grid-row: span 1;
}
.item-small {
    grid-column: span 4;
    grid-row: span 1;
}

@media (max-width: 992px) {
    .item-large, .item-tall, .item-wide, .item-small {
        grid-column: span 6;
        grid-row: span 1;
    }
}
@media (max-width: 768px) {
    .item-large, .item-tall, .item-wide, .item-small {
        grid-column: span 12;
    }
}


/* Hero Slider Overrides */
.hero {
    background: none !important;
    overflow: hidden;
}
.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
}
.hero-slide.active {
    opacity: 1;
    animation: kenBurns 10s ease-out forwards;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(10 15 30 / 24%), rgb(10 15 30 / 70%));
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
}
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.product-btn { background-color: var(--primary-dark) !important; color: var(--white) !important; border: 1px solid var(--accent-gold) !important; text-transform: uppercase; }
.product-btn:hover { background-color: var(--accent-gold) !important; color: var(--primary-dark) !important; }

@media (max-width: 768px) {
  .contact-form {
    padding: 1rem !important;
  }
}

/* Ensure text over dark hero backgrounds is white */
[class^="hero"] h1, [class*=" hero"] h1,
.hero h1, .hero-subtext,
.hero .btn-outline, [class^="hero-"] .btn-outline {
  color: #FFFFFF !important;
}

/* Homepage Transparent Navbar */
.navbar .logo, 
.navbar .hamburger {
  color: #FFFFFF;
  transition: color 0.3s ease;
}
    justify-content: center;
}

/* Inner Page Solid Navbar */
.navbar.inner-nav {
    background-color: transparent !important;
    box-shadow: none !important;
}
.navbar.inner-nav .logo, 
.navbar.inner-nav .nav-links > li > a, 
.navbar.inner-nav .hamburger,
.navbar.inner-nav .nav-cta .header-phone {
    color: #FFFFFF !important;
}
.navbar.inner-nav .dropdown-menu a {
    color: #1A1A1A !important;
}

/* Scrolled Navbar */
.navbar.scrolled {
  background-color: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}
.navbar.scrolled .logo, 
.navbar.scrolled .nav-links > li > a, 
.navbar.scrolled .hamburger,
.navbar.scrolled .nav-cta .header-phone {
  color: #1A1A1A !important;
}
.navbar .dropdown-menu a {
  color: #1A1A1A !important;
}

/* Custom Header Font and Buttons */
.navbar .nav-links a {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.navbar .nav-cta .header-btn-dark {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #003355 !important;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}
.navbar .nav-cta .header-btn-dark:hover {
    background-color: #001f33 !important;
}

/* Header Phone and Enquire Button Pill */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    font-size: 0.85rem;
    font-weight: 400;
    text-decoration: none;
}
.header-btn-pill {
    background: #e5e5e5 !important;
    color: #0b131e !important;
    padding: 0.6rem 1.8rem !important;
    border-radius: 30px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    border: none !important;
}
.header-btn-pill:hover {
    background: #d4d4d4 !important;
    color: #000000 !important;
    transform: translateY(-1px);
}


/* Header Phone and Enquire Button Pill */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    font-size: 0.85rem;
    font-weight: 400;
    text-decoration: none;
}
.header-btn-pill {
    background: #e5e5e5;
    color: #0b131e !important;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.header-btn-pill:hover {
    background: #d4d4d4;
    color: #000000 !important;
    transform: translateY(-1px);
}

/* ALL INNER PAGES HERO REDESIGN */
.hero-about, .hero-interior, .hero-career, .hero-contact, .hero-product, .hero-projects {
    height: 70vh !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-start !important;
    background: linear-gradient(to right, #0b131e 30%, rgba(11, 19, 30, 0.7) 60%, rgba(11, 19, 30, 0.1) 100%), 
                url("images/Kap-slider2.jpeg") center/cover no-repeat !important;
    padding-bottom: 6rem !important;
    text-align: left !important;
    position: relative;
    border-bottom: 1px solid #1e293b;
}

.hero-about::before, .hero-interior::before, .hero-career::before, .hero-contact::before, .hero-product::before, .hero-projects::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-about .container, .hero-interior .container, .hero-career .container, .hero-contact .container, .hero-product .container, .hero-projects .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 0 5vw !important;
    display: flex;
    flex-direction: column;
}

.hero-about h1, .hero-interior h1, .hero-career h1, .hero-contact h1, .hero-product h1, .hero-projects h1 {
    font-size: clamp(3rem, 5vw, 4.5rem) !important;
    color: #ffffff !important;
    font-family: var(--font-heading) !important;
    font-weight: 400 !important;
    line-height: 1.1 !important;
    margin-bottom: 1rem !important;
    order: 2;
}

.hero-about .eyebrow, .hero-interior .eyebrow, .hero-career .eyebrow, .hero-contact .eyebrow, .hero-product .eyebrow, .hero-projects .eyebrow {
    color: #7b94b1 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    font-size: 0.75rem !important;
    order: 1;
    margin-top: 0 !important;
    margin-bottom: 2rem !important;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-about .eyebrow::before, .hero-interior .eyebrow::before, .hero-career .eyebrow::before, .hero-contact .eyebrow::before, .hero-product .eyebrow::before, .hero-projects .eyebrow::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #7b94b1;
}

.hero-about p:not(.eyebrow), .hero-interior p:not(.eyebrow), .hero-career p:not(.eyebrow), .hero-contact p:not(.eyebrow), .hero-product p:not(.eyebrow), .hero-projects p:not(.eyebrow) {
    color: #a0aab8 !important;
    font-size: 1rem !important;
    order: 3;
    line-height: 1.6;
}

/* Manufacturing Cross-Sell Section */
.cross-sell {
    background: #f1f5f9 !important;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 6rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.cross-sell h3 {
    color: #0b131e !important;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.cross-sell p {
    color: #475569 !important;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

