/* DMCloud Architect Template Styles */

:root {
  --dmca-orange: #FF8C42;
  --dmca-navy: #1B3A5F;
  --dmca-light-gray: #F8F9FA;
  --dmca-dark-gray: #343A40;
  --dmca-white: #FFFFFF;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--dmca-dark-gray);
  line-height: 1.6;
}

/* Header & Navigation */
.site-header .navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.nav-link {
  font-weight: 500;
  color: var(--dmca-dark-gray) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--dmca-orange) !important;
}

.dropdown-item.active {
  background-color: var(--dmca-orange);
}

/* Buttons */
.btn-primary {
  background-color: var(--dmca-orange);
  border-color: var(--dmca-orange);
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #E67A2E;
  border-color: #E67A2E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.btn-outline-primary {
  border-color: var(--dmca-orange);
  color: var(--dmca-orange);
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--dmca-orange);
  border-color: var(--dmca-orange);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--dmca-navy) 0%, #2B4A6F 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,140,66,0.1)" stroke-width="0.5"/></svg>') repeat;
  opacity: 0.5;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-section .btn {
  font-size: 1.125rem;
  padding: 0.875rem 2rem;
}

/* Service Cards */
.service-card {
  border: 2px solid #E9ECEF;
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  background: white;
}

.service-card:hover {
  border-color: var(--dmca-orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card.featured {
  border-color: var(--dmca-orange);
  border-width: 3px;
  position: relative;
}

.service-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--dmca-orange);
  color: white;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.service-card h3 {
  color: var(--dmca-navy);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dmca-orange);
  margin-bottom: 0.5rem;
}

.service-card .price-note {
  color: #6C757D;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-card ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #F1F3F5;
  position: relative;
  padding-left: 1.75rem;
}

.service-card ul li:last-child {
  border-bottom: none;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--dmca-orange);
  font-weight: 700;
  font-size: 1.25rem;
}

/* About Section */
.about-section {
  background-color: var(--dmca-light-gray);
}

.about-section h2 {
  color: var(--dmca-navy);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.credential-badge {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--dmca-orange);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.credential-badge h4 {
  color: var(--dmca-navy);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.credential-badge p {
  margin: 0;
  color: #6C757D;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dmca-orange) 0%, #E67A2E 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section .btn-light {
  background-color: white;
  color: var(--dmca-orange);
  font-weight: 600;
  padding: 0.875rem 2.5rem;
  font-size: 1.125rem;
  border: none;
}

.cta-section .btn-light:hover {
  background-color: #F8F9FA;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Footer */
.site-footer {
  background-color: #212529 !important;
}

.site-footer h5 {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
}

.site-footer a:hover {
  color: var(--dmca-orange) !important;
  text-decoration: underline !important;
}

/* Utilities */
.section-title {
  color: var(--dmca-navy);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  color: #6C757D;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 3rem;
}

.text-orange {
  color: var(--dmca-orange) !important;
}

.text-navy {
  color: var(--dmca-navy) !important;
}

.bg-light-gray {
  background-color: var(--dmca-light-gray) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.25rem;
  }
  
  .hero-section .lead {
    font-size: 1.125rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-section h1 {
    font-size: 1.875rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Hero Section Background - Gradient + Image */
.hero-section {
  position: relative;
  overflow: hidden;
  
  /* Multiple backgrounds: gradient overlay OVER the image */
  background-image: 
    linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 152, 219, 0.85) 100%),
    url('/assets/images/hero-strategy-call.jpg');
  
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 400px;
}

/* Optional: Subtle pattern overlay */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

/* Ensure content is above background */
.hero-section > * {
  position: relative;
  z-index: 1;
}