/* ==========================================
   IDENTITEK Global Stylesheet
   ========================================== */

:root {
  --bg-dark: #070d19;
  --bg-card: rgba(48, 48, 48, 0.4);
  --border-color: rgba(95, 88, 79, 0.2);
  --accent-color: #973C20;
  --accent-hover: #7a301a;
  --text-main: #f9f9f9;
  --text-muted: #B7B7B7;
  --text-dimmed: #909090;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- Header & Navigation Bar --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
  background: url('../assets/images/header-bg.jpg') center/cover no-repeat, rgba(5, 11, 24, 0.85);
  background-blend-mode: overlay;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Cardo', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-dimmed);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav > a, .main-link {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 4px;
  transition: color 0.2s ease;
}

.main-nav > a:hover, .main-link:hover, .main-nav > a.active, .main-link.active {
  color: var(--text-main);
}

/* Dropdown Sub-menus & Independent Mobile Arrow */
.dropdown {
  position: relative;
}

.dropdown-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.dropdown-arrow-btn:hover {
  color: var(--text-main);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0d1b3a;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  min-width: 220px;
  padding: 8px 0;
  display: none;
  z-index: 1100;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
  background: rgba(151, 60, 32, 0.15);
  color: var(--text-main);
}

/* --- Action Buttons (Store & Download App) --- */
.header-action-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(30, 35, 45, 0.6);
  border: 1px solid;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-header-outline svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Store Button Style (Blue Theme) */
.btn-store {
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.35);
}

.btn-store:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: #3b82f6;
}

/* Download App Button Style (Gold/Yellow Theme) */
.btn-download-app {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.35);
}

.btn-download-app:hover {
  background: rgba(251, 191, 36, 0.12);
  border-color: #fbbf24;
}

/* Hidden by default on desktop */
.mobile-nav-links {
  display: none; 
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: url('../assets/images/head-wallpaper.jpg') no-repeat center center / cover;
  padding: 120px 20px 100px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 25, 0.4);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

/* --- Services / Page Hero Banner --- */
.services-hero {
  background: linear-gradient(135deg, #0a1a3a 0%, #0d2b5a 30%, #0a1f4a 60%, #0d1b3a 100%);
  padding: 64px 24px 48px;
  text-align: center;
  border-bottom: 1px solid rgba(151, 60, 32, 0.3);
  position: relative;
  overflow: hidden;
}

.services-hero-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.services-hero h1 {
  font-family: 'Cardo', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-main);
  position: relative;
  z-index: 1;
}

.services-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.services-desc {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 0.9rem;
  color: var(--text-dimmed);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* --- Main Layout Container --- */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px;
  flex: 1;
}

.intro {
  text-align: center;
  margin-bottom: 56px;
}

.intro h2 {
  font-family: 'Cardo', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Main Section Layouts --- */
.section {
  position: relative;
  padding: 24px 24px;
  margin-bottom: 16px;
  scroll-margin-top: 100px;
}

.section-bg-base {
  background-color: var(--bg-dark);
}

.section-bg-base2 {
  background-color: rgba(12, 20, 35, 0.6);
}

.section-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: var(--border-color);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(95, 88, 79, 0.25);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(151, 60, 32, 0.15);
  border: 1px solid rgba(151, 60, 32, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #ff8a65;
  margin-bottom: 16px;
}

.section-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(151, 60, 32, 0.1);
  border: 1px solid rgba(151, 60, 32, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  flex-shrink: 0;
}

.section-icon svg {
  width: 24px;
  height: 24px;
}

.section-title h2, .section-header h2 {
  font-family: 'Cardo', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-main);
}

.section-title p, .section-header p {
  font-size: 0.85rem;
  color: var(--text-dimmed);
}

/* About & Contact Grids */
.about-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-left h2 {
  font-family: 'Cardo', serif;
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-left p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.checklist {
  list-style: none;
  margin-bottom: 24px;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.about-location {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dimmed);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.about-location svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-color);
}

