/* Landing Page Specific Styles - Concept A: The Modern Diplomat */

:root {
  --color-navy: #0e1d34;
  --color-gold: #0d42ff;
  --color-white: #ffffff;
  --color-glass: rgba(255, 255, 255, 0.1);
  --color-glass-border: rgba(255, 255, 255, 0.2);
  --font-heading: 'EB Garamond', serif;
  --font-body: 'EB Garamond', serif;
}

/* Reset & Base */
body {
  font-family: var(--font-body);
  color: var(--color-navy);
  background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.6) 100%);
  z-index: -1;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.btn-premium {
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-premium:hover {
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Counters Section */
.counters-section {
  padding: 80px 0;
  background: var(--color-navy);
  color: var(--color-white);
}

.counter-card {
  background: transparent;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.counter-card:hover {
  transform: translateY(-10px);
}

.counter-icon {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 20px;
  display: block;
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.counter-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Featured Services / Cards */
.services-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.service-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--color-gold);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--color-navy);
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background: var(--color-navy);
  color: var(--color-white);
  text-align: center;
}

.testimonial-item {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.testimonial-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--color-gold);
  margin-bottom: 20px;
  object-fit: cover;
}

.testimonial-item h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--color-gold);
}

.testimonial-item h4 {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 20px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-item p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  font-family: var(--font-heading);
}

.quote-icon-left, .quote-icon-right {
  color: var(--color-gold);
  font-size: 1.5rem;
  opacity: 0.5;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .counter-card {
    margin-bottom: 20px;
  }
}
