/* /var/www/html/georegula/client/src/styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #000;
  overflow-x: hidden;
  background: #fff;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}


/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Prevent header overflow on small screens */
header, nav {
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

nav a {
  margin-left: 0;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
  padding: 8px 10px;
  border-radius: 8px;
}

nav a:hover {
  color: #3e5aff;
  background: rgba(62, 90, 255, 0.06);
}

.nav-btn {
  background: #3e5aff;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: #2a45e6;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(62, 90, 255, 0.2);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
}

.hero-logo {
  height: 70px;
  width: auto;
  margin: 0 auto 18px auto;
  display: block;
  border-radius: 6px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
  line-height: 1.2;
}

.hero .tagline {
  font-size: 32px;
  color: #3e5aff;
  font-weight: 600;
  margin-bottom: 14px;
}

/* Primary tagline (“Global Tax Handled”): half size + ~15% wider */
.hero .tagline--primary {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.18em;   /* widened look without overflow */
  text-transform: uppercase;
  display: inline-block;
  transform-origin: center;
  margin-bottom: 14px;
  color: #708090;
}


.hero p {
  font-size: 20px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.coming-soon {
  display: inline-block;
  background: #3e5aff;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-bg-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(62, 90, 255, 0.1);
  top: -200px;
  right: -200px;
  z-index: 1;
}

.hero-bg-circle-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(62, 90, 255, 0.05);
  bottom: -150px;
  left: -150px;
  z-index: 1;
}

/* Parallax Sections */
.parallax-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 50px;
  position: relative;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  z-index: 2;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.section-subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* API Section */
.api-section {
  background: #ffffff;
}

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

.api-card {
  background: #f8f9ff;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid #e8ebff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.api-card:hover {
  transform: translateY(-10px);
  border-color: #3e5aff;
  box-shadow: 0 20px 40px rgba(62, 90, 255, 0.2);
}

.api-card h3 {
  font-size: 28px;
  color: #3e5aff;
  margin-bottom: 15px;
}

.api-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.api-badge {
  display: inline-block;
  background: #3e5aff;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}

/* Mock API Display */
.api-mockup {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 30px;
  border-radius: 15px;
  margin-top: 40px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  overflow-x: auto;
  position: relative;
}

.api-mockup::before {
  content: 'API ENDPOINT';
  position: absolute;
  top: 10px;
  right: 20px;
  background: #3e5aff;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 10px;
}

.api-mockup .comment {
  color: #6a9955;
}

.api-mockup .string {
  color: #ce9178;
}

.api-mockup .number {
  color: #b5cea8;
}

.api-mockup .key {
  color: #9cdcfe;
}

/* Platform Section */
.platform-section {
  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

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

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(62, 90, 255, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3e5aff 0%, #5a7aff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: white;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #000;
}

.feature-card p {
  color: #555;
  line-height: 1.6;
}

/* Platform Mockup */
.platform-mockup {
  margin-top: 60px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.mockup-header {
  background: #3e5aff;
  color: white;
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup-nav {
  display: flex;
  gap: 20px;
}

.mockup-nav-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
}

.mockup-body {
  background: #f8f9ff;
  padding: 30px;
  min-height: 300px;
  border-radius: 0 0 10px 10px;
}

.mockup-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 4px solid #3e5aff;
}

/* Countries Section */
.countries-section {
  background: #ffffff;
  min-height: 100vh;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 20px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #f8f9ff;
  border: 2px solid #e8ebff;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.country-item:hover {
  transform: translateY(-3px);
  border-color: #3e5aff;
  box-shadow: 0 12px 24px rgba(62, 90, 255, 0.12);
}

.country-flag {
  font-size: 24px;
  line-height: 1;
}

.country-name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/* Contact Section */
.contact-section {
  background: #ffffff;
  min-height: 100vh;
}

.contact-form {
  max-width: 600px;
  margin: 50px auto 0;
  background: #f8f9ff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(62, 90, 255, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #000;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e8ebff;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3e5aff;
  box-shadow: 0 0 0 3px rgba(62, 90, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.spam-protection {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 2px solid #3e5aff;
}

.spam-protection label {
  font-weight: 600;
  color: #3e5aff;
  margin-bottom: 10px;
  display: block;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: #3e5aff;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #2a45e6;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(62, 90, 255, 0.3);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}

/* Footer */
footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

footer p {
  margin-bottom: 10px;
}

footer a {
  color: #3e5aff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 12px 14px;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;   /* KEY: stack logo + nav */
  }

  .logo-img {
    height: 36px;
  }

  nav {
    width: 100%;
    justify-content: flex-start; /* nav starts at left */
    gap: 6px;
  }

  nav a {
    font-size: 13px;
    padding: 6px 8px;
  }

  .nav-btn {
    width: 100%;              /* KEY: button gets its own line */
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 9px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero .tagline {
    font-size: 24px;
  }

  .hero .tagline--primary {
    font-size: 14px;
  }

  .section-title {
    font-size: 36px;
  }

  .parallax-section {
    padding: 60px 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .hero-logo {
    height: 56px;
  }

  .countries-grid {
    grid-template-columns: 1fr;
  }
}


/*# sourceMappingURL=app.763ce0c9c806250370c3.css.map*/