/* ==========================================================================
   WEBGEN DIGITAL SOLUTIONS - MAIN STYLESHEET
   100% Valid CSS3 - Optimized for Modern Browsers & Responsive Layouts
   3-Color Logo Harmonization: Purple (#7C3AED), Royal Blue (#0052CC), Teal (#00F2FE)
   ========================================================================== */

/* 1. ROOT VARIABLES
   ========================================================================== */
:root {
  /* Logo Color 1: Primary Purple / Violet */
  --purple-primary: #7c3aed;
  --purple-hover: #6d28d9;
  --lavender-light: #f3e8ff;
  --lavender-border: #e9d5ff;

  /* Logo Color 2: Royal Blue Accent */
  --royal-blue: #0052cc;
  --royal-blue-hover: #003d99;
  --royal-blue-light: rgba(0, 82, 204, 0.08);

  /* Logo Color 3: Vibrant Teal / Cyan Accent */
  --accent-teal: #00f2fe;
  --accent-green-teal: #38ef7d;

  /* Deep Backgrounds & Tones */
  --navy-900: #1e1b4b;             /* Deep Purple-Navy Base */
  --navy-800: #2e1065;             /* Deep Indigo Sub-container */
  --navy-700: #3b1d82;             /* Border/Hover Accent for dark components */
  --navy-600: #4a5568;

  /* Neutral Palette */
  --bg-light: #faf5ff;             /* Very soft lavender tint background */
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --text-dark: #0f172a;
  --text-muted: #64748b;

  /* Fonts & Radius */
  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(124, 58, 237, 0.05);
  --shadow-md: 0 4px 12px rgba(124, 58, 237, 0.1);
  --shadow-lg: 0 12px 24px rgba(30, 27, 75, 0.15);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. BASE & RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Helper Utilities */
.text-purple { color: var(--purple-primary) !important; }
.text-royal { color: var(--royal-blue) !important; }
.text-teal { color: var(--accent-teal) !important; }
.mb-12 { margin-bottom: 12px !important; }

/* 3. LAYOUT & CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.align-center {
  align-items: center;
}

/* 4. TYPOGRAPHY & BUTTONS
   ========================================================================== */
h1, h2, h3, h4 {
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-primary);
  margin-bottom: 0.5rem;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Button System (Incorporate Primary Purple & Royal Blue secondary) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--purple-primary);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: var(--purple-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--royal-blue);
  color: var(--royal-blue);
}
.btn-secondary:hover {
  background-color: var(--royal-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
}

.btn-white {
  background-color: #ffffff;
  color: var(--navy-900);
}
.btn-white:hover {
  background-color: var(--lavender-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--navy-900);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* 5. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lavender-border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(110%);
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-900);
}

.brand-accent {
  color: var(--purple-primary);
}

.brand-tag {
  font-size: 0.685rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--navy-600);
}

.nav-link:hover {
  color: var(--purple-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger-bar {
  width: 24px;
  height: 3px;
  background-color: var(--navy-900);
  border-radius: 2px;
}

/* 6. HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 6rem 0 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background-color: var(--lavender-light);
  color: var(--purple-primary);
  border: 1px solid var(--lavender-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--royal-blue);
  border-radius: 50%;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--navy-600);
  margin: 1.25rem 0 2rem 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Hero Composition Graphic */
.hero-visual {
  position: relative;
}

.composition-card {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--navy-800);
}

.window-bar {
  background: var(--navy-800);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.window-title {
  margin-left: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
}

.card-inner {
  padding: 2rem;
  color: #ffffff;
}

.stat-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.stat-box {
  background: var(--navy-800);
  padding: 1rem;
  border-radius: var(--radius-sm);
  flex: 1;
  border: 1px solid rgba(233, 213, 255, 0.1);
}

.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-teal);
}

.stat-lbl {
  font-size: 0.75rem;
  color: #a7f3d0;
}

.preview-mini-graph {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  padding-top: 1rem;
}

.bar {
  flex: 1;
  background: var(--purple-primary);
  border-radius: 3px 3px 0 0;
}
.bar-1 { height: 40%; }
.bar-2 { height: 65%; background: var(--royal-blue); }
.bar-3 { height: 50%; }
.bar-4 { height: 85%; background: var(--purple-primary); }
.bar-5 { height: 100%; background: var(--accent-teal); }

.card-floating {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--lavender-border);
}

.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lavender-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--purple-primary);
}

.float-title {
  display: block;
  color: var(--navy-900);
  font-size: 0.875rem;
  font-weight: 700;
}

.float-sub {
  font-size: 0.75rem;
  color: var(--navy-600);
}

/* 7. TRUST BAR
   ========================================================================== */
.trust-bar {
  background-color: var(--navy-900);
  color: #ffffff;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--purple-primary);
}

/* 8. CARDS & SERVICES
   ========================================================================== */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--lavender-border);
  box-shadow: var(--shadow-md);
}

