@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary-dark: #0A192F;
  --accent-cyan: #00BCD4;
  --light-grey: #E0E0E0;
  --white: #FFFFFF;
  --alert-red: #FF0000;
  
  --font-primary: 'Montserrat', Arial, sans-serif;
  
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.2s ease-out;
  --transition-slow: 0.3s ease-out;
  
  --shadow-card: 0 4px 20px rgba(0, 188, 212, 0.1);
  --shadow-card-hover: 0 8px 30px rgba(0, 188, 212, 0.2);
  
  --header-height: 64px;
  --header-height-mobile: 60px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--primary-dark);
  color: var(--light-grey);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 14px;
}

@media (min-width: 1024px) {
  body {
    font-size: 16px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 32px;
  text-transform: uppercase;
  color: var(--white);
}

@media (min-width: 1024px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 28px;
  color: var(--accent-cyan);
}

@media (min-width: 1024px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 20px;
  color: var(--white);
}

@media (min-width: 1024px) {
  h3 {
    font-size: 24px;
  }
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--white);
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  outline: none;
}

input, textarea {
  font-family: var(--font-primary);
  outline: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height-mobile);
  background: var(--primary-dark);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: height var(--transition-normal);
}

@media (min-width: 1024px) {
  .header {
    height: var(--header-height);
    padding: 0 48px;
  }
}

.header.scrolled {
  height: 56px;
}

@media (min-width: 1024px) {
  .header.scrolled {
    height: 56px;
  }
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 40px;
  width: auto;
}

@media (min-width: 1024px) {
  .logo-container img {
    height: 60px;
    transition: height var(--transition-normal);
  }
  
  .header.scrolled .logo-container img {
    height: 40px;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav-desktop a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent-cyan);
}

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

.header-actions {
  display: none;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.btn-emergency {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
  animation: pulse 2s infinite;
}

.btn-emergency:hover {
  background: #00a5bb;
  color: var(--white);
  transform: translateY(-1px);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 188, 212, 0);
  }
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
}

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

/* Mobile Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--accent-cyan);
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transition: right var(--transition-slow);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-menu a:hover {
  color: var(--accent-cyan);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .mobile-menu-actions {
    display: none;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-height-mobile) + 40px) 20px 60px;
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

@media (min-width: 1024px) {
  .hero {
    padding: calc(var(--header-height) + 60px) 48px 80px;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--light-grey);
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 18px;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

@media (min-width: 768px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
}

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

/* Buttons */
.btn-primary {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #00a5bb;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-normal);
}

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

/* Section Base Styles */
.section {
  padding: 60px 20px;
}

@media (min-width: 1024px) {
  .section {
    padding: 100px 48px;
  }
}

.section-dark {
  background: var(--primary-dark);
}

.section-light {
  background: var(--light-grey);
  color: var(--primary-dark);
}

.section-light h2,
.section-light h3 {
  color: var(--primary-dark);
}

.section-light p {
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Problem Statement Section */
.problem-statement {
  background: #0d1f35;
  text-align: center;
}

.problem-statement h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: var(--white);
}

@media (min-width: 1024px) {
  .problem-statement h2 {
    font-size: 42px;
  }
}

.problem-questions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-questions h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--accent-cyan);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .problem-questions h3 {
    font-size: 22px;
  }
}

/* Why FSI Section */
.why-fsi {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-fsi {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.why-fsi-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.why-fsi-content h2 {
  margin-bottom: 24px;
}

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

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

.benefit-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-cyan);
}

.benefit-text h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}

.benefit-text p {
  color: var(--light-grey);
  font-size: 14px;
  margin: 0;
}

/* Services Grid */
.services-section {
  background: var(--light-grey);
}

.services-section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--primary-dark);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.2);
}

.service-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent-cyan);
}

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

.service-card p {
  color: var(--light-grey);
  font-size: 14px;
  margin-bottom: 20px;
}

.service-card-link {
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-fast);
}

.service-card:hover .service-card-link {
  opacity: 1;
  transform: translateX(0);
}

/* Process Section */
.process-section {
  background: var(--light-grey);
}

.process-section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary-dark);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

@media (min-width: 1024px) {
  .process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-grey);
    z-index: 0;
  }
}

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

.process-step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--accent-cyan);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-cyan);
}

.process-step h3 {
  color: var(--primary-dark);
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step p {
  color: #555;
  font-size: 14px;
}

/* Testimonials */
.testimonials-section {
  background: var(--primary-dark);
  text-align: center;
}

.testimonials-section h2 {
  margin-bottom: 48px;
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@media (min-width: 1024px) {
  .testimonial-quote {
    font-size: 24px;
  }
}

.testimonial-author {
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 16px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light-grey);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--accent-cyan);
  transform: scale(1.2);
}

/* CTA Banner */
.cta-banner {
  background: var(--accent-cyan);
  text-align: center;
  padding: 60px 20px;
}

.cta-banner h2 {
  color: var(--primary-dark);
  font-size: 24px;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .cta-banner h2 {
    font-size: 36px;
  }
}

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

.cta-banner .btn-primary:hover {
  background: #0d2240;
}

