:root {
  --primary-blue: #0066ff;
  --gold-accent: #fdb913;
  --cream-accent: #fff8e7;
  --muted-gray: #f5f5f5;
  --dark-text: #111827;
  --light-text: #6b7280;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--white);
  color: var(--dark-text);
}

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

/* Premium Header */
.premium-header {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-main {
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-logo {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), #3385ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 22px;
  position: relative;
  overflow: hidden;
}

.brand-logo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-text);
}

.brand-name span {
  color: var(--primary-blue);
}

.brand-tagline {
  font-size: 12px;
  color: var(--light-text);
  letter-spacing: 1px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 30px;
}

.nav-item {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

.nav-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

.nav-item:hover {
  color: var(--primary-blue);
}

.nav-item:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #f8faff 0%,
    var(--cream-accent) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--primary-blue);
  position: relative;
}

.hero-content h1 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: var(--gold-accent);
  bottom: 5px;
  left: 0;
  opacity: 0.3;
  border-radius: 4px;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 30px;
  line-height: 1.6;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-accent);
  color: var(--dark-text);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 30px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.why-choose {
  margin-top: 40px;
}

.why-choose h3 {
  margin-bottom: 20px;
  color: var(--dark-text);
}

.features-list {
  list-style: none;
  color: var(--light-text);
}

.features-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-list i {
  color: var(--primary-blue);
  margin-right: 10px;
}

/* Search Widget */
.search-widget {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.search-tabs-widget {
  display: flex;
  margin-bottom: 30px;
  background: var(--muted-gray);
  border-radius: 12px;
  padding: 5px;
}

.search-tab {
  flex: 1;
  padding: 15px;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--light-text);
  border-radius: 8px;
  transition: all 0.3s;
}

.search-tab.active {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-label {
  font-weight: 600;
  color: var(--dark-text);
}

.form-input,
.form-select {
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: border 0.3s;
  width: 100%;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.search-button {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 18px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.search-button:hover {
  background: #0052cc;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: var(--white);
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.section-subtitle {
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-item {
  background: var(--cream-accent);
  padding: 40px 30px;
  border-radius: 15px;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  margin-bottom: 25px;
}

.feature-item h3 {
  margin-bottom: 15px;
  color: var(--dark-text);
  font-size: 1.5rem;
}

.feature-item p {
  color: var(--light-text);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--muted-gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--light-text);
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: var(--dark-text);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.footer-brand-name {
  font-size: 24px;
  font-weight: 700;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-address {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-address i {
  margin-right: 10px;
  color: var(--gold-accent);
}

.footer-column h4 {
  color: var(--gold-accent);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .search-widget {
    padding: 25px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 22px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
