html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  color: #333;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

main {
  flex: 1;
}

/* General Styles */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Links */
a {
  color: #1e90ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #0d5dcc;
  text-decoration: underline;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  margin: 0;
}

h2 {
  font-size: 28px;
  margin: 30px 0 15px 0;
}

h3 {
  font-size: 22px;
  margin: 25px 0 15px 0;
}

h4 {
  font-size: 18px;
  margin: 0;
}

h5 {
  font-size: 16px;
  margin: 15px 0 10px 0;
  font-weight: 600;
}

p {
  line-height: 1.6;
  color: #666;
  margin: 0 0 15px 0;
}

ul {
  margin: 0 0 15px 0;
  padding-left: 20px;
}

ul li {
  margin: 8px 0;
  color: #666;
}

/* Navigation */
nav.navbar {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 20px;
}

nav.navbar .navbar-brand {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-right: 40px;
  padding: 0;
}

nav.navbar .nav-link {
  color: #333 !important;
  font-size: 14px;
  margin: 0 12px;
  padding: 8px 0 !important;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  transition: all 0.3s ease;
}

nav.navbar .nav-link:hover {
  border-bottom: 2px solid #1e90ff;
  color: #1e90ff !important;
}

nav.navbar .phone-link {
  color: #333 !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
  margin-left: auto;
  margin-right: 0;
  white-space: nowrap;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

nav.navbar .phone-link:hover {
  color: #1e90ff !important;
  text-decoration: none !important;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* Promo Banner */
.promo-banner {
  background-color: #afeeee;
  padding: 12px 20px;
  text-align: center;
}

.promo-text {
  color: white;
  font-weight: bold;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/images/hero-image.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin: 20px 0;
  font-family: 'Special Elite', cursive;
  color: white;
}

.hero-subtitle {
  font-size: 36px;
  font-weight: 400;
  margin: 30px 0;
  color: white;
}

.hero-features {
  margin: 40px 0;
  font-size: 18px;
}

.feature {
  margin: 10px 0;
  color: white;
}

.hero-skillset {
  font-size: 20px;
  margin: 20px 0;
  color: white;
}

.btn-register {
  display: inline-block;
  padding: 16px 40px;
  background-color: #ffcb47;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.btn-register:hover {
  background-color: #ffc220;
  color: #333;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Enhanced Hero Section v2 - Split Layout */
.hero-section-v2 {
  padding: 0;
  min-height: 600px;
  display: flex;
  align-items: stretch;
  position: relative;
}

.hero-split-container {
  display: flex;
  width: 100%;
  min-height: 600px;
}

.hero-left {
  flex: 1;
  background: linear-gradient(135deg, #e8f4f8 0%, #d1f0f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Circular Overlay Container */
.hero-circle-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.hero-circle-content {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(175, 238, 238, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-circle-title {
  font-size: 36px;
  font-weight: 400;
  color: #333;
  margin: 0 0 20px 0;
  font-family: 'Courier New', 'Courier', monospace;
  letter-spacing: 1px;
  line-height: 1.3;
}

.hero-circle-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  margin: 0 0 25px 0;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.hero-features-list {
  width: 100%;
  margin: 20px 0;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.feature-number {
  font-weight: 400;
  margin-right: 12px;
  color: #333;
  min-width: 25px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.feature-text {
  flex: 1;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.hero-skillset {
  font-size: 13px;
  color: #666;
  margin: 18px 0 25px 0;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.btn-register-v2 {
  display: inline-block;
  padding: 12px 35px;
  background-color: #1a1a1a;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-register-v2:hover {
  background-color: #333;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Yellow Services Section v2 */
.services-section-v2 {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f4e937 0%, #ffeb3b 100%);
  text-align: center;
}

.section-title-v2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #0099cc;
  font-family: 'Courier New', monospace;
}

.section-subtitle-v2 {
  text-align: center;
  font-size: 16px;
  color: #333;
  margin: 0 0 50px 0;
  font-weight: 500;
}

.services-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.service-button {
  display: block;
  padding: 18px 30px;
  background-color: #333;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-align: center;
  border: 3px solid #333;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-button:hover {
  background-color: white;
  color: #333;
  text-decoration: none;
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-button span {
  display: block;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Responsive Design for Hero v2 */
@media (max-width: 1024px) {
  .hero-circle-content {
    width: 350px;
    height: 350px;
    padding: 30px;
  }

  .hero-circle-title {
    font-size: 26px;
  }

  .hero-circle-subtitle {
    font-size: 14px;
    margin: 0 0 20px 0;
  }

  .services-section-v2 {
    padding: 60px 20px;
  }

  .section-title-v2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-split-container {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left,
  .hero-right {
    flex: 1;
    min-height: 400px;
  }

  .hero-circle-content {
    width: 300px;
    height: 300px;
    padding: 25px;
  }

  .hero-circle-title {
    font-size: 22px;
  }

  .hero-circle-subtitle {
    font-size: 13px;
    margin: 0 0 15px 0;
  }

  .feature-item {
    font-size: 12px;
    margin: 8px 0;
  }

  .btn-register-v2 {
    padding: 10px 30px;
    font-size: 14px;
  }

  .section-title-v2 {
    font-size: 28px;
    margin: 0 0 10px 0;
  }

  .section-subtitle-v2 {
    font-size: 14px;
    margin: 0 0 40px 0;
  }

  .service-button {
    padding: 15px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-left,
  .hero-right {
    min-height: 300px;
  }

  .hero-circle-content {
    width: 250px;
    height: 250px;
    padding: 20px;
  }

  .hero-circle-title {
    font-size: 18px;
    margin: 0 0 10px 0;
  }

  .hero-circle-subtitle {
    font-size: 12px;
    margin: 0 0 15px 0;
  }

  .hero-features-list {
    margin: 15px 0;
  }

  .feature-item {
    font-size: 11px;
    margin: 6px 0;
  }

  .hero-skillset {
    font-size: 12px;
    margin: 10px 0 15px 0;
  }

  .btn-register-v2 {
    padding: 10px 25px;
    font-size: 13px;
  }

  .section-title-v2 {
    font-size: 22px;
  }

  .section-subtitle-v2 {
    font-size: 13px;
    margin: 0 0 30px 0;
  }

  .services-buttons-grid {
    gap: 15px;
  }

  .service-button {
    padding: 12px 15px;
    font-size: 13px;
    border-radius: 40px;
  }
}

/* Main Content */
.main-content {
  padding: 80px 20px;
  background: white;
}

.container-lg {
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #333;
}

.page-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0 0 60px 0;
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #333;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin: 0 0 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #333;
}

.service-card p {
  color: #666;
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.6;
}

.service-price {
  color: #999;
  font-style: italic;
  margin: 10px 0 0 0;
}

.service-card:hover {
  transform: translateY(-4px);
}

/* Services List */
.services-list {
  margin: 60px 0;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 4px;
}

.services-list h3 {
  font-size: 26px;
  margin: 0 0 30px 0;
}

.services-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  padding: 20px;
  margin: 0 0 15px 0;
  background: white;
  border-left: 4px solid #1e90ff;
  border-radius: 4px;
}

.services-list h5 {
  margin: 0 0 10px 0;
  color: #333;
}

.services-list p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/* Call-to-Action Section */
.cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: #f0f8ff;
  border-radius: 4px;
}

.cta-section h3 {
  font-size: 28px;
  margin: 0 0 15px 0;
}

.cta-section p {
  font-size: 16px;
  margin: 0 0 30px 0;
}

.btn-phone {
  display: inline-block;
  padding: 12px 30px;
  background-color: #1e90ff;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  margin: 0 15px 0 0;
  transition: all 0.3s ease;
}

.btn-phone:hover {
  background-color: #0d5dcc;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Announcement Section */
.announcement-section {
  padding: 60px 20px;
  background-color: #f0f8ff;
}

.announcement-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 30px 0;
  color: #333;
}

.announcement-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.announcement-image {
  width: 100%;
}

.announcement-image img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.announcement-text h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #333;
}

.announcement-text p {
  color: #666;
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.6;
}

.btn-learn-more {
  display: inline-block;
  padding: 12px 30px;
  background-color: #1e90ff;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background-color: #0d5dcc;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Employment Grid */
.employment-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.employment-main {
  display: flex;
  flex-direction: column;
}

.employment-main h2 {
  margin-top: 0;
}

.job-posting {
  padding: 30px;
  background: #f9f9f9;
  border-radius: 4px;
  margin-bottom: 30px;
  border-left: 4px solid #1e90ff;
}

.job-posting h3 {
  margin: 0 0 15px 0;
  font-size: 22px;
}

.job-posting p {
  margin: 0 0 15px 0;
}

.job-posting h5 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.job-posting ul {
  padding-left: 20px;
  margin: 0 0 15px 0;
}

.job-posting li {
  margin: 8px 0;
}

.employment-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefits-box,
.apply-box {
  padding: 30px;
  background: #f9f9f9;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.benefits-box h3,
.apply-box h3 {
  margin: 0 0 20px 0;
  font-size: 22px;
}

.benefit-item {
  margin: 0 0 20px 0;
}

.benefit-item strong {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.benefit-item p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.apply-box p {
  margin: 0 0 15px 0;
  font-size: 14px;
}

.btn-apply {
  display: block;
  padding: 12px 20px;
  background-color: #1e90ff;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.btn-apply:hover {
  background-color: #0d5dcc;
  text-decoration: none;
  transform: translateY(-2px);
}

.contact-info {
  text-align: center;
  font-size: 13px;
  margin: 0;
}

.contact-info a {
  display: block;
  font-weight: 700;
  color: #1e90ff;
  margin-top: 8px;
}

/* Last Updated */
.last-updated {
  color: #999;
  font-size: 12px;
  margin: 0 0 30px 0;
}

/* Cookie Notice */
.cookie-notice {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

.cookie-notice h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: white;
}

.cookie-notice p {
  margin: 0 0 15px 0;
  font-size: 14px;
  color: #ddd;
}

.btn-accept {
  padding: 10px 20px;
  background-color: #ffcb47;
  color: #333;
  border: none;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-accept:hover {
  background-color: #ffc220;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
  margin-top: 60px;
}

footer h5 {
  margin-bottom: 20px;
  color: white;
  font-size: 18px;
}

footer a {
  color: #ffcb47;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

footer a:hover {
  text-decoration: underline;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.copyright {
  border-top: 1px solid #555;
  padding-top: 20px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
}

.copyright p {
  margin: 0;
  color: #aaa;
  font-size: 12px;
}

.powered-by {
  font-size: 11px;
  color: #888;
  margin-top: 10px;
}

.powered-by a {
  color: #ffcb47;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav.navbar {
    padding: 8px 20px;
  }
  
  nav.navbar .navbar-brand {
    font-size: 16px;
    margin-right: 20px;
  }
  
  nav.navbar .nav-link {
    font-size: 13px;
    margin: 0 8px;
  }
  
  nav.navbar .phone-link {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
  
  .hero-section {
    padding: 80px 20px;
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 24px;
  }
  
  .main-content {
    padding: 40px 15px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .announcement-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .announcement-section {
    padding: 40px 15px;
  }
  
  footer .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-notice {
    padding: 15px 10px;
  }
  
  .employment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-section a {
    display: block;
    margin: 10px 0;
  }
  
  .btn-phone {
    margin: 0 0 10px 0;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .promo-text {
    font-size: 11px;
  }
  
  .hero-section {
    padding: 60px 15px;
    min-height: 350px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .btn-register {
    padding: 12px 30px;
    font-size: 16px;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .page-subtitle {
    margin-bottom: 30px;
  }
}

/* ===== COMING SOON PAGE STYLES ===== */

/* Reset and base styles for coming soon */
.coming-soon-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, #fff8f3 0%, #ffe8d6 100%);
  min-height: 100vh;
}

.coming-soon-content {
  text-align: center;
  max-width: 600px;
  position: relative;
  z-index: 10;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo Styling */
.logo-wrapper {
  margin-bottom: 40px;
}

.coming-soon-logo {
  width: 300px;
  height: 300px;
  max-width: 100%;
  filter: drop-shadow(0 10px 25px rgba(209, 145, 73, 0.2));
  animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Typography for Coming Soon */
.coming-soon-title {
  font-size: 48px;
  font-weight: 700;
  color: #d19149;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.coming-soon-subtitle {
  font-size: 28px;
  font-weight: 400;
  color: #f88b19;
  margin-bottom: 30px;
  font-family: 'Special Elite', cursive;
}

.coming-soon-description {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Email Signup */
.email-signup {
  margin: 40px 0;
  padding: 40px 30px;
  background: rgba(248, 139, 25, 0.08);
  border-radius: 12px;
  border: 2px solid rgba(248, 139, 25, 0.15);
}

.signup-text {
  font-size: 14px;
  color: #d19149;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.signup-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: 2px solid #f88b19;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: white;
  color: #333;
}

.email-input:focus {
  outline: none;
  border-color: #d19149;
  box-shadow: 0 0 0 4px rgba(209, 145, 73, 0.1);
}

.email-input::placeholder {
  color: #bbb;
}

.signup-button {
  padding: 14px 30px;
  background: linear-gradient(135deg, #f88b19 0%, #d19149 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 140px;
}

.signup-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(248, 139, 25, 0.3);
}

.signup-button:active {
  transform: translateY(-1px);
}

/* Contact Info */
.contact-info {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(209, 145, 73, 0.2);
}

.contact-info p {
  font-size: 15px;
  color: #666;
}

.phone-link {
  color: #f88b19;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.phone-link:hover {
  color: #d19149;
  text-decoration: underline;
}

/* Accent Circles */
.accent-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.accent-circle-1 {
  width: 400px;
  height: 400px;
  background: #f88b19;
  top: -100px;
  left: -100px;
}

.accent-circle-2 {
  width: 350px;
  height: 350px;
  background: #d19149;
  bottom: -50px;
  right: -50px;
}

/* Coming Soon Responsive Design */
@media (max-width: 768px) {
  .coming-soon-title {
    font-size: 36px;
  }

  .coming-soon-subtitle {
    font-size: 22px;
  }

  .coming-soon-description {
    font-size: 15px;
  }

  .email-signup {
    padding: 30px 20px;
  }

  .signup-form {
    flex-direction: column;
  }

  .email-input,
  .signup-button {
    width: 100%;
    min-width: unset;
  }

  .accent-circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
  }

  .accent-circle-2 {
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
  }
}

@media (max-width: 480px) {
  .coming-soon-logo {
    width: 120px;
    height: 120px;
  }

  .coming-soon-title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .coming-soon-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .coming-soon-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .email-signup {
    padding: 20px 15px;
    margin: 30px 0;
  }

  .signup-text {
    font-size: 12px;
  }

  .contact-info p {
    font-size: 13px;
  }
}

/* Unicode Icon Styling */
.unicode-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  filter: invert(0.2);
}

.service-card .unicode-icon,
.benefit-item .unicode-icon {
  margin-right: 5px;
}

.promo-text .unicode-icon {
  margin-right: 8px;
  margin-left: 0;
}

.phone-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  display: inline-block;
  filter: invert(0.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.5);
  transition: transform 0.3s ease;
}

.learn-more:hover .learn-more-arrow {
  transform: translateX(3px);
}

/* ===== COMING SOON PAGE STYLES ===== */