:root {
  --primary-color: #FFB800;
  --secondary-color: #5A5AEC;
  --bg-color: #ffffff;
  --surface-color: rgba(0, 0, 0, 0.03);
  --text-primary: #1a1a2e;
  --text-secondary: #555555;
  --font-family: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Glassmorphism Utilities */
.glass {
  background: var(--surface-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.logo span {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

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

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

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

.btn {
  padding: 10px 25px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(240, 0, 105, 0.3);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  position: relative;
  background: url('../images/hero.png') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeIn 1s ease-out;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(to right, var(--text-primary), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* Features Section */
.features {
  padding: 100px 10%;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.section-title span {
  color: var(--primary-color);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  padding: 40px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(240, 0, 105, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

.card-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* About / Showcase Section */
.showcase {
  padding: 100px 10%;
  display: flex;
  align-items: center;
  gap: 50px;
}

.showcase-text {
  flex: 1;
}

.showcase-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.showcase-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.showcase-img {
  flex: 1;
  position: relative;
}

.showcase-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.showcase-img img:hover {
  transform: scale(1.02);
}

/* Products/Services */
.products {
  padding: 100px 10%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 25px;
}

.product-info h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
}

/* Footer */
footer {
  background: #f8f9fa;
  padding: 80px 10% 30px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
  text-align: left;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col p, .footer-col a {
  color: var(--text-secondary);
  display: block;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  border-radius: 50%;
}

.social-links a:hover {
  background: var(--primary-color);
  color: #fff;
}

.copyright {
  color: var(--text-secondary);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .showcase { flex-direction: column; }
}

@media (max-width: 768px) {
  header { padding: 20px; }
  
  header .btn { display: none; } /* Hide contact button on mobile */
  
  .menu-toggle { 
    display: block; 
    order: -1; /* Hamburger on left */
  }
  
  .logo {
    order: 1; /* Logo on right */
  }
  
  nav ul { 
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 20px;
    right: auto;
    width: 200px;
    background: linear-gradient(135deg, var(--secondary-color), #8B8BEB);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 20px;
    text-align: left;
    border-radius: 15px;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  nav ul.active {
    transform: translateY(0);
    opacity: 1;
    z-index: 999;
  }
  
  nav ul li { margin: 10px 0; }
  
  nav ul li a {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 5px 0;
    display: block;
  }
  
  .hero { padding: 0 5%; }
  .hero h1 { font-size: 2.5rem; }
}

/* Plan Features List */
.plan-features {
  list-style: none;
  margin: 15px 0 25px;
  padding: 0;
}

.plan-features li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.plan-features li i {
  margin-right: 10px;
}

.plan-features li .fa-check {
  color: #00d084;
}

.plan-features li .fa-xmark {
  color: #cf2e2e;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Comparison Table */
.comparison-table-wrapper {
  max-width: 1000px;
  margin: 50px auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.comparison-table-wrapper h2 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 2rem;
  border: 2px solid #e2e8f0;
  display: inline-block;
  padding: 10px 30px;
  margin-left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-radius: 5px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  border: 1px solid #e2e8f0;
  color: #555;
}

.comparison-table th {
  background-color: var(--secondary-color);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.comparison-table th:first-child {
  text-align: right;
}

.comparison-table td:first-child {
  text-align: right;
  font-weight: 600;
  color: #333;
}

.comparison-table .check {
  color: #00d084;
}

.comparison-table .cross {
  color: #cf2e2e;
}

.comparison-table a.btn {
  padding: 10px 30px;
  font-size: 1rem;
}

/* Custom Language Selector */
.lang-selector {
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
}

.custom-select {
  position: relative;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 110px;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.custom-select-trigger:hover {
  background-color: #f8f9fa;
  border-color: rgba(0, 0, 0, 0.25);
}

.custom-select.active .custom-select-trigger {
  border-color: #ffbe0b; /* Golden/yellow border as highlighted in user's screenshot */
  box-shadow: 0 0 0 3px rgba(255, 190, 11, 0.15);
}

.custom-select-trigger .lang-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  vertical-align: middle;
}

.custom-select-trigger span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  vertical-align: middle;
}

.custom-select-trigger .select-arrow {
  font-size: 0.75rem;
  color: #555555;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.custom-select.active .select-arrow {
  transform: rotate(180deg);
}

/* Options dropdown container */
.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
  margin-top: 2px;
}

.custom-select.active .custom-select-options {
  display: flex;
}

.custom-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.custom-option:hover {
  background-color: #f5f5f5;
}

.custom-option.selected {
  background-color: #007bff; /* Blue highlighting color from the screenshot */
  color: #ffffff !important;
}

.custom-option.selected .lang-flag {
  border: 1px solid rgba(255,255,255,0.2);
}

.custom-option.selected:hover {
  background-color: #0069d9;
}

.custom-option .lang-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  vertical-align: middle;
}

.custom-option span {
  vertical-align: middle;
}

/* LawCost Pricing UI Styles - Light Theme */
.lawcost-pricing-container {
    background-color: #ffffff;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    padding: 50px 20px;
    border-radius: 15px;
    margin-top: 40px;
    box-sizing: border-box;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.lc-toggle-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.lc-toggle-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-secondary);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lc-toggle-btn.active, .lc-toggle-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(43, 8, 126, 0.3);
}

.lc-header-title {
    text-align: center;
    margin-bottom: 50px;
}

.lc-badge {
    background-color: rgba(255, 42, 109, 0.15);
    color: #ff2a6d;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(255, 42, 109, 0.3);
    display: inline-block;
    margin-bottom: 15px;
}

.lc-badge-blue {
    background-color: rgba(0, 195, 255, 0.15);
    color: #00c3ff;
    border-color: rgba(0, 195, 255, 0.3);
}

.lc-header-title h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.lc-header-title p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.lc-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.lc-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.lc-card-highlight {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(43, 8, 126, 0.1);
}

.lc-ribbon {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.lc-ribbon-cyan { background: #00c3ff; color: #0b101e; }
.lc-ribbon-yellow { background: #ffbe0b; color: #0b101e; }
.lc-ribbon-purple { background: #8B8BEB; }

.lc-card-header h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
}

.lc-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.lc-price span {
    font-size: 1.5rem;
    margin-right: 5px;
}

.lc-price small {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 5px;
}

.lc-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    min-height: 40px;
}

.lc-desc-small {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    min-height: 45px;
}

.lc-desc-small strong {
    color: var(--text-primary);
}

.lc-bonus-box {
    background: rgba(0, 208, 132, 0.1);
    color: #00d084;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 208, 132, 0.2);
}

.lc-breakdown {
    background: rgba(0,0,0,0.03);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.05);
}

.lc-breakdown strong {
    font-size: 1.5rem;
    color: #00d084;
}

.lc-breakdown strong span {
    font-size: 0.8rem;
}

.lc-breakdown div {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 700;
}

.lc-breakdown div small {
    font-weight: 400;
}

.lc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.lc-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.lc-features li i {
    color: #00d084;
    margin-right: 10px;
    margin-top: 3px;
}

.lc-features li strong {
    color: var(--text-primary);
    margin-right: 4px;
}

.lc-action-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.lc-action-btn:hover {
    background: rgba(43, 8, 126, 0.05);
    border-color: var(--primary-color);
}

.lc-btn-cyan {
    background: var(--primary-color);
    border: none;
    color: #ffffff;
}

.lc-btn-cyan:hover {
    background: var(--secondary-color);
    box-shadow: 0 0 15px rgba(43, 8, 126, 0.3);
}

@media (max-width: 768px) {
    .lc-toggle-container {
        flex-direction: column;
        align-items: center;
    }
    .lc-header-title h3 { font-size: 2rem; }
    .lc-cards-grid { grid-template-columns: 1fr; }
}


