/* Import Premium 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 for Clean, Corporate Theme (Slate & Teal Accent) */
:root {
  --primary-base: #0f172a;       /* Slate 900 */
  --primary-light: #1e293b;      /* Slate 800 */
  --text-main: #334155;          /* Slate 700 */
  --text-muted: #64748b;         /* Slate 500 */
  
  --accent-color: #2563eb;       /* Royal Blue 600 */
  --accent-hover: #1d4ed8;       /* Royal Blue 700 */
  --accent-light: #eff6ff;       /* Royal Blue 50 */
  --accent-border: #dbeafe;      /* Royal Blue 100 */
  
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;       /* Slate 50 */
  --border-light: #e2e8f0;       /* Slate 200 */
  
  --success: #10b981;            /* Emerald 500 */
  --success-light: #ecfdf5;      /* Emerald 50 */
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 1px 2px 0 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.03), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 20px 25px -5px rgba(37, 99, 235, 0.04), 0 8px 10px -6px rgba(37, 99, 235, 0.04);
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-base);
  font-weight: 700;
  line-height: 1.25;
}

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

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

.section {
  padding: 100px 0;
}

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}

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

.btn-secondary {
  background-color: transparent;
  border-color: var(--border-light);
  color: var(--primary-base);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  border-color: var(--text-muted);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* Sticky Premium Navigation Header */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  background-color: var(--accent-color);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

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

.footer .logo-img {
  filter: brightness(0) invert(1);
  height: 50px;
  max-height: 50px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-base);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
}

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

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary-base);
  cursor: pointer;
  padding: 8px;
}

/* Hero Section Styling - Dark sleek theme inspired by screenshot */
.hero {
  position: relative;
  padding: 180px 0 120px 0;
  background-color: #0b0f19; /* Very dark premium background */
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* Top Pill Badge */
.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero-badge-top svg {
  color: #2563eb; /* royal blue */
}

/* Thin Elegant Hero Title */
.hero-title {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 300; /* Light thin weight */
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: #2563eb;
}

/* Thin Elegant Subtitle */
.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300; /* Light weight */
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 700px;
  line-height: 1.65;
  text-align: center;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-primary-blue {
  background-color: #2563eb;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary-blue:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-dark-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-dark-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

/* Bottom Pill Badge */
.hero-badge-bottom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(37, 99, 235, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: #93c5fd;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 48px;
}

.dot-blue {
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #2563eb;
}

/* Stats Section */
.stats-ribbon {
  background-color: var(--primary-base);
  color: #ffffff;
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

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

.stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Interactive Service Center styling */
.services-control {
  max-width: 900px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

/* Tabs */
.tabs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  width: 100%;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 18px;
  cursor: pointer;
  border-radius: 0;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--primary-base);
  background-color: var(--bg-secondary);
}

.tab-btn.active {
  color: #ffffff;
  background-color: var(--accent-color);
}

/* Live Search Container */
.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 48px 14px 48px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  color: var(--primary-base);
  transition: var(--transition-normal);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.clear-search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: var(--bg-secondary);
  color: var(--text-muted);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.clear-search-btn:hover {
  background-color: var(--border-light);
  color: var(--primary-base);
}

.search-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  display: none;
  margin-top: -8px;
}

/* Service Grid & Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.service-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: var(--transition-normal);
  display: flex;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent-color);
  transition: var(--transition-normal);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.service-card:hover::before {
  height: 100%;
}

.card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  cursor: pointer;
  text-align: left;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  transition: var(--transition-fast);
}

.card-link:hover {
  color: var(--accent-hover);
  gap: 4px;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius);
  border: 1px dashed var(--border-light);
}

.no-results p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Philosophy Section Styling */
.philosophy-card {
  background: linear-gradient(135deg, var(--primary-base) 0%, var(--primary-light) 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.philosophy-card::after {
  content: 'QAS';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-heading);
  font-size: 12rem;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.philosophy-tag {
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.philosophy-title {
  color: #ffffff;
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.philosophy-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.philosophy-content p::before {
  content: '“';
  font-size: 3rem;
  font-family: var(--font-heading);
  color: var(--accent-color);
  display: block;
  line-height: 0;
  margin-bottom: 24px;
}

/* Contact & Quote Form Section */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-intro {
  margin-bottom: 24px;
}

.contact-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

.locations-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: var(--transition-normal);
}

.location-card:hover {
  background-color: var(--bg-primary);
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.location-icon {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.location-details h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.location-details p {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.meta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

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

.meta-link svg {
  color: var(--accent-color);
}

/* Consultation Quote Form Styling */
.form-panel {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  border-radius: 20px;
  padding: 40px;
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-base);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  color: var(--primary-base);
  background-color: var(--bg-secondary);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.08);
}

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

/* Loading state spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
  margin-right: 4px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--primary-base);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  font-size: 0.92rem;
  font-weight: 500;
  max-width: 420px;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1100;
  border-left: 4px solid var(--accent-color);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast.success {
  border-left-color: var(--success);
  background-color: #0f172a;
}

/* Back to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.3);
}

/* Footer Section */
.footer {
  background-color: var(--primary-base);
  color: #ffffff;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

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

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

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

/* Media Queries for Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .quote-layout {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 70px 0;
  }
  
  .hero {
    padding: 120px 0 70px 0;
  }
  
  .hero-subtitle {
    margin: 0 auto 32px auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  
  .stat-item {
    border-right: none;
  }
  
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .philosophy-card {
    padding: 40px;
  }
  
  .quote-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    z-index: 1010;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-primary);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-links.open {
    transform: translateX(0);
  }
  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .header-nav .btn-primary {
    display: none; /* Hide on mobile navbar, let them click CTA in hero or menu */
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .form-panel {
    padding: 30px 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-control {
    margin-bottom: 24px;
  }

  .tabs-container {
    gap: 6px;
    padding-bottom: 12px;
  }
  
  .tab-btn {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}

/* Floating contact buttons - hidden on desktop */
.floating-contact {
  position: fixed;
  bottom: 100px; /* Positioned above the scroll-to-top button */
  right: 24px;   /* Positioned on the right side */
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.05);
}

.btn-whatsapp {
  background-color: transparent;
  box-shadow: none; /* Prevent square shadows */
}

.btn-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15)); /* Circular shadow */
}

.btn-call {
  background-color: #ffffff; /* White background */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-call img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  /* Icon remains original black, no filter needed */
}

.btn-call:hover {
  background-color: #f8fafc;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Display only on mobile and tablet */
@media (max-width: 768px) {
  .floating-contact {
    display: flex;
  }
}
