/* Global Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2c3e50;
    --accent-color: #4CAF50;
    --text-color: #f4f4f4;
    --light-bg: #2c2c2c;
    --dark-bg: #1a1a1a;
    --danger-color: #ff4d4d;
    --warning-color: #ffa64d;
    --success-color: #4CAF50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
}

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

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #388E3C;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 4rem 0;
}

/* Header Styles */
header {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: top 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header.hidden {
    top: -100px;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo a {
    color: var(--text-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--dark-bg);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Industries Section */
.industries {
    padding: 5rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.industry-image {
    height: 180px;
    background-color: #333;
    position: relative;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-content {
    padding: 1.5rem;
}

.industry-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.industry-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    counter-reset: step-counter;
}

.step {
    flex: 0 0 calc(33.333% - 2rem);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3rem;
}

.step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
}

.pricing-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.price-detail {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--dark-bg);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 1rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background-color: var(--accent-color);
    padding: 5rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta .cta-button {
    background-color: white;
    color: var(--accent-color);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta .cta-button:hover {
    background-color: var(--dark-bg);
    color: white;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text-color);
    opacity: 0.8;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 0;
}

/* Industry Page Specific Styles */
.industry-hero {
    padding: 10rem 0 6rem;
    background-color: var(--secondary-color);
    position: relative;
}

.industry-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.industry-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.industry-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.industry-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.pain-points {
    background-color: var(--dark-bg);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pain-point-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pain-point-card h3 {
    color: var(--danger-color);
    margin-bottom: 1rem;
}

.services-section {
    background-color: var(--light-bg);
}

.service-card {
    background-color: var(--dark-bg);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.addons-section {
    background-color: var(--dark-bg);
}

.addon-card {
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.addon-card:hover {
    transform: translateY(-5px);
}

.addon-card h3 {
    margin-bottom: 1rem;
}

.addon-price {
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.expert-section {
    background-color: var(--light-bg);
    text-align: center;
}

.expert-card {
    background-color: var(--dark-bg);
    border-radius: 8px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.expert-card h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

/* Urgency Elements */
.urgency-banner {
    background-color: var(--danger-color);
    color: white;
    padding: 0.8rem 0;
    text-align: center;
    font-weight: 600;
}

.competitor-alert {
    background-color: var(--dark-bg);
    border-left: 4px solid var(--warning-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.competitor-alert h3 {
    color: var(--warning-color);
    margin-bottom: 0.5rem;
}

.countdown-timer {
    background-color: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.countdown-timer h3 {
    margin-bottom: 1rem;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.timer-item {
    background-color: var(--light-bg);
    padding: 1rem;
    border-radius: 4px;
    min-width: 80px;
}

.timer-item span {
    display: block;
}

.timer-item .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.timer-item .label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .step {
        flex: 0 0 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--dark-bg);
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 1001;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .step {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

/* Industry Dropdown Styles */
.industry-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  max-width: 600px;
}

.select-container {
  position: relative;
  width: 80%;
  margin-right: 10px;
}

.industry-dropdown {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  background-color: var(--dark-bg-color);
  color: var(--text-color);
  appearance: none;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  pointer-events: none;
}

#go-to-industry {
  padding: 15px 25px;
  margin-left: 10px;
}

/* Logo Styles */
.logo img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .industry-selector {
    flex-direction: column;
    width: 100%;
  }
  
  .select-container {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  #go-to-industry {
    width: 100%;
    margin-left: 0;
  }
  
  .logo img {
    height: 40px;
  }
}

/* Logo and Company Name Styles */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 15px;
}

.logo img {
  height: 50px;
  width: auto;
}

.company-name a {
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-name a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .logo-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .logo {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .company-name a {
    font-size: 1rem;
  }
}

/* Fix for Alert Banner Visibility on Mobile */
.urgency-banner {
  position: relative;
  z-index: 1010; /* Ensure it's above all other elements */
  width: 100%;
  padding: 10px 15px;
  background-color: var(--warning-color);
  color: var(--light-text);
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Ensure header doesn't overlap with banner on mobile */
@media (max-width: 768px) {
  .urgency-banner {
    position: relative;
    z-index: 1010;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  header {
    position: relative;
    z-index: 1005;
  }
  
  .nav-toggle {
    z-index: 1006;
  }
  
  nav {
    z-index: 1007;
  }
}
