/* 
========================================================================
   CRAFTING CALLS LLC - PREMIUM STYLESHEET
   Brand Theme: Deep Blue + Orange Accents (Luxury Dark Corporate)
   Typography: Space Grotesk (Headings) + Plus Jakarta Sans (Body)
========================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------------------------------------------------------------------
   1. GLOBAL VARIABLES & VARIABLES SYSTEM
   --------------------------------------------------------------------- */
:root {
  --bg-primary: #050811;
  --bg-secondary: #0b0f1d;
  --bg-card: rgba(13, 20, 38, 0.45);
  --bg-card-hover: rgba(22, 33, 62, 0.7);
  
  --color-orange: #ff6f00;
  --color-orange-hover: #e65c00;
  --color-orange-glow: rgba(255, 111, 0, 0.45);
  
  --color-blue: #1e40af;
  --color-blue-light: #3b82f6;
  --color-blue-glow: rgba(59, 130, 246, 0.3);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-highlight: rgba(255, 255, 255, 0.12);
  --border-orange: rgba(255, 111, 0, 0.3);
  
  --font-headings: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-sm: 8px;
  
  --container-max: 1240px;
}

/* ---------------------------------------------------------------------
   2. BASE STYLES & RESET
   --------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(30, 64, 175, 0.15) 0%, rgba(5, 8, 17, 0) 50%),
              radial-gradient(circle at 100% 60%, rgba(255, 111, 0, 0.05) 0%, rgba(5, 8, 17, 0) 40%);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange);
}

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

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ---------------------------------------------------------------------
   3. BACKGROUND ANIMATED BLOBS
   --------------------------------------------------------------------- */
.bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  animation: drift 25s infinite alternate ease-in-out;
}

.blob-1 {
  width: 45vw;
  height: 45vw;
  background: var(--color-blue-light);
  top: 10%;
  left: -15%;
}

.blob-2 {
  width: 35vw;
  height: 35vw;
  background: var(--color-orange);
  top: 45%;
  right: -10%;
  animation-delay: -5s;
  animation-duration: 20s;
}

.blob-3 {
  width: 40vw;
  height: 40vw;
  background: var(--color-blue);
  bottom: 10%;
  left: 10%;
  animation-delay: -10s;
  animation-duration: 30s;
}

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(6%, 8%) scale(1.1); }
  100% { transform: translate(-4%, -5%) scale(0.95); }
}

/* ---------------------------------------------------------------------
   4. TYPOGRAPHY & GRADIENTS
   --------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 40%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.orange-text {
  color: var(--color-orange);
  background: linear-gradient(135deg, #ff9e40 0%, var(--color-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-headings);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-orange);
  background: rgba(255, 111, 0, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-orange);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ---------------------------------------------------------------------
   5. PREMIUM GLASSMORPHISM & CONTAINERS
   --------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

.glass-card-orange:hover {
  border-color: var(--border-orange);
  box-shadow: 0 12px 40px 0 rgba(255, 111, 0, 0.1);
}

/* ---------------------------------------------------------------------
   6. NAVIGATION HEADER (STICKY)
   --------------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
}

header.scrolled {
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
}

.logo img {
  height: 100%;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Nav overlay backdrop (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1040;
  backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; }

/* Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin-bottom: 6px;
  transition: var(--transition-fast);
}

.hamburger span:last-child {
  margin-bottom: 0;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------------------------------------------------------------------
   7. BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange) 0%, #ff8c3a 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px var(--color-orange-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--color-orange-glow);
  background: linear-gradient(135deg, #ff8c3a 0%, var(--color-orange) 100%);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--border-highlight);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-text {
  background: none;
  border: none;
  color: var(--color-orange);
  padding: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}

.btn-text:hover {
  color: #ffffff;
}

/* ---------------------------------------------------------------------
   8. HERO SECTION
   --------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

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

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Stats Counter Grid inside Hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
}

.stat-item h3 {
  font-size: 32px;
  color: var(--color-orange);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Visual Asset Panel */
.hero-visual {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--border-subtle);
}

