:root {
  --primary-color: #00aaff;
  --dark-bg: #1a1f27;
  --light-bg: #f4f4f4;
  --text-color: #1a1f27;
  --accent-color: #00bfff;
  --subtle-bg: #1a1f27;
  --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ========= Meet the Owner ========= */
.meet-the-owner {
  padding: 2rem 1rem;
}

.meet-the-owner h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.owner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-top: 1.5rem;
}

.owner-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid #ccc;
  display: block;
}

.owner-bio {
  max-width: 600px;
}

.owner-bio h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.owner-info h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.owner-info p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.owner-quote {
  display: block;
  margin-top: 0.5rem;
  font-style: italic;
  color: #666;
}

#owner.section-container {
  background-color: #ffffff;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ========= Base ========= */
body {
  background-color: var(--light-bg);
  color: var(--text-color);
  margin: 0;
  font-family: Arial, sans-serif;
}

/* ========= Typography ========= */
.tagline {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* ========= Buttons ========= */
.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #009acd;
  transform: scale(1.05);
}

.cta-button:active {
  background-color: #0077cc;
  transform: translateY(1px);
}

/* ========= Header ========= */
.site-header,
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark-bg);
  color: white;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--primary-color);
}

.logo-area,
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img,
.logo img {
  height: 60px;
  width: auto;
  max-height: 150px;
  margin-right: 15px;
}

.company-name h1 {
  font-size: 50px;
  color: #b0b0b0;
  white-space: nowrap;
}

.nav-bar ul,
#navigation-bar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-bar a,
#navigation-bar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-bar a:hover,
#navigation-bar ul li a:hover {
  color: var(--primary-color);
}

/* ========= Hero ========= */
.hero-section {
  background: linear-gradient(to bottom right, var(--dark-bg), #1a1f27);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
}

/* ========= Form ========= */
.form-container,
.contact-container {
  background-color: white;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  padding: 30px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: var(--card-shadow);
}

.form-container h2,
.contact-container h2,
.contact-container h3 {
  text-align: center;
  font-size: 28px;
  color: var(--dark-bg);
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="address"],
textarea,
select {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  box-sizing: border-box;
  font-family: inherit;
  resize: vertical;
}

input[readonly] {
  background-color: #e9ecef;
  border-color: #ddd;
  color: #777;
}

/* Submit Button (shared) */
.submit-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: #0077cc;
  transform: translateY(-3px);
}

.submit-btn:active {
  background-color: #005fa3;
  transform: translateY(1px);
}

/* ========= Service Cards & Pricing ========= */
.section-container {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--light-bg);
}

.section-container h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.services-overview {
  background-color: #f8f9fa;
  padding: 3rem 2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e6eaf0;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 16px rgba(20,30,40,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(20,30,40,.12);
  border-color: #d7dee7;
}

.pricing-card h3 {
  font-size: 1.1rem;
  line-height: 1.25;
  margin: 0 0 .35rem;
  color: #1a1f27;
}

.pricing-card p {
  margin: 0 0 .6rem;
  color: #455266;
}

.pricing-card small { color: #6b7a90; }

.pricing-card .price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: .25rem 0 .75rem;
}

/* ===== Fixed Button Layout ===== */
.pricing-card .button-row {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.75rem;
}

.pricing-card .cta-button {
  width: auto !important;
  min-width: 130px;
  text-align: center;
  flex: 0 0 auto;
}

.pricing-card .cta-button:first-child {
  background-color: var(--primary-color);
}

.pricing-card .cta-button:last-child {
  background-color: #007acc;
}

@media (max-width: 768px) {
  .pricing-card .button-row {
    flex-direction: column;
  }
  .pricing-card .cta-button {
    width: 100% !important;
  }
}

/* Premium (Tech Concierge) */
.pricing-card.premium {
  border-color: #dbefff;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

/* ========= Highlight Box ========= */
.highlight-box {
  font-weight: bold;
  background-color: #e6f2ff;
  padding: 10px 12px;
  border-left: 4px solid #0077cc;
  border-radius: 4px;
  margin-bottom: 10px;
  color: #004c70;
  font-size: .95rem;
}

/* ========= Comparison Table ========= */
.responsive-table {
  overflow-x: auto;
  margin-top: 1rem;
}

.responsive-table table {
  width: 100%;
  border-collapse: collapse;
}

.responsive-table th,
.responsive-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.responsive-table thead {
  background-color: #f2f2f2;
  font-weight: bold;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem auto;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: center;
  border: 1px solid #ddd;
}

.comparison-table thead {
  background-color: #1a1f27;
  color: #ffffff;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.comparison-table tbody tr:hover {
  background-color: #eef7ff;
}

.comparison-table th {
  font-weight: bold;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
}

/* ========= Footer ========= */
.footer-container {
  background-color: var(--dark-bg);
  color: white;
  padding: 1rem;
  text-align: center;
}

.footer-container .social-links a {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-container .social-links a:hover {
  text-decoration: underline;
}

/* ========= Responsive ========= */
@media (max-width: 1024px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .hamburger {
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
  }

  .hamburger div {
    width: 30px;
    height: 3px;
    background-color: #b0b0b0;
  }

  #navigation-bar ul {
    display: none;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  #navigation-bar ul.active {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 31, 39, 0.6);
    z-index: 1000;
    flex-direction: column;
    gap: 30px;
  }

  .pricing-model,
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 400px;
  }

  .form-container,
  .contact-container {
    padding: 20px;
    width: 90%;
  }
}

html {
  scroll-behavior: smooth;
}

/* Fade-in Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Owner section layout */
.owner-profile {
  flex-direction: row;
  align-items: flex-start;
}

.owner-info {
  flex: 1;
}