.cta-banner .btn-outline {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.cta-banner .btn-outline:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* FAQ Section */
.faq-section {
  background: var(--light-grey);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--primary-dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-question h3 {
  font-size: 16px;
  color: var(--primary-dark);
  margin: 0;
  font-weight: 600;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-cyan);
  transition: transform var(--transition-normal);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer p {
  padding: 0 24px 20px;
  color: #555;
  font-size: 14px;
  margin: 0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* Contact Section */
.contact-section {
  background: var(--primary-dark);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-section .subtitle {
  text-align: center;
  color: var(--light-grey);
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-cyan);
}

.contact-card-content h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-card-content p {
  color: var(--light-grey);
  font-size: 14px;
  margin: 0;
}

.contact-card-content a {
  color: var(--accent-cyan);
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 12px;
}

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

.form-group label {
  display: block;
  color: var(--light-grey);
  font-size: 14px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
  background: rgba(0, 188, 212, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

/* Footer */
.footer {
  background: #050d18;
  padding: 60px 20px 30px;
  border-top: 1px solid rgba(0, 188, 212, 0.2);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand p {
  color: var(--light-grey);
  font-size: 14px;
  margin-top: 16px;
}

.footer h4 {
  color: var(--accent-cyan);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.footer-contact p {
  color: var(--light-grey);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--accent-cyan);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--accent-cyan);
}

.social-links a:hover svg {
  stroke: var(--primary-dark);
}

.social-links svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin: 0;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-dark);
}

/* Page Hero (Inner Pages) */
.page-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-height-mobile) + 40px) 20px 60px;
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

@media (min-width: 1024px) {
  .page-hero {
    min-height: 50vh;
    padding: calc(var(--header-height) + 60px) 48px 60px;
  }
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--light-grey);
}

/* Service Detail Sections */
.detail-section {
  padding: 60px 20px;
}

@media (min-width: 1024px) {
  .detail-section {
    padding: 100px 48px;
  }
}

.detail-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .detail-overview {
    grid-template-columns: 1fr 1fr;
  }
}

.detail-content h2 {
  margin-bottom: 20px;
}

.detail-content p {
  color: var(--light-grey);
  margin-bottom: 24px;
}

.detail-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--light-grey);
}

.detail-bullet::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  min-width: 8px;
}

/* Data Types Grid */
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .data-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .data-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.data-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: 8px;
  transition: all var(--transition-normal);
}

.data-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.data-item-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-item-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-cyan);
}

.data-item h4 {
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 600;
  margin: 0;
}

/* Why Specific */
.why-specific-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-specific-item {
  padding: 24px;
  border-left: 3px solid var(--accent-cyan);
  background: rgba(0, 188, 212, 0.05);
}

.why-specific-item h3 {
  margin-bottom: 12px;
}

.why-specific-item p {
  color: var(--light-grey);
  margin: 0;
}

/* Use Cases */
.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .use-cases-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.use-case-card {
  background: var(--primary-dark);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
}

.use-case-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
}

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

.use-case-card p {
  color: var(--light-grey);
  font-size: 14px;
  margin: 0;
}

/* About Page Styles */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story {
    grid-template-columns: 1fr 1fr;
  }
}

.about-story-content h2 {
  margin-bottom: 20px;
}

.about-story-content p {
  color: var(--light-grey);
  margin-bottom: 24px;
}

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

.value-item h4 {
  color: var(--accent-cyan);
  font-size: 16px;
  margin-bottom: 4px;
}

.value-item p {
  color: var(--light-grey);
  font-size: 14px;
  margin: 0;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.team-card h3 {
  color: var(--primary-dark);
  font-size: 18px;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--accent-cyan);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  color: #555;
  font-size: 14px;
  margin: 0;
}

/* Certifications */
.certifications {
  background: var(--primary-dark);
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.cert-item {
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-align: center;
  transition: all var(--transition-normal);
}

.cert-item:hover {
  background: rgba(0, 188, 212, 0.1);
}

.cert-item h4 {
  color: var(--light-grey);
  font-size: 14px;
  margin: 0;
}

/* Mission Statement */
.mission-statement {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission-statement h2 {
  margin-bottom: 20px;
}

.mission-statement p {
  color: var(--light-grey);
  font-size: 18px;
}

/* Contact Page Specific */
.contact-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .contact-options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-option-card {
  background: var(--primary-dark);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
}

.contact-option-card:hover {
  border-color: var(--accent-cyan);
}

.contact-option-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(0, 188, 212, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-option-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-cyan);
}

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

.contact-option-card p {
  color: var(--light-grey);
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-option-card a {
  color: var(--accent-cyan);
  font-weight: 600;
}

/* Map Section */
.location-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .location-section {
    grid-template-columns: 1fr 2fr;
  }
}

.location-details h3 {
  margin-bottom: 16px;
}

.location-details p {
  color: var(--light-grey);
  margin-bottom: 8px;
}

.map-container {
  height: 400px;
  background: #1a2d47;
  border-radius: 12px;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-grey);
  background: linear-gradient(135deg, #0A192F 0%, #1a2d47 100%);
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-out;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered Animation */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* Custom Cursor */
.custom-cursor {
  display: none;
}

@media (min-width: 1024px) {
  .custom-cursor {
    display: block;
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s;
  }
  
  .custom-cursor.hovering {
    width: 40px;
    height: 40px;
    background: rgba(0, 188, 212, 0.1);
  }
}

/* Particle Background */
.particle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 50%;
  opacity: 0.5;
  animation: float 15s infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-100px) translateX(50px);
  }
  50% {
    transform: translateY(-50px) translateX(-30px);
  }
  75% {
    transform: translateY(-150px) translateX(20px);
  }
}

/* Emergency Call Mobile */
.emergency-mobile {
  display: flex;
}

@media (min-width: 1024px) {
  .emergency-mobile {
    display: none;
  }
}

.emergency-mobile a {
  background: var(--accent-cyan);
  color: var(--primary-dark);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