.hero-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(t, rgba(5,8,17,0) 60%, rgba(5,8,17,0.8) 100%);
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(11, 15, 29, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-highlight);
  border-left: 4px solid var(--color-orange);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-badge-icon {
  background: rgba(255, 111, 0, 0.15);
  color: var(--color-orange);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-badge h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.hero-badge p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------------------------------------------------------------------
   9. SERVICES OVERVIEW GRID
   --------------------------------------------------------------------- */
.services-section {
  padding: 100px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 32px;
  color: var(--color-orange);
  margin-bottom: 24px;
  display: inline-flex;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* ---------------------------------------------------------------------
   10. WHY CHOOSE US SECTION
   --------------------------------------------------------------------- */
.why-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.why-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-feature-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-fast);
}

.why-feature-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-highlight);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(30, 64, 175, 0.15);
  color: var(--color-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.why-feature-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.why-feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------------------------------------------------------------------
   11. INDUSTRIES EXPERTISE
   --------------------------------------------------------------------- */
.industries-section {
  padding: 100px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.industry-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--color-orange);
  transform: translateY(-5px);
}

.industry-icon {
  font-size: 36px;
  color: var(--color-orange);
  margin-bottom: 20px;
}

.industry-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* ---------------------------------------------------------------------
   12. APPOINTMENT BOOKING SECTION
   --------------------------------------------------------------------- */
.booking-section {
  padding: 100px 0;
  position: relative;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-headings);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(5, 8, 17, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #ffffff;
  font-size: 15px;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 10px rgba(255, 111, 0, 0.2);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

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

.file-upload-wrapper {
  border: 2px dashed var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  background: rgba(5, 8, 17, 0.3);
  transition: var(--transition-fast);
}

.file-upload-wrapper:hover, .file-upload-wrapper.dragover {
  border-color: var(--color-orange);
  background: rgba(255, 111, 0, 0.05);
}

.file-upload-icon {
  font-size: 28px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.file-upload-text span {
  color: var(--color-orange);
  font-weight: 600;
}

.file-upload-input {
  display: none;
}

/* ---------------------------------------------------------------------
   13. TESTIMONIALS & FAQ
   --------------------------------------------------------------------- */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 36px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-highlight);
  background: var(--bg-primary);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 12px;
  color: var(--text-dim);
}

.stars {
  color: #f59e0b;
  font-size: 13px;
  margin-bottom: 16px;
}

/* FAQ Accordion */
.faq-section {
  padding: 100px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  gap: 20px;
}

.faq-trigger h3 {
  font-size: 18px;
  font-family: var(--font-headings);
  font-weight: 600;
  transition: var(--transition-fast);
}

.faq-trigger:hover h3 {
  color: var(--color-orange);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #ffffff;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
  color: var(--text-muted);
  font-size: 15px;
  padding-top: 16px;
}

/* ---------------------------------------------------------------------
   14. CAREERS & DYNAMIC JOBS
   --------------------------------------------------------------------- */
.careers-hero {
  padding: 160px 0 100px;
  text-align: center;
}

.careers-culture {
  padding: 100px 0;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.jobs-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
  margin-bottom: 20px;
}

.job-card:last-child {
  margin-bottom: 0;
}

.job-details h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------------------------------------------------------------------
   15. OFFICE & MAPS (CONTACT PAGE)
   --------------------------------------------------------------------- */
.contact-hero {
  padding: 160px 0 80px;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.channel-card {
  text-align: center;
  padding: 40px 24px;
}

.channel-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 111, 0, 0.1);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 24px;
  border: 1px solid var(--border-orange);
}

.channel-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.channel-card p {
  font-size: 15px;
  color: var(--text-muted);
}

.office-map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 100px;
}

.office-info-block h3 {
  font-size: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.office-info-block h3 i {
  color: var(--color-orange);
}

.office-info-block p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.map-wrapper {
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(0.9) contrast(1.2);
}

/* ---------------------------------------------------------------------
   16. FLOATING WHATSAPP & MODALS
   --------------------------------------------------------------------- */
.whatsapp-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
}

.whatsapp-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
}

