:root {
  /* Punjab Color Scheme - Green & Gold Theme */
  --primary-green: #2d7a3e;
  --primary-green-dark: #1e5229;
  --primary-green-light: #3d9a52;
  --accent-gold: #d4af37;
  --accent-gold-dark: #b8941f;
  --accent-gold-light: #e8c85a;
  
  --bg-dark: #0a1612;
  --bg-darker: #050c09;
  --bg-light: #f8fdf9;
  --text-light: #e8f5eb;
  --text-dark: #1a3d28;
  --text-muted: #7a9d88;
  
  --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
  --gradient-hero: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: var(--text-dark);
  min-height: 100vh;
  background: var(--bg-light);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero-section {
  background: var(--gradient-hero);
  padding: 100px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(45, 122, 62, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--bg-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.domain-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.domain-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-gold);
  padding: 16px 32px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--accent-gold);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.domain-name:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.ampersand {
  font-size: 28px;
  color: var(--text-muted);
  font-weight: 300;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 62, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-item {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: 700;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Cards */
.card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(45, 122, 62, 0.1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 122, 62, 0.15);
}

.card .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.benefit {
  background: linear-gradient(135deg, rgba(45, 122, 62, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
  padding: 16px 24px;
  border-radius: 8px;
  color: var(--primary-green);
  font-weight: 600;
  border-left: 4px solid var(--accent-gold);
}

/* Market Section */
.market-section {
  background: linear-gradient(135deg, rgba(45, 122, 62, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.stat-card {
  background: white;
  padding: 40px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary-green);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trends-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.trend-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trend-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-green);
}

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

.market-cta {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 48px;
  font-style: italic;
}

/* Domain Cards */
.domains-section {
  background: white;
}

.domain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.domain-card {
  background: linear-gradient(135deg, rgba(45, 122, 62, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid rgba(45, 122, 62, 0.2);
  transition: all 0.3s ease;
}

.domain-card.featured {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--accent-gold);
  transform: scale(1.02);
}

.domain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 122, 62, 0.2);
}

.domain-card.featured:hover {
  transform: translateY(-8px) scale(1.02);
}

.domain-card-header h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.domain-card.featured .domain-card-header h3 {
  color: var(--accent-gold);
}

.domain-tag {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--bg-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.domain-description {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.domain-card.featured .domain-description {
  color: rgba(255, 255, 255, 0.9);
}

.domain-features {
  list-style: none;
  margin-bottom: 32px;
}

.domain-features li {
  padding: 12px 0;
  color: var(--text-dark);
  font-size: 15px;
  border-bottom: 1px solid rgba(45, 122, 62, 0.1);
}

.domain-card.featured .domain-features li {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.btn-domain {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
}

.domain-card.featured .btn-domain {
  background: var(--gradient-gold);
  color: var(--bg-dark);
}

.bundle-offer {
  background: var(--gradient-hero);
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  color: white;
}

.bundle-offer h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--accent-gold);
}

.bundle-offer p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-bundle {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  font-weight: 700;
}

/* Use Cases */
.use-case-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 3px solid var(--primary-green);
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 122, 62, 0.15);
  border-top-color: var(--accent-gold);
}

.use-case-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.use-case-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.use-case-card p {
  color: var(--text-muted);
  font-size: 15px;
}

.ideal-footer {
  text-align: center;
  margin-top: 48px;
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
}

/* Contact Section */
.contact-section {
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 24px;
}

.contact-item {
  margin-bottom: 24px;
}

.contact-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
}

.contact-value:hover {
  color: var(--primary-green);
}

.contact-note {
  margin-top: 32px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(45, 122, 62, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-muted);
  border-left: 4px solid var(--accent-gold);
}

/* Form */
.contact-form {
  background: linear-gradient(135deg, rgba(45, 122, 62, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(45, 122, 62, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 2px solid rgba(45, 122, 62, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 62, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
}

.alert-success {
  background: rgba(45, 122, 62, 0.1);
  color: var(--primary-green);
  border: 1px solid var(--primary-green);
}

.alert-error {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 1px solid #dc2626;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-hero);
  text-align: center;
  color: white;
}

.cta-badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.2);
  color: #fca5a5;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(220, 38, 38, 0.5);
}

.cta-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.cta-feature {
  background: rgba(45, 122, 62, 0.1);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(45, 122, 62, 0.2);
}

.cta-feature h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--accent-gold);
}

.cta-feature p {
  color: var(--text-muted);
  font-size: 15px;
}

.cta-final {
  background: rgba(45, 122, 62, 0.05);
  padding: 48px;
  border-radius: 16px;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.cta-final h3 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--accent-gold);
}

.cta-final > p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cta-trust {
  font-size: 14px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--bg-darker);
  padding: 24px 0;
  text-align: center;
  color: var(--text-muted);
}

.footer p {
  font-size: 14px;
}

.footer a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
}

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

/* Responsive */
@media (max-width: 968px) {
  .hero-title {
    font-size: 42px;
  }
  
  .domain-name {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .domain-cards {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 32px;
  }
  
  .domain-names {
    flex-direction: column;
    gap: 16px;
  }
  
  .ampersand {
    transform: rotate(90deg);
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .section {
    padding: 48px 0;
  }
}
