/* Index2 Page Styles - Dedicated CSS */

/* Color Palette matching tikitotcove.com Coming Soon */
:root {
  --primary-orange: #f5a623;
  --primary-sand: #f4e4d4;
  --primary-teal: #4db8d8;
  --secondary-orange: #ff9900;
  --text-dark: #333333;
  --text-light: #888888;
  --bg-sand-light: #fffaf6;
  --bg-sand-warm: #fdf5ed;
  --accent-orange: #e89b3c;
}

/* Global body background - warm sand/beige */
body {
  background: linear-gradient(135deg, #fef9f4 0%, #f9f0e8 50%, #fef9f4 100%);
  background-attachment: fixed;
  background-color: #fef9f4;
}

/* Promo Banner v2 */
.promo-banner-v2 {
  background: linear-gradient(135deg, #fef9f4 0%, #f9f0e8 100%);
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.promo-text-v2 {
  color: #333;
  font-weight: 600;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.separator-dot {
  color: #ccc;
  margin: 0 4px;
}

/* Header Section */
.header-section {
  background: linear-gradient(135deg, #fef9f4 0%, #f9f0e8 100%);
  padding: 50px 20px;
  color: #333;
  position: relative;
}

.container-xl {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.header-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}

.header-logo {
  text-align: center;
}

.logo-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.header-text h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 10px 0;
  color: var(--primary-orange);
  letter-spacing: -1px;
}

.header-subtitle {
  font-size: 24px;
  color: var(--primary-orange);
  margin: 0 0 15px 0;
  font-weight: 300;
}

.header-description {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
  max-width: 600px;
}

/* Hero Section v3 */
.hero-section-v3 {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #fef9f4 0%, #f9f0e8 100%);
  position: relative;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image-v3 {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-orange);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.hero-content-v3 {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.hero-heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 30px 0;
  line-height: 1.2;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-box {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fef9f4;
  border-radius: 8px;
  border-left: 4px solid var(--primary-orange);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.feature-box:hover {
  background: #fffdf9;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.1);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 5px 0;
}

.feature-content p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.feature-note {
  font-size: 13px;
  color: var(--text-light);
  margin: 20px 0;
  font-style: italic;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary-orange);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.35);
  text-decoration: none;
  color: white;
  background: #e89b3c;
}

.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-orange);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--primary-orange);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
}

/* Services Section v3 */
.services-section-v3 {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #fef9f4 0%, #f9f0e8 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-title-v3 {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-orange);
  margin: 0 0 15px 0;
}

.section-subtitle-v3 {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card-v3 {
  padding: 30px;
  background: #fef9f4;
  border-radius: 12px;
  border: 2px solid #f0e6d8;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.service-card-v3:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.15);
  transform: translateY(-5px);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #f5a623 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.2);
}

.service-icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.service-card-v3 h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px 0;
}

.service-card-v3 p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.learn-more {
  color: var(--primary-orange);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.learn-more:hover {
  color: #e89b3c;
  transform: translateX(5px);
}

/* CTA Section v2 */
.cta-section-v2 {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fef9f4 0%, #f9f0e8 100%);
  text-align: center;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 15px 0;
  color: var(--primary-orange);
}

.cta-content p {
  font-size: 18px;
  color: var(--text-light);
  margin: 0 0 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--primary-orange);
  color: white;
}

.cta-buttons .btn-primary:hover {
  background: #e89b3c;
}

.cta-buttons .btn-secondary {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.cta-buttons .btn-secondary:hover {
  background: var(--primary-orange);
  color: white;
}

/* Portal Section */
.portal-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fef9f4 0%, #f9f0e8 100%);
  position: relative;
}

.portal-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.portal-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.portal-image img {
  width: 100%;
  height: auto;
  display: block;
}

.portal-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-orange);
  margin: 0 0 10px 0;
}

.portal-content > p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0 0 30px 0;
}

.portal-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.portal-features li {
  font-size: 15px;
  color: var(--text-dark);
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
}

.portal-features li:before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: 700;
  font-size: 18px;
}

/* Unicode Icon Styling */
.unicode-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

.phone-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  filter: invert(1);
}

.copyright-icon {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  display: inline-block;
}

.learn-more-arrow {
  width: 18px;
  height: 18px;
  margin-left: 4px;
  vertical-align: middle;
  display: inline-block;
  filter: invert(0) brightness(0.7);
  transition: transform 0.3s ease;
}

.learn-more:hover .learn-more-arrow {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portal-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .header-text h1 {
    font-size: 36px;
  }

  .hero-heading {
    font-size: 28px;
  }

  .section-title-v3 {
    font-size: 32px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .portal-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .promo-text-v2 {
    font-size: 12px;
    flex-direction: column;
    gap: 4px;
  }

  .separator-dot {
    display: none;
  }

  .header-section {
    padding: 40px 15px;
  }

  .header-logo {
    margin-bottom: 20px;
  }

  .logo-image {
    max-width: 150px;
  }

  .header-text h1 {
    font-size: 28px;
  }

  .header-subtitle {
    font-size: 18px;
  }

  .header-description {
    font-size: 14px;
  }

  .hero-section-v3 {
    padding: 60px 15px;
  }

  .hero-heading {
    font-size: 24px;
  }

  .services-section-v3 {
    padding: 60px 15px;
  }

  .section-title-v3 {
    font-size: 28px;
  }

  .services-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .service-card-v3 {
    padding: 20px;
  }

  .cta-section-v2 {
    padding: 60px 15px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }

  .portal-section {
    padding: 60px 15px;
  }

  .portal-content h2 {
    font-size: 24px;
  }

  .portal-content > p {
    font-size: 14px;
  }

  .portal-features li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .promo-text-v2 {
    font-size: 11px;
  }

  .header-section {
    padding: 30px 15px;
  }

  .logo-image {
    max-width: 120px;
  }

  .header-text h1 {
    font-size: 24px;
  }

  .header-subtitle {
    font-size: 16px;
  }

  .header-description {
    font-size: 13px;
  }

  .hero-section-v3 {
    padding: 40px 15px;
  }

  .hero-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .feature-highlights {
    gap: 15px;
  }

  .feature-box {
    padding: 15px;
    gap: 15px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .feature-content h4 {
    font-size: 14px;
  }

  .feature-content p {
    font-size: 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 14px;
  }

  .services-section-v3 {
    padding: 40px 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title-v3 {
    font-size: 22px;
  }

  .section-subtitle-v3 {
    font-size: 13px;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card-v3 {
    padding: 18px;
  }

  .cta-section-v2 {
    padding: 40px 15px;
  }

  .cta-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .cta-content p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .portal-section {
    padding: 40px 15px;
  }

  .portal-content h2 {
    font-size: 20px;
  }

  .portal-content > p {
    font-size: 13px;
  }

  .portal-features li {
    font-size: 12px;
    padding-left: 25px;
  }
}