.whatsapp-bubble:hover {
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-popup {
  background: var(--bg-secondary);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  width: 320px;
  max-width: calc(100vw - 24px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  overflow: hidden;
  display: none;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: bottom right;
  position: fixed;
  bottom: 104px;
  right: 32px;
  z-index: 9998;
}

.whatsapp-header {
  background: #075e54;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.whatsapp-header-info h4 {
  font-size: 14px;
}

.whatsapp-header-info p {
  font-size: 11px;
  color: #d1fae5;
}

.whatsapp-body {
  padding: 20px;
  font-size: 13px;
  background: var(--bg-primary);
  position: relative;
}

.whatsapp-msg {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 12px;
  border-radius: 12px;
  line-height: 1.5;
  color: var(--text-main);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 16px;
  cursor: pointer;
}

/* Success submission modal */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.success-card {
  width: 90%;
  max-width: 440px;
  text-align: center;
  padding: 48px 32px;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-modal.active .success-card {
  transform: scale(1);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 111, 0, 0.1);
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

.success-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.success-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}

/* ---------------------------------------------------------------------
   17. NEWSLETTER & FOOTER
   --------------------------------------------------------------------- */
.newsletter-section {
  padding: 80px 0;
  background: radial-gradient(circle at 100% 100%, rgba(255, 111, 0, 0.08) 0%, rgba(5,8,17,0) 40%);
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex-grow: 1;
}

footer {
  background: #02040a;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  height: 48px;
}

.footer-logo img {
  height: 100%;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-headings);
  color: #ffffff;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-contact i {
  color: var(--color-orange);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* ---------------------------------------------------------------------
   18. SERVICE DETAILS DESIGN
   --------------------------------------------------------------------- */
.service-details-hero {
  padding: 160px 0 80px;
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 100px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-icon {
  color: var(--color-orange);
  font-size: 18px;
  margin-top: 3px;
}

.benefit-text h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Step Process Timeline */
.process-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--border-subtle);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--border-highlight);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 20px;
  transition: var(--transition-smooth);
}

