@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin: 0 0 15px;
}

p {
  margin-bottom: 10px;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

#formLoader img {
  width: 70px !important;
  height: 70px !important;
  min-width: 70px !important;
}

.mb-5 {
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

/* Header */
header.web_header {
  text-align: center;
  padding: 12px;
  position: absolute;
  z-index: 99;
  width: 100%;
  top: 0;
}

header.web_header .logo {
  max-width: 300px;
  height: auto;
}

/* Hero Banner */
section.hero_banner_section {
  padding: 300px 0 80px;
  text-align: center;
  position: relative;
  background-color: #f9f9f9;
}

.hero_banner_section h1 {
  font-size: 65px;
}

.hero_banner_section .banner_content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 0 auto;
}

.hero_banner_section .banner_content h3 {
  font-size: 40px;
}

/* Platform Wrap */
.platform_wrap {
  margin: 35px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.platform_wrap h4 {
  font-size: 30px;
  width: 100%;
  margin-bottom: 25px;
}

.platform_wrap .single_platform {
  padding: 6px;
  max-width: 200px;
}

.platform_wrap .single_platform img {
  max-height: 55px;
  display: block;
  margin: 0 auto;
}

/* Common Title */
.common_title {
  font-size: 46px;
}

/* Key Features */
.key_features_row .single_module h3 {
  font-size: 28px;
}

.key_features_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -15px;
}

.key_features_row .single_module {
  width: calc(33.33% - 30px);
  padding: 30px;
  border-radius: 10px;
  margin: 15px;
  background: #f8e8cb;
}

.key_features_row .single_module .icon_box {
  margin: 0 0 15px;
}

.key_features_row .single_module .icon_box img {
  max-width: 100px;
  max-height: 100px;
  opacity: 0.8;
}

.key_features_row .single_module p {
  font-size: 20px;
}

/* Accordion */
ul.accordion {
  list-style: none;
  padding: 0;
}

ul.accordion .inner {
  overflow: hidden;
  display: none;
  padding: 20px;
}

ul.accordion li.accordion-item {
  margin: 0 0 15px;
  border: 1px solid #f8e8cb;
  border-radius: 5px;
  overflow: hidden;
}

ul.accordion li.accordion-item a.toggle {
  width: 100%;
  display: block;
  background: #f8e8cb;
  color: #000;
  padding: 14px 20px;
  transition: background 0.3s ease;
  font-weight: 600;
  font-size: 22px;
}

/* App Launch Section */
.appLaunch_section {
  background: #f8e8cb;
}

.app_launch_row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0 0;
  align-items: center;
}

.app_launch_row .image_block {
  width: 370px;
  border-radius: 10px;
  overflow: hidden;
  padding: 8px;
  background: #000;
}

.app_launch_row .image_block video {
  border-radius: 4px;
}

.app_launch_row .image_block img {
  display: block;
  border-radius: 8px;
}

.app_launch_row .content_block {
  width: calc(100% - 450px);
}

.app_launch_row form {
  padding: 30px;
  border: 1px solid #6c3a23;
  border-radius: 5px;
}

.app_launch_row .form_field {
  margin: 0 0 15px;
}

.app_launch_row .form_field label {
  font-size: 18px;
  display: block;
  margin: 0 0 2px;
}

.app_launch_row .form_field .input {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.app_launch_row .submit_form {
  margin: 30px 0 0;
}

.app_launch_row .submit_form .submit_btn {
  background: #6c3a23;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 50px;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  width: 100%;
}

.app_launch_row .form_teal_dark .submit_form .submit_btn {
  background: #1c3845;
}

.app_launch_row .form_teal_dark form {
  border-color: #1c3845;
  position: relative;
}

/* Timestamp Display */
.timestamp-display {
  margin: 10px 0 0 !important;
  font-size: 16px;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  color: #000;
  position: relative;
  opacity: 0.7;
}

.timestamp-display:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #FFFFFF;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Form Loader */
div#formLoader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

div#formLoader img {
  background: #fff;
  border-radius: 10px;
  display: block;
  box-shadow: 0 0 22px rgb(0 0 0 / 50%);
}

