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

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

:root {
  --primary: #1a3a52;
  --primary-light: #2d5a7b;
  --accent: #00d4ff;
  --accent-light: #33e5ff;
  --background: #f8f9fa;
  --text-dark: #1a1f2e;
  --text-light: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 { font-size: 3.5rem; line-height: 1.2; }
h2 { font-size: 2.25rem; line-height: 1.3; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { color: var(--text-light); margin-bottom: 1rem; }

a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--primary-light); }

/* Layout */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

.logo {
  height: 40px;
  width: auto;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-light);
  box-shadow: 0 10px 25px rgba(26, 58, 82, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  height: 3.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  background: var(--slate-900);
  color: var(--white);
  overflow: hidden;
  padding: 4rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  animation: slideInUp 0.8s ease-out;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 2.75rem;
  line-height: 1.2;
}

.hero-content .accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Trust Indicators */
.trust-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item h3 { color: var(--text-dark); }
.trust-item p { color: var(--text-light); }

/* Cards Section */
.cards-section {
  padding: 6rem 0;
  background: #f0f4f8;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 58, 82, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.card-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.card-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background: var(--slate-900);
  color: #cbd5e1;
  padding: 3rem 0 1rem;
  margin-top: auto;
  border-top: 1px solid var(--slate-800);
}

footer h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

footer a {
  color: #cbd5e1;
  transition: color 0.3s;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-contact {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

/* Page Padding */
.page-content {
  padding: 6rem 0;
}

.page-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
}

/* Contact Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 82, 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 150px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-box {
  display: flex;
  gap: 1rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(26, 58, 82, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.info-box h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-box p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.form-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.form-box h2 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

/* Success Message */
.alert {
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  display: none;
}

.alert.show {
  display: block;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
}

.about-text h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-image {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -40px;
  left: 0;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 85%;
  transition: all 0.3s;
}

.about-badge:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.about-badge-icon {
  width: 50px;
  height: 50px;
  background: rgba(26, 58, 82, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-badge-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-badge-value {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.about-badge-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.quote {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-dark);
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Outfit', sans-serif;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
}

.value-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  margin: 0;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 2rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(26, 58, 82, 0.2);
  font-size: 1.75rem;
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 1.5rem;
}

.feature-list {
  background: #f0f4f8;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
}

.feature-list h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-list ul {
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.feature-list li:before {
  content: "●";
  color: var(--primary);
  margin-right: 0.5rem;
}

.cta-section {
  background: var(--slate-900);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  color: var(--white);
  margin-top: 3rem;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: #cbd5e1;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .nav-links {
    gap: 1rem;
  }

  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  .about-badge {
    position: static;
    width: 100%;
    margin-top: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
