/* Base Styles */
:root {
  --primary-color: #0a1520; /* Even darker navy */
  --secondary-color: #6b0000; /* Deeper, richer burgundy */
  --accent-color: #d4af37; /* True gold */
  --light-color: #f0ebe1; /* Cream/ivory instead of white */
  --dark-color: #0a0a0a; /* Richer black */
  --text-color: #2a2a2a;
  --border-radius: 0; /* Sharper edges for more sophisticated look */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9e076 50%, #d4af37 100%);
}

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

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  letter-spacing: 0.02em;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  margin-bottom: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.03em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--gold-gradient);
}

h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

p {
  margin-bottom: 1.5rem;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

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

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.center-text {
  text-align: center;
}

/* Header */
header {
  background-color: var(--primary-color);
  color: white;
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid var(--accent-color);
}

header h1 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

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

header h1 {
  margin: 0;
  font-size: 1.8rem;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 110;
}

.mobile-nav-toggle:hover {
  color: var(--accent-color);
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0 0 0 1.5rem;
}

nav a {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(10, 21, 32, 0.95), rgba(107, 0, 0, 0.85));
  color: white;
  text-align: left;
  padding: 12rem 0 10rem;
  margin-top: 60px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-gradient);
}

.hero-content {
  max-width: 800px;
}

.subheading {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn {
  background-color: var(--secondary-color);
  color: white;
  border: 1px solid var(--accent-color);
}

.secondary-btn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.bookmark-icon {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.scarcity {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--accent-color);
  font-style: italic;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Sections */
.section {
  padding: 5rem 0;
  border-bottom: 1px solid #e0e0e0;
  background-image: linear-gradient(90deg, #f8f9fa 50%, transparent 50%);
  background-size: 4px 100%;
}

.alt-bg {
  background-color: var(--light-color);
}

.content-columns {
  display: flex;
  gap: 2rem;
}

.content-columns > div {
  flex: 1;
}

/* Image Features */
.image-feature {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.feature-image {
  width: 100%;
  height: 400px;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-position: center;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  border: none;
}

.feature-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--accent-color);
  opacity: 0.7;
  z-index: 1;
}

.feature-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.feature-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(107, 0, 0, 0.3), rgba(10, 21, 32, 0.3));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-image:hover::after {
  opacity: 1;
}

.image-feature.reverse .feature-image {
  order: 2;
}

/* Image Gallery */
.image-gallery {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-image {
  flex: 1;
  height: 250px;
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  border: none;
}

.gallery-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--accent-color);
  opacity: 0.7;
  z-index: 1;
}

.gallery-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.gallery-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(107, 0, 0, 0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-image:hover::after {
  opacity: 1;
}

.gallery-image > div {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 2;
}

.gallery-image:hover > div {
  opacity: 1;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
}

/* Specific Image Styles */
#philosophy-image {
  background-image: url('../img/philosophy.jpg');
}

#dynamics-image {
  background-image: url('../img/dynamics.jpg');
}

#safety-image {
  background-image: url('../img/safety.jpg');
}

#growth-image {
  background-image: url('../img/growth.jpg');
}

/* Gallery Images - Replace these with your personal photos */
#gallery-image-1 {
  background-image: url('../img/gallery-placeholder-1.jpg');
  /* Replace with: url('../img/personal-photo-1.jpg'); */
}

#gallery-image-2 {
  background-image: url('../img/gallery-placeholder-2.jpg');
  /* Replace with: url('../img/personal-photo-2.jpg'); */
}

#gallery-image-3 {
  background-image: url('../img/gallery-placeholder-3.jpg');
  /* Replace with: url('../img/personal-photo-3.jpg'); */
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input, textarea, select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: white;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 8.825L1.175 4 2.05 3.125 6 7.075 9.95 3.125 10.825 4 6 8.825z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Values Section */
.values-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 3px solid var(--accent-color);
}

.value-item h3:first-child {
  color: var(--secondary-color);
}

.value-item h3:last-child {
  color: #888;
  font-weight: 400;
}

.value-item p {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin: 0 2rem;
}

.center-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Timeline Section */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 2px;
  background: var(--gold-gradient);
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 3rem;
}

.timeline-marker {
  position: absolute;
  left: 42px;
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-weight: bold;
  font-size: 0.8rem;
}

.timeline-content {
  background-color: white;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 3px solid var(--accent-color);
}