.about-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 12px;
}

.value-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.value-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-dimmed);
}

/* Content Blocks */
.content-block {
  background: var(--bg-card);
  border: 1px solid rgba(95, 88, 79, 0.15);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.content-block h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.content-block h3::before {
  content: '';
  width: 4px;
  height: 16px;
  background: var(--accent-color);
  border-radius: 2px;
}

.content-block p, .content-block li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.content-block ul {
  padding-left: 20px;
  margin-top: 8px;
}

.content-block li {
  margin-bottom: 7px;
}

.content-block li::marker {
  color: var(--accent-color);
}

/* --- Team Cards & Initials Avatar Styling --- */
.team-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
  gap: 16px; 
  margin-top: 16px; 
}

.team-card { 
  background: rgba(48,48,48,0.3); 
  border: 1px solid rgba(95,88,79,0.15); 
  border-radius: 10px; 
  padding: 20px; 
  text-align: center; 
}

.team-avatar { 
  width: 60px; 
  height: 60px; 
  border-radius: 50%; 
  background: linear-gradient(135deg, #973C20, #6D533C); 
  margin: 0 auto 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 700; 
  font-size: 1.2rem; 
  color: #f9f9f9; 
}

.team-card h4 { 
  font-size: 0.95rem; 
  font-weight: 600; 
  color: #f9f9f9; 
  margin-bottom: 4px; 
}

.team-card p { 
  font-size: 0.8rem; 
  color: #909090; 
}

/* --- Job / Career Cards --- */
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.job-card:hover {
  border-color: rgba(151, 60, 32, 0.4);
}

.job-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.job-meta {
  font-size: 0.8rem;
  color: var(--text-dimmed);
  margin-bottom: 12px;
}

.job-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.job-apply {
  display: inline-block;
  background: rgba(151, 60, 32, 0.15);
  border: 1px solid rgba(151, 60, 32, 0.3);
  color: #ff8a65;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.job-apply:hover {
  background: var(--accent-color);
  color: var(--text-main);
}

/* --- Blog Cards --- */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.blog-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.blog-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --- Feature Cards Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.feature-card {
  background: rgba(48, 48, 48, 0.3);
  border: 1px solid rgba(95, 88, 79, 0.15);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: rgba(151, 60, 32, 0.3);
  background: rgba(48, 48, 48, 0.45);
}

.feature-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.84rem;
  color: var(--text-dimmed);
  line-height: 1.5;
}

/* --- Workflow Process Box --- */
.process {
  background: rgba(48, 48, 48, 0.3);
  border: 1px solid rgba(95, 88, 79, 0.15);
  border-radius: 14px;
  padding: 32px;
  margin: 32px 0;
}

.process h3 {
  font-family: 'Cardo', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.process-step {
  text-align: center;
  padding: 16px;
}

.process-step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(151, 60, 32, 0.15);
  border: 1px solid rgba(151, 60, 32, 0.3);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.process-step h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--text-dimmed);
}

/* Buttons & Groups */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--text-main);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* --- Call To Action Box --- */
.cta-section {
  text-align: center;
  margin: 56px 0 32px;
  padding: 40px 24px;
  background: rgba(151, 60, 32, 0.06);
  border: 1px solid rgba(151, 60, 32, 0.15);
  border-radius: 14px;
}

.cta-section h3 {
  font-family: 'Cardo', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.cta-section a {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent-color);
  color: var(--text-main);
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
  text-decoration: none;
}

.cta-section a:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Contact Form Styling */
.contact-info h3 {
  font-family: 'Cardo', serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(151, 60, 32, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  flex-shrink: 0;
}

.contact-icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dimmed);
  margin-bottom: 2px;
}

