/* ADT Page Styling */
:root {
  --adt-primary: #1B5FAA;
  --adt-secondary: #0D47A1;
  --adt-accent: #ffffff;
  --adt-gradient: linear-gradient(135deg, #1B5FAA 0%, #0D47A1 100%);
  --card-bg: rgba(20, 30, 45, 0.7);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --border-color: rgba(255, 255, 255, 0.1);
  --text-color: rgba(255, 255, 255, 0.9);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --blur-effect: blur(10px);
}

/* Ensure dark theme compatibility */
[data-theme="dark"] {
  --background-color: #0a0f1c;
  --text-color: #f8fafc;
  --border-color: #1a2c45;
  --card-bg: #141c2e;
  --header-bg: rgba(10, 15, 28, 0.95);
  --footer-bg: #141c2e;
  --input-bg: #192235;
  --input-border: #1a2c45;
  --hover-color: #3b82f6;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --glass-bg: rgba(30, 41, 59, 0.95);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* ADT Security - Premium Styling */
:root {
    /* Brand Colors */
    --adt-primary: #1B5FAA;
    --adt-secondary: #0D47A1;
    --adt-accent: #ffffff;
    --adt-gradient: linear-gradient(135deg, #1B5FAA 0%, #0D47A1 100%);
    
    /* Dark Theme Compatibility */
    --color-primary: var(--adt-primary);
    --color-secondary: var(--adt-secondary);
    --color-accent: var(--adt-accent);
    --color-background: #0a0f1c;
    --color-surface: #141c2e;
    --color-text: #f8fafc;
    --color-text-secondary: #b3b3b3;
    --color-border: #1a2c45;
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.3);
    
    /* Glass Effect */
    --glass-background: rgba(30, 41, 59, 0.95);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(10px);
}

/* Hero Section */
.provider-hero.adt-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
                var(--adt-gradient);
    background-size: cover;
    background-position: center;
    color: var(--text-color);
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(27, 95, 170, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lead-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.9;
}

.provider-logo-container {
    margin-bottom: 2rem;
    transform: scale(1.2);
}

.provider-hero-logo {
    max-width: 220px;
    height: auto;
    background: var(--glass-background);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-lg);
    border: var(--glass-border);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.badge {
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.badge i {
    color: var(--adt-accent);
    font-size: 1.25rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator a {
    color: var(--text-color);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section layouts */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  color: var(--text-color);
  padding: 6rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  color: var(--text-color);
  font-weight: 800;
}

.section-subtitle {
  color: var(--adt-primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 1rem;
  display: block;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: var(--text-color);
}

p {
  color: var(--text-color);
}

/* Stats container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-box {
  background: var(--glass-bg);
  backdrop-filter: var(--blur-effect);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--glass-bg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--adt-primary);
  margin-bottom: 0.5rem;
  background: var(--adt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Features section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: var(--blur-effect);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-bg);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--adt-primary);
  background: var(--adt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--adt-primary);
  font-weight: 700;
}

.feature-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-color);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: auto;
  color: var(--text-color);
}

.feature-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-color);
}

.feature-list li::before {
  content: '•';
  color: var(--adt-primary);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* Get Quote Button */
.get-quote-btn {
  display: inline-block;
  background: var(--adt-gradient);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(27, 95, 170, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-quote-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(27, 95, 170, 0.4);
}

/* Media queries */
@media (max-width: 1024px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-badges {
    gap: 1rem;
    flex-direction: column;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .lead-text {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .get-quote-btn {
    width: 100%;
    text-align: center;
  }
}

/* Content Block Styling */
.content-block {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-effect);
  border-radius: 24px;
  padding: 3rem;
  margin: 4rem 0;
  border: 1px solid var(--glass-bg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.content-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(27, 95, 170, 0.3) 50%, 
    transparent 100%
  );
}

.content-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(27, 95, 170, 0.3) 50%, 
    transparent 100%
  );
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.content-item {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid var(--glass-bg);
  transition: all 0.4s ease;
}

.content-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-md);
}

.content-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, var(--adt-primary), transparent);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.content-item:hover::before {
  opacity: 0.1;
}

.content-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--adt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.content-description {
  color: var(--text-color);
  opacity: 0.9;
  line-height: 1.6;
}

/* Premium Section Styling */
.premium-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.premium-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(27, 95, 170, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.premium-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.premium-image img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.premium-image:hover img {
  transform: scale(1.05);
}

.premium-content {
  position: relative;
}

.premium-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: var(--blur-effect);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--adt-primary);
  margin-bottom: 1.5rem;
  border: 1px solid var(--glass-bg);
  box-shadow: var(--shadow-sm);
}

.premium-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.premium-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.premium-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.premium-feature i {
  font-size: 1.2rem;
  color: var(--adt-primary);
  background: var(--glass-bg);
  padding: 0.8rem;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

/* Accent Blocks */
.accent-block {
  position: relative;
  background: linear-gradient(135deg, rgba(27, 95, 170, 0.1) 0%, rgba(13, 71, 161, 0.05) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
  border: 1px solid rgba(27, 95, 170, 0.1);
  box-shadow: var(--shadow-md);
}

.accent-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--adt-gradient);
  border-radius: 3px;
}

/* Update media queries */
@media (max-width: 1024px) {
  .premium-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .content-block {
    padding: 2rem;
  }
  
  .premium-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .content-block {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .premium-title {
    font-size: 2.2rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.testimonials-section {
    background: var(--color-surface);
    padding: 6rem 0;
}

.testimonial-card {
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem;
}

.testimonial-rating {
    color: var(--adt-accent);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--color-text);
    margin: 0;
}

.author-info span {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--adt-accent);
    font-size: 0.8rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background: var(--glass-background);
    color: var(--color-text);
}

.comparison-table td {
    color: var(--color-text-secondary);
}

.comparison-table .highlight {
    color: var(--adt-accent);
}

.adt-column img {
    height: 30px;
    width: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* FAQ Section */
.faq-item {
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    color: var(--color-text);
}

.faq-toggle {
    color: var(--adt-accent);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-secondary);
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

/* Quote Form */
.quote-form {
    display: grid;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--color-text);
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--adt-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-section {
        padding: 4rem 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        margin: 1rem 0;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
} 