:root {
  --primary: #0F172A;
  --accent: #FBBF24;
  --bg: #F8FAFC;
  --card-bg: #FFFFFF;
  --text: #334155;
  --text-light: #64748B;
  --border: #E2E8F0;
  --font-main: 'Inter', sans-serif;
  --radius: 16px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

h1, h2, h3, h4 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-img {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-weight: 600;
  color: var(--text);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-contact {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
}

.nav-contact a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text);
  font-weight: 600;
}

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

.lang-switch {
  display: flex;
  gap: 0.25rem;
  background: var(--bg);
  padding: 4px;
  border-radius: 8px;
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--card-bg);
  color: var(--primary);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.85)), url('images/hero-bg.jpg') center/cover no-repeat;
  color: white;
}

.hero h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: #CBD5E1;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.125rem;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 6px -1px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.5);
}

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

section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.5px;
}

.help p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  color: var(--text);
}

.consider > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
}

/* Grid & Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  border-color: rgba(251, 191, 36, 0.5); /* Accent with opacity */
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--bg);
  padding-bottom: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.card p {
  color: var(--text);
}

.card ul {
  list-style-type: none;
}

.card ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.card ul li::before {
  content: '→';
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

/* Listings */
.listings {
  background-color: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.empty-listings {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem;
  background: var(--bg);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 1.125rem;
  font-style: italic;
  border: 2px dashed var(--border);
}

.listing-card {
  display: block;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.listing-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.listing-card:hover img {
  transform: scale(1.05);
}

.listing-info {
  padding: 1.5rem;
  background: var(--card-bg);
}

.listing-info h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--primary);
}

.inline-icon {
  height: 1.25em;
  vertical-align: middle;
  margin: 0 0.15rem;
  display: inline-block;
  transform: translateY(-2px);
}

/* Pricing */
.pricing-card {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card ul li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
  padding-left: 2rem;
  font-size: 1.125rem;
}

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

/* Footer */
footer {
  background-color: var(--primary);
  color: white;
  padding: 5rem 0 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-inner .logo {
  color: white;
}

.contact-info h3,
.company-info h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-info p,
.company-info p {
  margin-bottom: 0.75rem;
  color: #CBD5E1;
  font-size: 1.125rem;
}

.contact-info a {
  color: white;
  font-weight: 600;
}

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

/* Responsive */
@media (max-width: 992px) {
  .header-inner {
    flex-direction: column;
    height: auto;
    padding: 1.5rem 0;
    gap: 1.5rem;
  }
  
  .header-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-contact {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  section {
    padding: 4rem 0;
  }
}
