/* Main CSS for ICTY Static Preview */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-md-4 {
  width: 33.333%;
  padding: 0 15px;
}

.col-md-6 {
  width: 50%;
  padding: 0 15px;
}

.col-md-8 {
  width: 66.667%;
  padding: 0 15px;
}

.col-md-12 {
  width: 100%;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .col-md-4, .col-md-6, .col-md-8, .col-md-12 {
    width: 100%;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a3c6e;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 20px;
}

a {
  color: #0056b3;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #003d7a;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  margin-right: 10px;
  margin-bottom: 10px;
}

.btn-primary {
  background-color: #0056b3;
  color: #fff;
}

.btn-primary:hover {
  background-color: #003d7a;
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #0056b3;
  color: #0056b3;
}

.btn-outline:hover {
  background-color: #0056b3;
  color: #fff;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #5a6268;
  color: #fff;
}

/* Header */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.site-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-title {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.2;
}

.site-title a {
  color: #1a3c6e;
  text-decoration: none;
}

.site-description {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1;
}

/* Navigation */
.main-navigation {
  display: flex;
  align-items: center;
}

.main-menu {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
}

.main-menu li {
  margin-left: 15px;
  position: relative;
}

.main-menu a {
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 10px 5px;
  display: block;
  transition: color 0.3s;
  white-space: nowrap;
}

.main-menu a:hover {
  color: #0056b3;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .main-menu.active {
    display: flex;
  }
  
  .main-menu li {
    margin: 10px 0;
  }
}

/* Stock Ticker - Removed as requested
.stock-ticker-container {
  background-color: #f0f8ff;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.stock-ticker {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.stock-symbol {
  margin-right: 15px;
  color: #ffffff;
}

.stock-price {
  margin-right: 15px;
}

.stock-change {
  padding: 3px 8px;
  border-radius: 3px;
}

.stock-change.positive {
  background-color: #d4edda;
  color: #155724;
}

.stock-change.negative {
  background-color: #f8d7da;
  color: #721c24;
}
*/

/* Hero Section */
.hero-section {
  position: relative;
  padding: 60px 0;
  background-color: #1a3c6e;
  color: #fff;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
}

/* Real Estate Hero Section */
.real-estate-hero {
  background-color: #663399; /* Purple */
}

/* Health & Wellness Hero Section */
.health-wellness-hero {
  background-color: #2e8b57; /* Green */
}

/* AI Innovations Hero Section */
.ai-innovations-hero {
  background-color: #b22222; /* Red */
}

/* Investor Resources Hero Section */
.investor-resources-hero {
  background-color: #1a3c6e; /* Blue - unchanged */
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #6c757d;
}

/* Opt-in Section */
.opt-in-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.opt-in-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.opt-in-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.opt-in-description {
  margin-bottom: 25px;
  color: #6c757d;
}

.opt-in-form input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 1rem;
}

/* Business Divisions */
.division-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.division-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.division-icon {
  font-size: 2.5rem;
  color: #0056b3;
  margin-bottom: 20px;
}

/* Latest News Section */
.latest-news-section {
  background-color: #f8f9fa;
}

.post-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.post-card-thumbnail {
  height: 200px;
  overflow: hidden;
}

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

.post-card:hover .post-card-thumbnail img {
  transform: scale(1.05);
}

.post-card-content {
  padding: 25px;
}

.post-card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.post-card-meta {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
}

.post-card-excerpt {
  margin-bottom: 20px;
}

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

.mt-4 {
  margin-top: 25px;
}

/* Investor CTA Section */
.investor-cta-section {
  background-color: #1a3c6e;
  color: #fff;
}

.investor-cta {
  text-align: center;
  padding: 20px;
}

.investor-cta h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.investor-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background-color: #1a3c6e;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-widgets {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-widget {
  width: 25%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-widget-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #0056b3;
}

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

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-widget ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 20px;
}

.footer-menu li {
  margin: 0 15px;
}

.footer-menu li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu li a:hover {
  color: #fff;
}

.copyright {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.disclaimer {
  font-size: 0.8rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-widget {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .footer-widget {
    width: 100%;
  }
  
  .footer-menu {
    flex-direction: column;
  }
  
  .footer-menu li {
    margin: 5px 0;
  }
}

/* Sales Letter Page */
.sales-letter {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 40px 0;
}

.sales-letter-header {
  text-align: center;
  margin-bottom: 40px;
}

.sales-letter-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.sales-letter-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
}

.sales-letter-section {
  margin-bottom: 40px;
}

.sales-letter-section-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1a3c6e;
}

.sales-letter-section ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.sales-letter-section li {
  margin-bottom: 10px;
}

.sales-letter-cta {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
}

.sales-letter-cta-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.sales-letter-cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Blog Post */
.entry-header {
  margin-bottom: 30px;
}

.entry-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.entry-meta {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.post-thumbnail {
  margin-bottom: 30px;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.entry-content {
  margin-bottom: 40px;
}

.entry-content h2 {
  margin-top: 40px;
}

.entry-content p {
  margin-bottom: 20px;
}

.entry-content ul, .entry-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.entry-content li {
  margin-bottom: 10px;
}

.entry-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

/* Sidebar */
.sidebar {
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget {
  margin-bottom: 40px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.widget-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #0056b3;
}

.widget ul {
  list-style: none;
}

.widget ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* YouTube Scripts */
.youtube-script {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 40px 0;
}

.youtube-script-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.youtube-script-icon {
  font-size: 2rem;
  color: #ff0000;
  margin-right: 20px;
}

.youtube-script-title {
  font-size: 2rem;
  margin: 0;
}

.youtube-script-content {
  margin-bottom: 40px;
}

.script-cta {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
}

/* Resources */
.resource-item {
  display: flex;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.resource-icon {
  font-size: 2rem;
  color: #0056b3;
  margin-right: 30px;
}

.resource-content {
  flex: 1;
}

.resource-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.resource-meta {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.resource-type {
  background-color: #e9f5ff;
  color: #0056b3;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 10px;
}

.resource-description {
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .resource-item {
    flex-direction: column;
  }
  
  .resource-icon {
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 25px;
}

.mb-4 {
  margin-bottom: 25px;
}

.offset-md-2 {
  margin-left: 16.666%;
}

@media (max-width: 768px) {
  .offset-md-2 {
    margin-left: 0;
  }
}


/* Enhanced Contact Form Styles */
.contact-form-enhanced {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group-half {
  flex: 1;
}

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

.contact-form-enhanced label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.contact-form-enhanced input[type="text"],
.contact-form-enhanced input[type="email"],
.contact-form-enhanced select,
.contact-form-enhanced textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #f8f9fa;
}

.contact-form-enhanced input[type="text"]:focus,
.contact-form-enhanced input[type="email"]:focus,
.contact-form-enhanced select:focus,
.contact-form-enhanced textarea:focus {
  outline: none;
  border-color: #0056b3;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
  background-color: #fff;
}

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

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-form-enhanced {
    padding: 25px;
  }
}


/* Form Message Styles */
.form-message {
    margin: 15px 0;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Enhanced form styles for better UX */
.opt-in-form form {
    position: relative;
}

.opt-in-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.opt-in-form input[type="email"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