/* Thank You Section */
.thankYou_section .success_message {
  margin: 50px 0 0;
}

.hero_banner_section.thankYou_section {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* Misc */
.color-brown {
  color: #6c3a23;
}

body.landing-wrap {
  color: #333;
}

a {
  color: #1c3845;
}

.appLaunch_section p img {
  max-width: 20px;
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 5px;
}

/* Footer */
footer {
  padding: 20px 0;
}

footer .text-center {
  font-size: 16px;
}

footer .footer_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}

.footer_links ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}

.footer_links ul li {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid;
  line-height: 1;
}

.footer_links ul li a {
  text-decoration: underline;
}

.footer_links ul li:first-child {
  border: 0;
  padding: 0;
  margin: 0;
}

/* Follow / Social */
.follow_wrap {
  margin: 0 0 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding: 0 0 15px;
}

.follow_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 10px 0 0;
}

.follow_wrap ul li {
  margin: 0 8px 0;
}

.follow_wrap ul li img {
  display: block;
}

video {
  display: block;
  max-width: 100%;
}

.legal_content ul,
.legal_content ol {
  padding: 0 0 0 30px;
  margin: 0 0 20px;
}

/* Responsive: Tablet */
@media (max-width: 980px) {
  .hero_banner_section h1 {
    font-size: 52px;
  }

  .hero_banner_section .banner_content h3 {
    font-size: 30px;
  }

  .common_title {
    font-size: 36px;
  }

  .key_features_row .single_module {
    width: calc(50% - 30px);
  }

  .app_launch_row .image_block {
    max-width: 350px;
    width: 100%;
    margin: 0 auto 30px;
  }

  .app_launch_row .content_block {
    width: 100%;
  }
}

/* Responsive: Mobile */
@media (max-width: 600px) {
  .hero_banner_section h1 {
    font-size: 36px;
  }

  .hero_banner_section .banner_content h3 {
    font-size: 24px;
  }

  body {
    font-size: 18px;
  }

  .platform_wrap h4 {
    font-size: 20px;
  }

  .platform_wrap .single_platform {
    padding: 2px;
    width: 50%;
    max-width: 150px;
  }

  .platform_wrap .single_platform img {
    max-height: 46px;
  }

  section.hero_banner_section {
    padding: 270px 0 50px;
  }

  header.web_header .logo {
    max-width: 286px;
  }

  .common_title {
    font-size: 30px;
  }

  .key_features_row .single_module {
    width: calc(100% - 30px);
  }

  ul.accordion li.accordion-item a.toggle {
    padding: 10px 20px;
    font-size: 20px;
    letter-spacing: 0px;
  }

  .app_launch_row form {
    padding: 20px 20px 30px;
  }

  footer .footer_info {
    flex-direction: column;
  }

  .footer_links {
    margin: 0 0 10px;
  }
}

/* Additional CSS for Improved RE Investor Hive Landing Page */
/* Add these styles to your existing style.css */

/* ============================================
   SKIP LINK FOR ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   IMPROVED ACCORDION STYLES
   ============================================ */
.accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.accordion-item h3 {
    margin: 0;
}

.accordion-toggle {
    width: 100%;
    background: #fff;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: background-color 0.2s ease;
}

.accordion-toggle:hover {
    background-color: #f5f5f5;
}

.accordion-toggle:focus {
    outline: 2px solid #007bff;
    outline-offset: -2px;
    background-color: #f0f8ff;
}

.accordion-title {
    flex: 1;
    padding-right: 1rem;
}

.accordion-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #666;
    transition: transform 0.3s ease;
}

/* Horizontal line */
.accordion-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Vertical line */
.accordion-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* When expanded, rotate the vertical line to hide it */
.accordion-toggle[aria-expanded="true"] .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    padding: 0 1.5rem;
    overflow: hidden;
}

