/* Milari Investment UG - Professional Navy-Gold Design */

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

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

:root {
  --navy: #0a2540;
  --navy-light: #1a3a5a;
  --gold: #d4af37;
  --gold-light: #f0d77e;
  --gold-dark: #b8941f;
  --white: #ffffff;
  --gray-light: #f7f9fc;
  --gray: #6b7280;
  --text: #1f2937;
  --shadow: rgba(10, 37, 64, 0.1);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: var(--navy);
  font-weight: 700;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Professional Dark Nav */
header {
  background-color: var(--navy);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.logo {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: 0.5px;
}

.logo-icon {
  width: 42px;
  height: 42px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s;
}

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

nav a:hover::after {
  width: 100%;
}

/* Hero - Full Width with Overlay */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--white);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--white);
}

.hero-accent {
  color: var(--gold);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.btn-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--navy);
}

/* Sections */
section {
  padding: 6rem 0;
}

.section-light {
  background-color: var(--gray-light);
}

.section-white {
  background-color: var(--white);
}

.section-navy {
  background-color: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4.5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.section-navy .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.8;
}

.section-navy .section-subtitle {
  color: rgba(255,255,255,0.85);
}

/* Service Cards - Professional Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.service-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.4s ease;
  border-left: 4px solid var(--gold);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(10, 37, 64, 0.15);
  border-left-width: 6px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.service-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--navy);
}

.service-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
}

/* Testimonials - Sidebar Style */
.testimonial-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.testimonial-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.testimonial-intro p {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.8;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial {
  background-color: rgba(255,255,255,0.05);
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  backdrop-filter: blur(10px);
}

.stars {
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
}

.testimonial-text {
  color: rgba(255,255,255,0.95);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--gold-light);
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat-card {
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: 'Lora', serif;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
}

.cta-section h2 {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  color: white;
}

.cta-section p {
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer - Dark Professional */
footer {
  background-color: #0a1929;
  color: #9ca3af;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.footer-section p,
.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1.8;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--navy);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  padding: 2rem;
  z-index: 1000;
  display: none;
  color: var(--white);
}

.cookie-banner.show {
  display: block;
}

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.cookie-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Legal Pages */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background-color: var(--white);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.legal-page h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 1rem;
}

.legal-page h2 {
  font-size: 1.875rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.legal-page h3 {
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.legal-page p {
  margin-bottom: 1.25rem;
  line-height: 1.9;
  color: var(--text);
}

.legal-page ul {
  margin-bottom: 1.25rem;
  padding-left: 2.5rem;
  line-height: 1.9;
  color: var(--text);
}

.legal-page a {
  color: var(--navy);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-container {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    gap: 1.5rem;
    font-size: 0.875rem;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}
