:root {
  /* Primary Color Palette */
  --primary-navy: #1a2b4c;
  --primary-burgundy: #8b2635;
  --primary-gold: #d4af37;
  --primary-teal: #2c7873;
  --primary-charcoal: #36454f;
  
  /* Light/Dark Shades */
  --navy-light: #2d4a7a;
  --navy-dark: #0f1a2e;
  --burgundy-light: #a64d5a;
  --burgundy-dark: #5c1a24;
  --gold-light: #e6c866;
  --gold-dark: #b8941f;
  --teal-light: #4a9b94;
  --teal-dark: #1e5651;
  --charcoal-light: #4a5a6b;
  --charcoal-dark: #252d35;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  
  /* Conservative Font Sizes */
  --fs-small: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    overflow-x: hidden;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--charcoal-dark);
  background-color: var(--white);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-navy);
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
h5, h6 { font-size: var(--fs-base); }

p {
  margin-bottom: var(--spacing-sm);
  font-size: var(--fs-base);
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-navy), var(--navy-light));
  padding: var(--spacing-sm) 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: var(--fs-lg) !important;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-md) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../PEN_images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-title {
  font-size: var(--fs-4xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.hero-subtitle {
  font-size: var(--fs-xl);
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--fs-lg);
  margin-bottom: var(--spacing-xl);
  opacity: 0.8;
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-gold), var(--gold-light));
  opacity: 0.1;
  z-index: 1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
}

/* Section Styling */
.section {
  padding: var(--spacing-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--primary-navy);
}

.section-subtitle {
  text-align: center;
  color: var(--primary-burgundy);
  margin-bottom: var(--spacing-sm);
}

.section-desc {
  text-align: center;
  color: var(--medium-gray);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services */
.services-item {
  background: var(--white);
  border-radius: 10px;
  padding: var(--spacing-lg);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: var(--spacing-lg);
  height: 100%;
}

.services-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: var(--spacing-md);
}

.services-item-name {
  color: var(--primary-navy);
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.services-item-desc {
  color: var(--medium-gray);
  margin-bottom: var(--spacing-md);
}

.services-item-price {
  color: var(--primary-burgundy);
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.services-item-features {
  color: var(--primary-teal);
  font-size: var(--fs-small);
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--spacing-md);
  border: 4px solid var(--primary-gold);
}

.team-member-name {
  color: var(--primary-navy);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.team-member-role {
  color: var(--primary-burgundy);
  font-size: var(--fs-base);
}

/* Reviews/Testimonials */
.reviews-item {
  background: var(--light-gray);
  padding: var(--spacing-lg);
  border-radius: 10px;
  margin-bottom: var(--spacing-lg);
  border-left: 4px solid var(--primary-gold);
}

.reviews-item-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: var(--charcoal-dark);
}

.reviews-item-author {
  color: var(--primary-navy);
  font-weight: 600;
}

/* FAQ */
.faq-item {
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-navy);
  color: var(--white);
  padding: var(--spacing-md);
  cursor: pointer;
  font-weight: 600;
  margin: 0;
}

.faq-answer {
  padding: var(--spacing-md);
  background: var(--white);
  color: var(--charcoal-dark);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  padding: var(--spacing-xl);
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-control {
  width: 100%;
  padding: var(--spacing-sm);
  border: 2px solid var(--medium-gray);
  border-radius: 5px;
  font-size: var(--fs-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-teal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-burgundy), var(--burgundy-light));
  border: none;
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 5px;
  font-size: var(--fs-base);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--burgundy-dark), var(--primary-burgundy));
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-charcoal), var(--charcoal-dark));
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
}

.footer h5 {
  color: var(--primary-gold);
  margin-bottom: var(--spacing-md);
}

.footer p, .footer a {
  color: var(--light-gray);
  text-decoration: none;
  margin-bottom: var(--spacing-xs);
}

.footer a:hover {
  color: var(--primary-gold);
}

#site-copyright {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--charcoal-light);
  margin-top: var(--spacing-lg);
  color: var(--medium-gray);
}

/* Gallery */
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: var(--spacing-sm) 0;
  margin-bottom: var(--spacing-lg);
}

.breadcrumb img {
  height: 20px;
  width: auto;
}

/* Process/Timeline */
.process-item, .timeline-item {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin-bottom: var(--spacing-lg);
  border-left: 4px solid var(--primary-teal);
}

.process-item-title, .timeline-item-title {
  color: var(--primary-navy);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.process-item-desc, .timeline-item-desc {
  color: var(--medium-gray);
}

/* Price Plans */
.priceplan-item {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: var(--spacing-xl);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.priceplan-item:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
}

.priceplan-item-name {
  color: var(--primary-navy);
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.priceplan-item-price {
  color: var(--primary-burgundy);
  font-size: var(--fs-3xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.priceplan-item-features {
  color: var(--medium-gray);
  margin-bottom: var(--spacing-md);
}

/* Blog */
.blog-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: var(--spacing-lg);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item-content {
  padding: var(--spacing-lg);
}

.blog-item-title {
  color: var(--primary-navy);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.blog-item-excerpt {
  color: var(--medium-gray);
  margin-bottom: var(--spacing-md);
}

.blog-item-link {
  color: var(--primary-teal);
  text-decoration: none;
  font-weight: 600;
}

.blog-item-link:hover {
  color: var(--teal-dark);
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-2xl);
  color: var(--medium-gray);
} 