.service-card .service-icon,
.why-card .why-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--lavender-light);
  color: var(--purple-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.service-card h3, .why-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p, .why-card p {
  color: var(--navy-600);
  font-size: 0.95rem;
}

/* 9. EDITORIAL SECTION
   ========================================================================== */
.editorial-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.editorial-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.editorial-item h4 {
  color: var(--royal-blue);
  margin-bottom: 0.25rem;
}

.editorial-item p {
  font-size: 0.875rem;
  color: var(--navy-600);
}

.pill-box {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 2rem;
  color: #ffffff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--navy-800);
}

.pill-title {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--navy-800);
  padding-bottom: 0.75rem;
  color: var(--accent-teal);
}

.stack-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--navy-800);
  font-size: 0.9rem;
}

/* 10. CASE STUDY & PORTFOLIO
   ========================================================================== */
.case-study-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.tag {
  display: inline-block;
  background: var(--lavender-light);
  color: var(--purple-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.case-detail {
  margin: 1rem 0;
}

.case-detail strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy-900);
}

.case-detail p {
  font-size: 0.925rem;
  color: var(--navy-600);
}

.browser-frame {
  background: var(--navy-900);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.portfolio-media {
  width: 100%;
  display: block;
}

/* Portfolio Cards */
.portfolio-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.result-text {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--navy-600);
}

.portfolio-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.badge-status {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-primary);
  background: var(--lavender-light);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
}

/* 11. PROCESS & LOCAL SECTION
   ========================================================================== */
.process-horizontal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.process-column {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.step-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--purple-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.process-column p {
  font-size: 0.85rem;
  color: var(--navy-600);
  margin-top: 0.5rem;
}

.check-list {
  margin-top: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple-primary);
  font-weight: 800;
}

.local-card {
  background: var(--navy-900);
  color: #ffffff;
}

.local-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.local-card p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.local-card a {
  color: var(--accent-teal);
}

/* 12. FAQ & REVIEWS WIDGET STYLES
   ========================================================================== */
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--lavender-border);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

/* 13. CTA BANNER & FORM
   ========================================================================== */
.cta-banner-section {
  padding: 2rem 0;
}

.cta-banner {
  background: linear-gradient(135deg, var(--purple-primary) 0%, var(--navy-900) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  color: #ffffff;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Form Styles */
.form-container {
  max-width: 800px;
}

.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy-900);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

/* 14. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-900);
  color: #ffffff;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid var(--navy-800);
}

.footer-brand-title {
  color: #ffffff;
  font-weight: 800;
}

.footer-heading {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--accent-teal);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-contact-item {
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.flex-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--navy-800);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 15. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process-horizontal { grid-template-columns: repeat(3, 1fr); }
  .hero-container, .editorial-wrapper, .case-study-card { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .process-horizontal { grid-template-columns: 1fr; }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
  }
  
  .nav-menu.active { display: block; }
  .nav-list { flex-direction: column; gap: 1rem; }
  .nav-toggle { display: flex; }
  
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.75rem; }
  .cta-actions { flex-direction: column; }
}

/* ==========================================================================
   ABOUT / LOCATION SECTION (DARK TECH THEME)
   ========================================================================== */

.about-dark-section {
  background-color: var(--navy-900, #0a1128); /* Deep Navy Base */
  color: #ffffff;
  padding: 6rem 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Column Styling */
.about-tag {
  display: inline-block;
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

/* Bottom Spec Metadata Grid */
.about-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.spec-value {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Right Column Map Card Styling */
.about-map-container {
  position: relative;
  height: 480px;
  background-color: #0f172a;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Apply dark filter to embedded Google Map */
.google-map-frame {
  filter: invert(90%) hue-rotate(180deg) contrast(100%) grayscale(20%);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.about-map-container:hover .google-map-frame {
  opacity: 1;
}

/* Floating Card Overlay */
.map-location-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md, 12px);
  padding: 1.5rem;
  z-index: 10;
}

.card-brand {
  display: block;
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--royal-blue, #3b82f6);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.map-location-card h3 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.map-location-card p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.phone-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: var(--accent-teal, #00f2fe);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-title {
    font-size: 2.25rem;
  }
  
  .about-map-container {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .about-specs {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================
   MOBILE NAVIGATION TOGGLE STYLES
   ========================================== */
@media (max-width: 991px) {
  .nav-menu {
    display: none; /* Hide menu by default on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--navy-900, #0a1128);
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }

  .nav-menu.is-active {
    display: block !important; /* Reveal when toggled */
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================
   FAQ ACCORDION STYLES
   ========================================== */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  display: none; /* Hide answer content by default */
  padding-bottom: 1rem;
  color: #070707;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Show answer when parent .faq-item receives .active class */
.faq-item.active .faq-answer {
  display: block !important;
}