/* ==========================================================================
   WHITE HANDS GROUP - Clean Premium White Theme Stylesheet
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  /* Color Palette (White Theme) */
  --primary: #0F172A;        /* Slate 900 (Primary Dark Text / Headings) */
  --primary-light: #334155;  /* Slate 700 (Body Text / Secondary) */
  --secondary: #F8FAFC;      /* Slate 50 (Alternate Section / Card Background) */
  --accent: #FF3B00;         /* Brand Orange (Action / CTA) */
  --accent-hover: #D63000;   /* Darker Orange for Hover */
  --bg-light: #F1F5F9;       /* Slate 100 */
  --bg-white: #FFFFFF;       /* Pure White Background */
  --border-color: #E2E8F0;   /* Slate 200 (Clean Soft Borders) */
  
  --text-dark: #0F172A;
  --text-muted: #64748B;     /* Slate 500 */
  --text-light: #F8FAFC;     /* Slate 50 */
  --whatsapp: #25D366;       /* WhatsApp Green */
  --whatsapp-hover: #128C7E;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-accent: 0 8px 20px -6px rgba(240, 90, 40, 0.25);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-white);
  color: var(--primary-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Common Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-border {
  border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .section-padding {
    padding: 3.5rem 0;
  }
}

/* Section Header Utility */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header .sub {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

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

/* ==========================================================================
   Header & Navigation (Light / White Glassmorphism)
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

header.scrolled {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  padding: 0.35rem 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-normal);
}

header.scrolled .nav-wrapper {
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 45px;
  height: 45px;
}

.logo-text {
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.logo-text span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1px;
}

/* Nav Menu Desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--primary-light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-normal);
}

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

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

.nav-cta {
  background-color: var(--accent);
  color: var(--bg-white) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  box-shadow: var(--shadow-accent);
}

.nav-cta:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

.nav-download-btn {
  border: 1px solid var(--border-color);
  color: var(--primary-light) !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: var(--radius-md);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bg-white);
  transition: all var(--transition-fast);
}

.nav-download-btn:hover {
  background: var(--bg-light);
  border-color: var(--text-muted);
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.nav-download-btn::after {
  display: none !important;
}

/* Hamburger Trigger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  position: absolute;
  transition: var(--transition-normal);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
    z-index: 1100;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border-left: 1px solid var(--border-color);
    transition: var(--transition-slow);
    z-index: 1050;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.15rem;
    width: 100%;
    text-align: center;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background-color: var(--primary);
  color: var(--bg-white);
}

.btn-dark:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

/* ==========================================================================
   Home Page Specific Sections (White Theme)
   ========================================================================== */
/* Hero Section */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(240, 90, 40, 0.05) 0%, transparent 50%), var(--bg-white);
  color: var(--primary-light);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  color: var(--primary);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--primary-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

/* Hero visuals */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-box {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--bg-white);
  position: relative;
}