.process-step:hover .step-number {
  border-color: var(--color-orange);
  background: var(--color-orange);
  box-shadow: 0 0 20px var(--color-orange-glow);
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------------------------------------------------------------------
   19. ANIMATION CLASSES & KEYFRAMES
   --------------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.appear {
  opacity: 1;
  transform: translateY(0);
}

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

/* ---------------------------------------------------------------------
   20. RESPONSIVE MEDIA QUERIES
   --------------------------------------------------------------------- */

/* ====================================================================
   RESPONSIVE BREAKPOINTS — COMPLETE REWRITE
   Mobile-first: 1024px (tablet) → 768px (mobile) → 480px (small)
   ==================================================================== */

/* ------------------------------------------------------------------
   TABLET  ≤ 1024px
   ------------------------------------------------------------------ */
@media (max-width: 1024px) {

  /* --- NAV: hide desktop menu, show hamburger --- */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 340px;
    height: 100vh;
    background: rgba(5, 8, 17, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    padding: 48px 40px;
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-menu.active { right: 0; }
  .hamburger { display: block; }
  .header-actions .btn:not(.hamburger) { display: none; }

  /* --- HERO --- */
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-btns { justify-content: center; flex-wrap: wrap; }
  .hero-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-img-wrapper img { width: 100%; height: auto; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
  }

  /* --- SECTION LAYOUT --- */
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .office-map-container { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }

  /* --- INLINE GRID OVERRIDES (about page, etc.) --- */
  [style*="grid-template-columns:1fr 1.2fr"],
  [style*="grid-template-columns: 1fr 1.2fr"],
  .founder-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: left !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ------------------------------------------------------------------
   MOBILE  ≤ 768px
   ------------------------------------------------------------------ */
@media (max-width: 768px) {

  /* --- CONTAINER --- */
  .container { padding-left: 16px !important; padding-right: 16px !important; }

  /* --- HEADER --- */
  header { padding: 14px 0; }
  .logo { height: 40px; }

  /* --- HERO: hide image to avoid content clash --- */
  .hero {
    padding-top: 100px;
    padding-bottom: 48px;
  }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(26px, 8vw, 42px) !important; line-height: 1.2; }
  .hero-desc { font-size: 15px !important; }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-btns .btn { text-align: center; width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item h3 { font-size: 26px; }

  /* --- SECTIONS --- */
  section { padding: 60px 0 !important; }
  .section-title { font-size: clamp(22px, 6vw, 32px) !important; }
  .section-desc { font-size: 15px !important; }

  /* --- NAV OVERLAY --- */
  .nav-menu {
    width: 80%;
    max-width: 300px;
    gap: 28px;
    padding: 80px 32px 48px;
  }
  .nav-link { font-size: 17px; }

  /* --- GRIDS → SINGLE COLUMN --- */
  .services-grid { grid-template-columns: 1fr !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .why-grid { grid-template-columns: 1fr !important; }
  .booking-grid { grid-template-columns: 1fr !important; }
  .contact-channels { grid-template-columns: 1fr !important; }
  .culture-grid { grid-template-columns: 1fr !important; }
  .service-benefits-grid { grid-template-columns: 1fr !important; }
  .why-feature-list { grid-template-columns: 1fr !important; }
  .process-timeline { grid-template-columns: 1fr !important; }

  /* Inline grid overrides */
  [style*="grid-template-columns:1fr 1.2fr"],
  [style*="grid-template-columns: 1fr 1.2fr"],
  .founder-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Process timeline horizontal line */
  .process-timeline::before { display: none; }
  .process-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }
  .step-number { margin: 0; flex-shrink: 0; }

  /* --- CARDS --- */
  .glass-card { padding: 24px !important; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .job-card .btn { width: 100%; text-align: center; }

  /* --- FORMS --- */
  .form-control { width: 100% !important; box-sizing: border-box !important; }
  .newsletter-card { grid-template-columns: 1fr !important; text-align: center !important; }
  .newsletter-form { flex-direction: column !important; }
  .newsletter-form .btn { width: 100%; }

  /* --- TYPOGRAPHY --- */
  h1 { font-size: clamp(24px, 7vw, 40px) !important; }
  h2 { font-size: clamp(20px, 6vw, 30px) !important; }
  h3 { font-size: clamp(18px, 5vw, 24px) !important; }

  /* --- WHATSAPP WIDGET --- */
  .whatsapp-widget { bottom: 16px; right: 16px; }
  .whatsapp-bubble { width: 52px; height: 52px; font-size: 24px; }
  .whatsapp-popup {
    width: calc(100vw - 32px) !important;
    max-width: 320px !important;
    right: 16px !important;
    bottom: 88px !important;
  }

  /* --- MISC --- */
  img, svg { max-width: 100% !important; height: auto !important; }
  table { display: block !important; overflow-x: auto !important; }
  .office-map-container { grid-template-columns: 1fr !important; }
}

/* ------------------------------------------------------------------
   SMALL MOBILE  ≤ 480px
   ------------------------------------------------------------------ */
@media (max-width: 480px) {

  .container { padding-left: 12px !important; padding-right: 12px !important; }

  .hero-stats { grid-template-columns: 1fr !important; }
  .stat-item { text-align: center; }

  .footer-grid { grid-template-columns: 1fr !important; }
  .culture-grid { grid-template-columns: 1fr !important; }

  .whatsapp-popup {
    width: calc(100vw - 24px) !important;
    left: 12px;
    right: 12px;
  }

  .success-card { padding: 32px 20px !important; }
  .glass-card { padding: 20px !important; }

  .btn { padding: 12px 20px !important; font-size: 13px !important; }

  .section-tag { font-size: 11px; padding: 5px 12px; }
}

/* ====================================================================
   FINAL RESPONSIVE FIX PATCH — Added by ChatGPT
   Fixes: mobile header height, WhatsApp popup alignment, grid overflow,
   industries section columns, inline grid responsiveness, unwanted gaps.
   ==================================================================== */

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

* {
  min-width: 0;
}

.container,
section,
header,
footer,
.hero,
.services-section,
.industries-section,
.booking-section,
.testimonials-section,
.faq-section {
  max-width: 100%;
}

/* Header compact + stable on all screens */
header {
  padding: 12px 0 !important;
}

header.scrolled {
  padding: 8px 0 !important;
}

.header-container {
  min-height: 56px;
  gap: 14px;
}

.logo {
  height: 44px !important;
  max-width: 190px;
  flex-shrink: 0;
}

.logo img {
  max-height: 44px !important;
  width: auto !important;
}

.header-actions {
  flex-shrink: 0;
}

/* Prevent large buttons from breaking tablet header */
@media (max-width: 1180px) {
  .nav-menu { gap: 20px; }
  .header-actions { gap: 10px; }
  .header-actions .btn { padding: 11px 16px; font-size: 13px; }
}

/* Flexible grids instead of fixed columns */
.industries-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
}

.services-grid,
.testimonials-grid,
.culture-grid,
.why-feature-list,
.process-timeline,
.footer-grid {
  width: 100%;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
}

.culture-grid,
.why-feature-list,
.process-timeline {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)) !important;
}

/* Generic inline grid safety for all pages */
[style*="display:grid"],
[style*="display: grid"] {
  max-width: 100%;
}

img, iframe, video, svg {
  max-width: 100% !important;
}

/* Better section spacing on smaller screens */
@media (max-width: 1024px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .nav-menu {
    top: 0 !important;
    right: -100% !important;
    height: 100dvh !important;
    width: min(82vw, 340px) !important;
    padding: 92px 28px 38px !important;
    justify-content: flex-start !important;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0 !important;
  }

  .hamburger {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 8px !important;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
  }

  .header-actions .btn:not(.hamburger) {
    display: none !important;
  }

  .hero {
    padding-top: 105px !important;
  }

  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  header {
    padding: 8px 0 !important;
  }

  header.scrolled {
    padding: 6px 0 !important;
  }

  .header-container {
    min-height: 50px !important;
  }

  .logo {
    height: 36px !important;
    max-width: 160px !important;
  }

  .logo img {
    max-height: 36px !important;
  }

  .hamburger {
    width: 40px !important;
    height: 40px !important;
  }

  .hamburger span {
    width: 22px !important;
    margin-bottom: 5px !important;
  }

  .hero {
    padding-top: 88px !important;
  }

  section,
  .industries-section,
  .services-section,
  .booking-section,
  .testimonials-section,
  .faq-section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }

  .section-desc {
    margin-bottom: 30px !important;
  }

  .hero-grid,
  .why-grid,
  .booking-grid,
  .office-map-container,
  .service-benefits-grid,
  .contact-channels,
  .footer-grid,
  .services-grid,
  .testimonials-grid,
  .culture-grid,
  .why-feature-list,
  .process-timeline,
  .industries-grid,
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .industry-card,
  .service-card,
  .glass-card {
    width: 100% !important;
  }

  .industry-card {
    padding: 24px 18px !important;
  }

  .hero-btns,
  .newsletter-form,
  form .form-row {
    width: 100% !important;
  }

  .btn,
  button,
  input,
  textarea,
  select {
    max-width: 100%;
  }

  /* WhatsApp fixed and centered on mobile */
  .whatsapp-widget {
    right: 14px !important;
    bottom: 14px !important;
  }

  .whatsapp-popup {
    position: fixed !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 82px !important;
    width: auto !important;
    max-width: none !important;
    transform-origin: bottom center !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .logo {
    height: 32px !important;
    max-width: 145px !important;
  }

  .logo img {
    max-height: 32px !important;
  }

  .hero {
    padding-top: 80px !important;
  }

  .hero-title,
  h1 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .whatsapp-widget {
    right: 12px !important;
    bottom: 12px !important;
  }

  .whatsapp-bubble {
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
  }

  .whatsapp-popup {
    left: 10px !important;
    right: 10px !important;
    bottom: 72px !important;
    width: auto !important;
  }
}

/* =========================================================
   MOBILE MENU BLUR FIX
   Removes the blur/dim effect when hamburger menu is opened.
   ========================================================= */
.nav-overlay,
.nav-overlay.active {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 1024px) {
  .nav-menu,
  .nav-menu.active {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #050811 !important;
  }

  body,
  body *:not(.nav-menu):not(.nav-menu *):not(.hamburger):not(.hamburger *) {
    filter: none !important;
    -webkit-filter: none !important;
  }
}

/* =========================================================
   FINAL MOBILE MENU FUNCTION FIX
   Ensures hamburger is clickable and menu opens without blur.
   ========================================================= */
@media (max-width: 1024px) {
  header {
    z-index: 99999 !important;
  }

  .header-container,
  .header-actions,
  .hamburger {
    position: relative !important;
    z-index: 100003 !important;
  }

  .hamburger {
    display: inline-flex !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
  }

  .hamburger span {
    pointer-events: none !important;
  }

  .nav-overlay,
  .nav-overlay.active {
    display: none !important;
    pointer-events: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-menu {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(82vw, 340px) !important;
    height: 100dvh !important;
    padding: 92px 28px 38px !important;
    background: #050811 !important;
    transform: translateX(110%) !important;
    transition: transform 0.3s ease !important;
    z-index: 100002 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow-y: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-menu.active {
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }
}


/* Relevant images inside service and industry cards */
.card-photo {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.industry-card .card-photo {
  height: 135px;
}
@media (max-width: 768px) {
  .card-photo { height: 170px; }
  .industry-card .card-photo { height: 160px; }
}
@media (max-width: 480px) {
  .card-photo, .industry-card .card-photo { height: 145px; }
}