.accordion-content[hidden] {
    display: none;
}

.accordion-content p {
    margin: 0 0 1.25rem 0;
    line-height: 1.6;
}

.accordion-content p:last-child {
    margin-bottom: 1.25rem;
}

/* ============================================
   TEXT ALIGNMENT UTILITIES
   ============================================ */
.about-text {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ============================================
   IMPROVED FOCUS STATES
   ============================================ */
a:focus,
button:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* ============================================
   LOADING OPTIMIZATION
   ============================================ */
img[loading="lazy"] {
    content-visibility: auto;
}

/* ============================================
   SEMANTIC HTML IMPROVEMENTS
   ============================================ */
article.single_module {
    display: block;
}

/* ============================================
   FOOTER IMPROVEMENTS
   ============================================ */
.footer_links ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.footer_links a {
    text-decoration: none;
    color: inherit;
}

.footer_links a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE IMPROVEMENTS
   ============================================ */
@media (max-width: 768px) {
    .accordion-toggle {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-content {
        padding: 0 1rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .footer_links ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .skip-link,
    .platform_wrap,
    footer {
        display: none;
    }
    
    .accordion-content[hidden] {
        display: block !important;
    }
    
    .accordion-toggle[aria-expanded="false"] + .accordion-content {
        display: block !important;
    }
}

/***New Additions*******************/

/* Additional CSS for Improved RE Investor Hive Landing Page */
/* Add these styles to your existing style.css */

/* ============================================
   SKIP LINK FOR ACCESSIBILITY
   ============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   PLATFORM SECTION SPACING
   ============================================ */
.platform_wrap h4 {
    margin-bottom: 1.5rem;
}

.single_platform {
    margin-bottom: 1rem;
}

/* ============================================
   IMPROVED ACCORDION STYLES
   ============================================ */
.accordion {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.accordion-item h3 {
    margin: 0;
}

.accordion-toggle {
    width: 100%;
    background: #f5e6d3; /* Tan background */
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: background-color 0.2s ease;
}

.accordion-toggle:hover {
    background-color: #ead9c2; /* Slightly darker tan on hover */
}

.accordion-toggle:focus {
    outline: 2px solid #007bff;
    outline-offset: -2px;
    background-color: #e8d4b8; /* Darker tan for focus */
}

.accordion-title {
    flex: 1;
    padding-right: 1rem;
}

.accordion-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #666;
    transition: transform 0.3s ease;
}

/* Horizontal line */
.accordion-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Vertical line */
.accordion-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* When expanded, rotate the vertical line to hide it */
.accordion-toggle[aria-expanded="true"] .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    padding: 0 1.5rem;
    overflow: hidden;
}

.accordion-content[hidden] {
    display: none;
}

.accordion-content p {
    margin: 0 0 1.25rem 0;
    line-height: 1.6;
}

.accordion-content p:last-child {
    margin-bottom: 1.25rem;
}

/* ============================================
   TEXT ALIGNMENT UTILITIES
   ============================================ */
.about-text {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ============================================
   IMPROVED FOCUS STATES
   ============================================ */
a:focus,
button:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* ============================================
   LOADING OPTIMIZATION
   ============================================ */
img[loading="lazy"] {
    content-visibility: auto;
}

/* ============================================
   SEMANTIC HTML IMPROVEMENTS
   ============================================ */
article.single_module {
    display: block;
}

/* ============================================
   FOOTER IMPROVEMENTS
   ============================================ */
.footer_links ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.footer_links a {
    text-decoration: none;
    color: inherit;
}

.footer_links a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE IMPROVEMENTS
   ============================================ */
@media (max-width: 768px) {
    .accordion-toggle {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-content {
        padding: 0 1rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .footer_links ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .skip-link,
    .platform_wrap,
    footer {
        display: none;
    }
    
    .accordion-content[hidden] {
        display: block !important;
    }
    
    .accordion-toggle[aria-expanded="false"] + .accordion-content {
        display: block !important;
    }
}