.contact-item a {
  color: var(--text-main);
  text-decoration: none;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(10, 13, 25, 0.6);
  border: 1px solid var(--border-color);
  padding: 12px;
  border-radius: 8px;
  color: var(--text-main);
  font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-submit {
  width: 100%;
  justify-content: center;
}

/* --- Footer Layout & Sizing Fixes --- */
.footer {
  background-color: #12151c;
  color: #f9f9f9;
  padding: 60px 20px 30px;
  width: 100%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  width: 40px;
  height: auto;
  object-fit: contain;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-titles {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.footer-brand-sub {
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: #f9f9f9;
  transition: background 0.2s;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* --- Floating WhatsApp Button Styles & Pulse Animation --- */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 10px 18px 10px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: whatsappPulse 2.2s infinite ease-in-out;
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  background: #20ba5a;
  transform: scale(1.05);
  animation: none;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  z-index: -1;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none !important;
}

.whatsapp-float a:hover,
.whatsapp-float a:focus {
  text-decoration: none !important;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  flex-shrink: 0;
  text-decoration: none !important;
}

.whatsapp-float .w-label {
  margin-left: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-decoration: none !important;
}

/* --- Dev Warning Popup Styles & Icon Fix --- */
.dev-warning {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.dev-warning.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.dev-warning-box {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dev-warning-icon {
  width: 50px;
  height: 50px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.dev-warning-icon svg {
  width: 24px !important;
  height: 24px !important;
  display: block;
  fill: none;
  stroke: #25d366;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dev-warning-box h3 {
  font-family: 'Cardo', serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.dev-warning-box p {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin-bottom: 20px;
  line-height: 1.5;
}

#devWarningBtn {
  background: #973C20;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

#devWarningBtn:hover {
  background: #b54928;
}

.dev-warning-box .note {
  font-size: 0.85rem;
  margin-top: 15px;
  margin-bottom: 0;
  color: #888;
}

.dev-warning-box .note a {
  color: #973C20;
  text-decoration: none;
}

/* --- Media Queries & Responsive Design --- */
@media (min-width: 901px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  #mobileMenuBtn,
  .mobile-nav-links {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .site-header .header-container {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
  }

  .header-logo {
    max-width: 65%;
  }

  .logo-text .brand-tagline {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .main-nav {
    display: none !important;
  }

  #mobileMenuBtn {
    display: flex !important;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
  }

  .site-header .header-container > div:last-of-type {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    margin-right: 5px;
  }

  .site-header .header-container .btn-header-outline {
    padding: 5px 8px !important;
    font-size: 11px !important;
  }

  .site-header .header-container .btn-header-outline svg {
    width: 14px;
    height: 14px;
  }

  .mobile-nav-links {
    width: 100%;
    background-color: #0b192c;
    padding: 10px 15px 20px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    display: none;
    flex-direction: column;
  }

  .mobile-nav-links > a {
    display: block;
    color: var(--text-muted, #ccc);
    padding: 12px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
  }

  .mobile-nav-links .dropdown {
    position: static !important;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-nav-links .dropdown-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
  }

  .mobile-nav-links .dropdown-link-wrapper a {
    color: var(--text-muted, #ccc);
    text-decoration: none;
    font-size: 15px;
  }

  .mobile-nav-links .dropdown-arrow-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 10px;
  }

  .mobile-nav-links .dropdown-menu {
    display: none;
    position: static !important;
    float: none;
    width: 100%;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.2);
    padding-left: 15px;
    padding-bottom: 5px;
    border: none;
  }

  .mobile-nav-links .dropdown.is-open .dropdown-menu {
    display: block !important;
  }

  .mobile-nav-links .dropdown-menu a {
    display: block;
    padding: 8px 0;
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    gap: 8px;
  }
  
  .services-hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title h2, .section-header h2 {
    font-size: 1.25rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-grid, .contact-grid, .form-row {
    grid-template-columns: 1fr;
  }

  .feature-grid, 
  .services-grid, 
  [class*="-grid"] {
    grid-template-columns: 1fr !important;
  }
}