/* Floating Stats overlay in hero */
.hero-stat-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-stat-badge .icon {
  background: rgba(240, 90, 40, 0.1);
  color: var(--accent);
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-badge .text h4 {
  font-size: 1.25rem;
  color: var(--primary);
}

.hero-stat-badge .text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .hero-content p {
    margin: 0 auto 2.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stat-badge {
    left: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-stat-badge {
    display: none;
  }
}

/* Stats Counter Section */
.stats {
  background: var(--bg-white);
  position: relative;
  z-index: 10;
  margin-top: -3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 3rem 2rem;
}

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

.stat-item {
  text-align: center;
  border-right: 1px solid var(--border-color);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 576px) {
  .stats {
    margin-top: 0;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stat-item {
    border-right: none;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* Industries Section Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.industry-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(240, 90, 40, 0.3);
}

.industry-icon {
  background-color: rgba(240, 90, 40, 0.08);
  color: var(--accent);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.industry-card:hover .industry-icon {
  background-color: var(--accent);
  color: var(--bg-white);
}

.industry-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.industry-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.industry-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.industry-link svg {
  transition: var(--transition-fast);
}

.industry-card:hover .industry-link svg {
  transform: translateX(5px);
}

/* CTA Section */
.cta-banner {
  background: radial-gradient(circle at 10% 90%, rgba(240, 90, 40, 0.05) 0%, transparent 60%), var(--secondary);
  color: var(--primary);
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 4.5rem 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--primary-light);
  margin-bottom: 2rem;
}

/* ==========================================================================
   About Us Page Specific (White Theme)
   ========================================================================== */
.about-hero {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--bg-white) 100%);
  padding: 8rem 0 4rem;
  color: var(--primary-light);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.about-hero h1 {
  color: var(--primary);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.split-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.split-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.split-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
}

.split-content p {
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .split-image {
    order: 2;
  }
}

/* Core Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-normal);
  border-top: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent);
}

.value-icon {
  background: rgba(240, 90, 40, 0.08);
  color: var(--accent);
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
}

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Dotted Map Section Styles */
.map-section {
  text-align: center;
}

.map-container {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-top: 2rem;
}

.dotted-map,
.global-map-img {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
  display: block;
}

.map-dot {
  fill: #CBD5E1; /* Slate 300 representing basic geography */
  transition: fill var(--transition-fast);
}

.map-dot.highlight {
  fill: #94A3B8; /* Slate 400 for outline clarity */
}

/* Target locations on the map */
.map-hub-pin {
  cursor: pointer;
}

.map-hub-circle {
  fill: var(--accent);
  stroke: var(--bg-white);
  stroke-width: 1.5;
  transition: var(--transition-fast);
}

.map-hub-pulse {
  fill: var(--accent);
  opacity: 0.25;
  transform-origin: center;
  animation: pulse-ring 2.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.map-hub-pin:hover .map-hub-circle {
  fill: var(--primary);
  stroke: var(--accent);
  r: 8;
}

.countries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.country-tag {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.country-tag span {
  font-size: 1.2rem;
}

/* ==========================================================================
   Services Page Specific (White Theme)
   ========================================================================== */
.services-tabs-container {
  margin-top: 3rem;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--primary-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--accent);
  color: var(--bg-white);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.services-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.services-list-items li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
  font-size: 1.05rem;
}

.services-list-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 992px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Areas of Expertise (Roles grid) */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.role-category-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.role-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-image-wrapper {
  margin: -2rem -2rem 1.5rem -2rem;
  height: 180px;
  overflow: hidden;
}

.sector-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.role-category-card:hover .sector-card-img {
  transform: scale(1.05);
}

.role-category-card h4 {
  font-size: 1.25rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.role-category-card h4 svg {
  color: var(--accent);
}

.roles-sub-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.roles-sub-list li {
  font-size: 0.9rem;
  color: var(--primary-light);
  position: relative;
  padding-left: 1rem;
}

.roles-sub-list li::before {
  content: '•';
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ==========================================================================
   Gallery Page Specific (White Theme)
   ========================================================================== */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--primary-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 40%, rgba(15, 23, 42, 0.95));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-normal);
}

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

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

.gallery-title {
  color: var(--bg-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gallery-category {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lightbox Overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--bg-white);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--bg-white);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

.lightbox-caption {
  color: var(--bg-white);
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ==========================================================================
   Contact Us Page Specific (White Theme)
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
}

.contact-card h4 svg {
  color: var(--accent);
}

.contact-card p {
  color: var(--primary-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  margin-top: 0.75rem;
}

.contact-card a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Form Styles */
.contact-form-panel {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--secondary);
  color: var(--primary);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  display: none;
}

.form-message.success {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-hover);
  border: 1px solid var(--whatsapp);
  display: block;
}

.form-message.error {
  background-color: rgba(220, 38, 38, 0.1);
  color: #B91C1C;
  border: 1px solid #EF4444;
  display: block;
}

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

@media (max-width: 576px) {
  .contact-form-panel {
    padding: 2rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   Footer (Clean Light / White Layout)
   ========================================================================== */
footer {
  background-color: var(--secondary);
  color: var(--primary-light);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

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

.footer-brand .logo-link {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  background-color: var(--bg-white);
  color: var(--primary-light);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--accent);
  color: var(--bg-white);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.footer-col h4 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

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

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Mobile Floating Action Bar (WhatsApp & Call)
   ========================================================================== */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  display: flex;
  z-index: 999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
  border-top: 1px solid var(--border-color);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

/* Visible class added when mobile view triggers and user scrolls */
.mobile-action-bar.visible {
  transform: translateY(0);
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg-white);
  text-align: center;
}

.mobile-action-btn.whatsapp {
  background-color: var(--whatsapp);
}

.mobile-action-btn.whatsapp:hover {
  background-color: var(--whatsapp-hover);
}

.mobile-action-btn.call {
  background-color: var(--accent);
}

.mobile-action-btn.call:hover {
  background-color: var(--accent-hover);
}

/* Adjust padding on body when action bar is visible so footer doesn't get blocked */
@media (max-width: 768px) {
  body {
    padding-bottom: 60px; /* Space for the floating bar */
  }
  
  /* Show floating action bar */
  .mobile-action-bar {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-action-bar {
    display: none !important;
  }
}

/* ==========================================================================
   WhatsApp Floating Widget (Desktop & Tablet)
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.whatsapp-bubble {
  background-color: var(--whatsapp);
  color: var(--bg-white);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
}

.whatsapp-bubble:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.1);
}

.whatsapp-bubble::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  border: 1px solid var(--whatsapp);
  animation: pulse-ring 2s infinite;
  opacity: 0.6;
}

.whatsapp-popup {
  width: 320px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: none;
  flex-direction: column;
  animation: slideUp 0.3s ease;
  transform-origin: bottom right;
}

@keyframes slideUp {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.whatsapp-popup.open {
  display: flex;
}

.whatsapp-popup-header {
  background-color: var(--whatsapp-hover);
  color: var(--bg-white);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.whatsapp-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: var(--whatsapp);
  border: 2px solid var(--whatsapp-hover);
  border-radius: var(--radius-full);
}

.whatsapp-popup-header-info h5 {
  color: var(--bg-white);
  font-size: 1rem;
  margin: 0;
}

.whatsapp-popup-header-info p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.whatsapp-popup-body {
  padding: 1.5rem;
  background-color: #F8FAFC; /* WhatsApp White themed background */
  font-size: 0.9rem;
}

.whatsapp-msg {
  background-color: var(--bg-white);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  max-width: 85%;
  line-height: 1.4;
  color: var(--primary-light);
}

.whatsapp-popup-footer {
  padding: 1rem;
  background-color: var(--secondary);
  border-top: 1px solid var(--border-color);
  display: flex;
}

.whatsapp-btn {
  background-color: var(--whatsapp);
  color: var(--bg-white);
  border: none;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.whatsapp-btn:hover {
  background-color: var(--whatsapp-hover);
}

/* Hide desktop widget on mobile action bar trigger */
@media (max-width: 768px) {
  .whatsapp-widget {
    display: none !important;
  }
}

/* ==========================================================================
   Job Openings Styles
   ========================================================================== */
.jobs-layout-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 3rem;
  align-items: start;
}

.jobs-filter-panel {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.jobs-filter-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.jobs-filter-group {
  margin-bottom: 1.25rem;
}

.jobs-filter-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.jobs-list-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.job-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(240, 90, 40, 0.3);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.job-card-title {
  font-size: 1.35rem;
  color: var(--primary);
}

.job-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.job-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.job-badge {
  background-color: var(--secondary);
  color: var(--accent);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-card-body p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.job-card-reqs {
  background: var(--secondary);
  border-left: 3px solid var(--accent);
  padding: 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.job-card-reqs strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.25rem;
}

.job-card-footer {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

@media (max-width: 768px) {
  .jobs-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .jobs-filter-panel {
    position: static;
  }
}

/* ==========================================================================
   Admin Portal Styles
   ========================================================================== */
.admin-login-card {
  max-width: 420px;
  margin: 5rem auto;
  background: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  text-align: center;
}

.admin-login-card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.admin-login-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.admin-dashboard-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}

.admin-header-row h2 {
  font-size: 2rem;
}

.admin-status-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  display: none;
}

.admin-status-message.success {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-hover);
  border: 1px solid var(--whatsapp);
  display: block;
}

.admin-status-message.error {
  background-color: rgba(220, 38, 38, 0.1);
  color: #B91C1C;
  border: 1px solid #EF4444;
  display: block;
}

/* Admin vacancies list preview */
.admin-vacancies-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-vacancy-item {
  background: var(--secondary);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-vacancy-item-info h5 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.admin-vacancy-item-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .admin-dashboard-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