/* Security Section */
.security-features {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.security-item {
  flex: 1;
  min-width: 250px;
  background-color: white;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 3px solid var(--accent-color);
}

.security-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  display: inline-block;
  background: var(--primary-color);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--accent-color);
}

/* Testimonials Section */
.testimonials-container {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1;
  min-width: 250px;
  background-color: white;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-bottom: 3px solid var(--accent-color);
}

.featured-testimonial {
  flex-basis: 100%;
  background-color: white;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  border: 1px solid var(--accent-color);
  margin-bottom: 1rem;
}

.featured-testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 6rem;
  font-family: var(--font-serif);
  color: var(--accent-color);
  opacity: 0.2;
  line-height: 1;
}

.testimonial p:first-child {
  font-style: italic;
  font-size: 1.1rem;
}

.featured-testimonial p:first-child {
  font-size: 1.2rem;
  line-height: 1.8;
}

.testimonial-author {
  color: var(--secondary-color);
  font-weight: 600;
  text-align: right;
  margin-bottom: 0;
}

/* Metrics Section */
.metrics-container {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 200px;
  background-color: white;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-right: 3px solid var(--accent-color);
}

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.metric-note {
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 1rem 2.5rem;
  border: 1px solid var(--accent-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.5s;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn:hover {
  background-color: var(--dark-color);
  color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn:hover::before {
  left: 100%;
}

.guarantee {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--secondary-color);
  text-align: center;
  font-size: 0.9rem;
  position: relative;
  padding: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.guarantee::before, .guarantee::after {
  content: '❦';
  color: var(--accent-color);
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.7;
}

.guarantee::before {
  left: 0;
  top: 0.5rem;
}

.guarantee::after {
  right: 0;
  top: 0.5rem;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 0;
  text-align: center;
  border-top: 2px solid var(--accent-color);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

footer p {
  color: var(--accent-color);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

/* Responsive Design */

/* Large Desktop (1200px and above) - Default styles apply */

/* Medium Desktop (1024px to 1199px) */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .feature-image {
    height: 350px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
}

/* Tablet (768px to 1023px) */
@media (max-width: 1023px) {
  .container {
    max-width: 720px;
  }
  
  header {
    padding: 1rem 0;
  }
  
  nav ul {
    gap: 1rem;
  }
  
  nav li {
    margin: 0;
  }
  
  nav a {
    font-size: 0.8rem;
  }
  
  .hero {
    padding: 9rem 0 6rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .feature-image {
    height: 300px;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .content-columns {
    gap: 1.5rem;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .security-features,
  .testimonials-container {
    gap: 1.5rem;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  /* Header and Navigation */
  header {
    padding: 0.8rem 0;
  }
  
  header .container {
    flex-direction: row;
    text-align: left;
  }
  
  /* Mobile Navigation Toggle */
  .mobile-nav-toggle {
    display: block;
  }
  
  /* Mobile Navigation */
  nav#main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--primary-color);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    overflow-y: auto;
  }
  
  nav#main-nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  
  nav li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }
  
  /* Hero Section */
  .hero {
    padding: 7rem 0 4rem;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  /* Typography */
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  /* Layout */
  .container {
    width: 95%;
    padding: 0 10px;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .content-columns {
    flex-direction: column;
    gap: 2rem;
  }
  
  /* Images */
  .image-feature {
    margin-bottom: 2rem;
  }
  
  .feature-image {
    height: 250px;
  }
  
  .image-gallery {
    flex-direction: column;
    gap: 1rem;
  }
  
  .gallery-image {
    height: 200px;
    margin-bottom: 0;
  }
  
  /* Components */
  .security-features,
  .testimonials-container,
  .metrics-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .security-item,
  .testimonial,
  .metric {
    min-width: 100%;
  }
  
  .featured-testimonial {
    padding: 1.5rem;
  }
  
  .value-item {
    padding: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .value-item h3 {
    font-size: 1.2rem;
  }
  
  /* Timeline */
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-marker {
    left: 12px;
  }
  
  .timeline-content {
    padding: 1rem;
  }
  
  /* Buttons */
  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.8rem;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero h2 {
    font-size: 1.6rem;
  }
  
  .subheading {
    font-size: 1rem;
  }
  
  .feature-image {
    height: 200px;
  }
  
  .gallery-image {
    height: 150px;
  }
  
  .security-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 2rem;
  }
  
  .value-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .value-item p {
    margin: 0.5rem 0;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}
