:root {
  --primary: #0f172a;
  --primary-dark: #020617;
  --primary-light: #1e293b;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --secondary: #f59e0b;
  --secondary-light: #fbbf24;
  --text: #f1f5f9;
  --text-light: #94a3b8;
  --bg: #0a0a0a;
  --card: #111111;
  --card-shadow: rgba(37, 99, 235, 0.15);
  --border: #334155;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gold-gradient: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

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

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Header */
header {
  background: var(--gradient);
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid var(--accent);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, #3b82f6, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

nav {
  display: block;
}

.nav-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  position: relative;
  transition: all 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

nav a:hover {
  color: var(--secondary);
}

nav a:hover::after {
  width: 100%;
}

.cta-header {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
  box-shadow: 0 3px 12px rgba(37, 99, 235, 0.4);
}

.cta-header:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(59, 130, 246, 0.5);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%);
  color: white;
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  background: linear-gradient(90deg, #fff 0%, #e2e8f0 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
  margin: 0.4rem;
  border: 2px solid transparent;
}

.hero-cta:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.hero-cta.secondary {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  box-shadow: none;
}

.hero-cta.secondary:hover {
  background: var(--secondary);
  color: var(--primary-dark);
  box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3);
}

/* Container & Sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.8rem;
  color: white;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: var(--card);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px var(--card-shadow);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.25);
  border-color: var(--accent);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.8rem;
}

.service-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* About Section */
.about-section {
  background: var(--primary-dark);
  padding: 4rem 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.2rem;
  background: var(--primary);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.stat-number {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.about-image {
  width: 100%;
  max-width: 450px;
  height: 350px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.25);
  border: 2px solid var(--border);
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #1e40af 100%);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 16px;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.contact-cta h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.8rem;
  position: relative;
}

.contact-cta p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  position: relative;
}

.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
  position: relative;
}

.cta-button:hover {
  background: var(--secondary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
}

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 3rem 1rem 1.5rem;
  border-top: 2px solid var(--accent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-section a {
  color: var(--text-light);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.4rem;
  transition: all 0.3s;
}

.footer-section a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--secondary);
}

/* Cards */
.info-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.info-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px var(--card-shadow);
}

.info-card h3 {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Form Styles */
.contact-form {
  background: var(--card);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  max-width: 600px;
  margin: 2rem auto 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-submit {
  background: var(--accent);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.form-submit:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
}

/* Page Content */
.page-content {
  min-height: 60vh;
  padding: 3rem 1rem;
}

.page-content h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.page-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin: 2rem 0 1rem;
}

.page-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.8rem;
}

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

.page-content ul,
.page-content ol {
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.page-content a {
  color: var(--accent-light);
}

.page-content a:hover {
  color: var(--secondary);
}

.meta-info {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-details {
  background: var(--card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--primary);
  border-radius: 8px;
}

.contact-icon {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
}

.contact-item strong {
  color: var(--text);
}

.contact-item a {
  color: var(--accent-light);
}

/* Responsive */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-content {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 1rem;
  }
  .nav-content.active {
    display: flex;
  }
  nav a {
    padding: 0.5rem 0;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 1.5rem;
  }
}
