/* GoldNest Connect - Professional Landing Page Styles */

:root {
  --primary: #fbbf24;
  --primary-dark: #f59e0b;
  --secondary: #111827;
  --text: #374151;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --success: #10b981;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-lg: rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Test Banner */
.test-banner {
  background: #fef3c7;
  color: #92400e;
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
}

/* Professional Header */
.professional-header {
  background: var(--white);
  box-shadow: 0 2px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.brand-name{
  font-size:1.25rem;
  font-weight:800;
  color:var(--secondary);
  letter-spacing:0.01em;
}

.brand-tagline{
  font-size:0.8rem;
  font-weight:600;
  color:var(--text-light);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-fallback {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

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

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary-dark);
}

.btn-header-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  padding: 0.6rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--secondary);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
  padding: 5rem 2rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.highlight {
  color: var(--primary-dark);
  position: relative;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

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

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

.btn-hero {
  font-size: 1.1rem;
  padding: 1.3rem 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.hero-image {
  animation: fadeInRight 0.8s ease;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px var(--shadow-lg);
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* Benefits Section */
.benefits-section {
  background: var(--white);
  padding: 5rem 0;
}

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

.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px var(--shadow-lg);
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  font-weight: 700;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

/* Solutions Section - Card System */
.solutions-section {
  background: var(--bg-light);
  padding: 5rem 0;
}

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

.solution-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s;
  cursor: pointer;
}

.solution-card.selected{
  outline: 3px solid rgba(245, 158, 11, 0.6);
  box-shadow: 0 18px 60px rgba(245, 158, 11, 0.25);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.solution-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 2rem;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
  font-weight: 700;
}

.card-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.card-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  font-size: 1rem;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

/* Solution Details Modal */
.solution-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.solution-modal.show {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--border);
  transform: rotate(90deg);
}

#modal-body h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

#modal-body .modal-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

#modal-body .modal-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

#modal-body .modal-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

#modal-body .modal-features li:last-child {
  border-bottom: none;
}

/* Pricing Section */
.pricing-section {
  background: var(--white);
  padding: 5rem 0;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  padding: 0.5rem 2rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border);
}

.pricing-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  font-weight: 800;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--secondary);
}

.price-period {
  font-size: 1.2rem;
  color: var(--text-light);
}

.pricing-tagline {
  color: var(--text-light);
  font-size: 1rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 0.75rem 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}

.features-list li:last-child {
  border-bottom: none;
}

.feature-na {
  color: var(--text-light);
  opacity: 0.6;
}

.pricing-cta {
  text-align: center;
}

.btn-pricing {
  display: inline-block;
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.btn-pricing-primary {
  background: linear-gradient(135deg, var(--secondary), #1f2937);
  color: var(--white);
}

.btn-pricing-primary:hover {
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.4);
}

/* Setup Fee Notice */
.setup-fee-notice {
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.setup-fee-card {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #fbbf24;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
}

.setup-fee-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.setup-fee-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
  font-weight: 800;
}

.setup-fee-content p {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.setup-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.setup-features li {
  color: var(--text);
  font-size: 0.95rem;
  padding: 0.25rem 0;
}

/* Savings Badge */
.savings-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.original-price {
  font-size: 1.2rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.savings-text {
  background: #10b981;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Feature Highlights */
.feature-highlights {
  margin-top: 4rem;
  padding: 3rem 0;
  background: var(--bg-light);
  border-radius: 20px;
}

.highlights-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--secondary);
  font-weight: 800;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-lg);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
  font-weight: 700;
}

.highlight-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Comparison Table */
.comparison-section {
  margin-top: 4rem;
}

.comparison-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--secondary);
  font-weight: 800;
}

.comparison-table-wrapper {
  overflow-x: auto;
  background: var(--white);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 20px var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th {
  background: var(--bg-light);
  padding: 1.2rem;
  text-align: left;
  font-weight: 700;
  color: var(--secondary);
  border-bottom: 2px solid var(--border);
}

.comparison-table td {
  padding: 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.comparison-table tr:hover {
  background: var(--bg-light);
}

.comparison-table td:first-child {
  font-weight: 600;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
  padding: 5rem 0;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.lead-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

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

.plan-selector {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-option {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.plan-option:hover {
  border-color: var(--primary);
  background: var(--bg-light);
}

.plan-option input[type="radio"] {
  margin-right: 1rem;
  width: auto;
}

.plan-label {
  flex: 1;
  font-size: 1rem;
}

.btn-submit {
  width: 100%;
  margin-top: 1rem;
  padding: 1.3rem;
  font-size: 1.1rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* Professional Footer */
.professional-footer {
  background: var(--secondary);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
}

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

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  /* Show actual brand logo (avoid invert filter which can look like a white block) */
  filter: none;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 10px;
  border-radius: 12px;
  object-fit: contain;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}

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

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-links span {
  color: rgba(255, 255, 255, 0.3);
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }

  .professional-header {
    padding: 0.75rem 0;
  }

  .header-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-section {
    padding: 3rem 1rem;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 7vw, 2.6rem);
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-image img {
    border-radius: 16px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pricing-container {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2.25rem 1rem;
  }

  .brand-name{
    font-size: 1.05rem;
  }
  .brand-tagline{
    display:none;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.1rem);
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .logo-img {
    height: 42px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
