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

:root {
  --bg-color: #0b0f19;
  --text-color: #e2e8f0;
  --text-muted: #94a3b8;
  --accent-1: #660027; /* Main logo color */
  --accent-2: #cc004f; /* Lighter complementary tone */
  --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  --glass-bg: rgba(11, 15, 25, 0.85);
  --glass-border: rgba(255, 255, 255, 0.1);
  --nav-height: 80px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar .logo img {
  height: 45px;
  max-width: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-color);
}

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

.btn-primary {
  display: inline-block;
  background: var(--accent-gradient);
  color: #fff !important;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(102, 0, 39, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 79, 0.5);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--accent-1);
  background: rgba(102, 0, 39, 0.1);
}

/* Page Layout */
.page-wrapper {
  margin-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height) - 120px);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5%;
  position: relative;
  background: radial-gradient(circle at center, rgba(102, 0, 39, 0.15) 0%, rgba(11,15,25,1) 70%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: var(--accent-gradient);
  filter: blur(150px);
  opacity: 0.15;
  z-index: -1;
  border-radius: 50%;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Services Grid */
.services-section {
  padding: 6rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 4rem;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-1);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.service-card:hover::after {
  opacity: 0.03;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(102, 0, 39, 0.2);
  transform: scale(1.1);
}

.service-icon img {
  height: 40px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.learn-more {
  color: var(--accent-1);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.learn-more:hover {
  color: var(--accent-2);
}

.learn-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.service-card:hover .learn-more::after {
  transform: translateX(5px);
}

/* Service Detail Page */
.detail-header {
  padding: 8rem 5% 4rem;
  text-align: center;
  background: radial-gradient(circle at top, rgba(102, 0, 39, 0.1) 0%, var(--bg-color) 100%);
  border-bottom: 1px solid var(--glass-border);
}

.detail-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.detail-content {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 5%;
  font-size: 1.1rem;
}
.detail-content h2 { margin: 2rem 0 1rem; color: var(--text-color); font-size: 2rem;}
.detail-content p { margin-bottom: 1.5rem; color: var(--text-muted); }
.detail-content ul { margin-bottom: 1.5rem; padding-left: 1.5rem; color: var(--text-muted); }
.detail-content li { margin-bottom: 0.5rem; }

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 5%;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-method {
  margin-bottom: 1.5rem;
}
.contact-method strong {
  display: block;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

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

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-1);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 4px rgba(102, 0, 39, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

#response { margin-bottom: 1rem; color: var(--accent-2); font-weight: 600; }

/* Footer */
footer {
  background: #06080e;
  padding: 3rem 5%;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.social-links {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-links a:hover {
  background: transparent;
  border-color: var(--accent-1);
  color: var(--accent-1);
  transform: translateY(-3px);
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 2rem 5%;
    gap: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }
  
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-links .btn-primary {
    width: 100%;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
  }
}
