/* Base Styles - PM Hub Color Theme */
:root {
    --primary-color: #185B9D;
    --primary-dark: #124578;
    --secondary-color: #36AAA1;
    --secondary-light: #5FDDB3;
    --text-color: #324158;
    --text-light: #5d5d61;
    --background-light: #E9F3F6;
    --background-white: #FAFAFA;
    --border-color: #C6DDED;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 0.375rem;
    --accent-color: #FF8C42;
    --bronze-color: #cd7f32;
    --silver-color: #c0c0c0;
    --gold-color: #ffd700;
    --platinum-color: #000;
    --plan-highlight-color: #185B9D;
}

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

body {
    font: normal normal 700 14px/1.2em poppins-extralight, poppins, sans-serif;
    /*font: normal normal 700 14px/1.4em 'Poppins', sans-serif;
    font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  *//*
    color: rgb(112, 112, 112);
     Adjust based on your theme */
    
color: var(--text-color);
font-weight: 200;
line-height: 1.6;
    /*font-family: 'Roboto', sans-serif;
    font-family: poppins-extralight,poppins,sans-serif;
    font: normal normal 700 14px/1.4em poppins-extralight,poppins,sans-serif;
    color: var(--text-color);
    line-height: 1.5;*/
    background-color: var(--background-white);
    letter-spacing:0.0em;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    /*max-width: 1200px;*/
}

.pricing .container,
.cta .container,
.footer .container {
    max-width: 1200px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--background-white);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--background-light);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    border: none;
}

.btn-accent:hover {
    background-color: #d43d25;
}

/* Header Styles */
.header {
    background-color: var(--background-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    color: #324158;
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 12px;
    list-style: none;
}

.nav ul li {
  position: relative;
}

.nav a {
  font-weight: 400;
    /* transition: color 0.3s ease; */
}

.nav a:hover,
.nav a.active {
    /* color: var(--primary-color); */
    color: #1A609d;
}

.dropdown {
  position: relative;
}

.dropdown > a {
  display: inline-block;
  padding: 8px 0;
}


.dropdown-menu {
  position: absolute;
  top: 100%; /* directly below Products */
  left: 0;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  list-style: none;
  padding: 5px 10px;
  margin: 0px;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 999;

  /* Key fix: vertical layout */
  display: flex;
  flex-direction: column;
  gap: 0.2rem !important;
} 

.dropdown-menu li {
  width: 100%;
  gap: 1rem !important;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  margin-top: 10px;
}


.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.dropdown-menu li a {
  display: block;
  padding: 10px 10px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
  white-space: nowrap;
  gap: 1rem !important;
}

.dropdown-menu li a:hover {
  color: #1A609d;
}

.dropdown-menu li a:hover {
  color: #1A609d;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

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

/* Contract Info */
.contract-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contract-info h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contract-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.contract-item {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contract-grid input[type="radio"] {
    display: none;
}

.contract-option {
    background: var(--background-white);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}

.contract-option h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contract-option p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.contract-option .discount {
    color: var(--secondary-color);
    font-weight: 600;
}

.contract-option .no-discount {
    color: var(--text-light);
    font-style: italic;
}

.contract-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contract Terms & Discounts */
/* Enhanced contract term highlighting */
.contract-option input[type="radio"]:checked+.contract-info {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(74, 144, 226, 0.05));
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    transform: translateY(-3px);
}

.contract-option input[type="radio"]:checked+.contract-info::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Bronze, Silver, Gold color scheme */
.bronze-text {
    color: var(--bronze-color);
    font-weight: 600;
}

.silver-text {
    color: var(--silver-color);
    font-weight: 600;
}

.gold-text {
    color: var(--gold-color);
    font-weight: 600;
}

.platinum-text {
    color: var(--platinum-color);
    font-weight: 600;
}

/* Plan-specific button colors */
.bronze-btn {
    background: linear-gradient(135deg, #cd7f32, #b8722d);
    border: none;
    color: white;
}

.bronze-btn:hover {
    background: linear-gradient(135deg, #b8722d, #a36628);
    transform: translateY(-2px);
}

.silver-btn {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8) !important;
    border: none !important;
    color: #333 !important;
}

.silver-btn:hover {
    background: linear-gradient(135deg, #a8a8a8, #909090) !important;
    transform: translateY(-2px);
}

.gold-btn {
    background: linear-gradient(135deg, #ffd700, #e6c200);
    border: none;
    color: #333;
}

.gold-btn:hover {
    background: linear-gradient(135deg, #e6c200, #ccad00);
    transform: translateY(-2px);
}

.platinum-btn {
    background: linear-gradient(135deg, #333333, #000000);
    border: none;
    color: white;
}

.platinum-btn:hover {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    transform: translateY(-2px);
}

/* User Selector Styles */
.user-selector {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.total-monthly-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.total-monthly-price .currency,
.total-monthly-price .total-amount {
    font-size: inherit;
    font-weight: inherit;
}

.total-monthly-price .currency {
    margin-right: 0;
}

.total-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.user-selector h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.slider-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-control-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-control-btn:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.user-control-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-control-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider {
    flex: 1;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 1rem 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.user-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.pricing-disclaimer {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin: -1rem 0 2rem 0;
}

/* Contract Term Highlighting */
.contract-item input[type="radio"]:checked+.contract-option {
    background: linear-gradient(135deg, var(--background-light), var(--secondary-color));
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contract-option {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contract-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Price display enhancements */
.price {
    position: relative;
    margin-bottom: 15px;
}

.original-price {
    display: none;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.original-price .currency,
.original-price .original-amount {
    font-size: inherit;
    font-weight: inherit;
}

.original-price .currency {
    margin-right: 0;
}

.discounted-price {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
}

.discounted-price .currency,
.discounted-price .amount {
    font-size: inherit;
    font-weight: inherit;
    line-height: 1;
}

.discounted-price .currency {
    margin-right: 0;
}

.savings {
    display: none;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    margin-top: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Plan card enhancements with tier colors */
.bronze-plan {
    border-top: 6px solid #cd7f32;
}

.bronze-plan:hover {
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.2);
}

.silver-plan {
    border-top: 6px solid #c0c0c0;
}

.silver-plan:hover {
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.2);
}

.gold-plan {
    border-top: 6px solid #ffd700;
}

.gold-plan:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.platinum-plan {
    border-top: 6px solid black;
}

.platinum-plan:hover {
    box-shadow: 0 10px 30px rgba(229, 228, 226, 0.2);
}

/* Tier Colors */
.bronze-tier .contract-option {
    border-color: #cd7f32;
}

.bronze-tier input[type="radio"]:checked+.contract-option {
    border-color: #cd7f32;
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(205, 127, 50, 0.05));
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.2);
}

.bronze-tier .contract-option:hover {
    border-color: #cd7f32;
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.15);
}

.silver-tier .contract-option {
    border-color: #c0c0c0;
}

.silver-tier input[type="radio"]:checked+.contract-option {
    border-color: #c0c0c0;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
    box-shadow: 0 4px 12px rgba(192, 192, 192, 0.2);
}

.silver-tier .contract-option:hover {
    border-color: #c0c0c0;
    box-shadow: 0 4px 12px rgba(192, 192, 192, 0.15);
}

.gold-tier .contract-option {
    border-color: #ffd700;
}

.gold-tier input[type="radio"]:checked+.contract-option {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.gold-tier .contract-option:hover {
    border-color: #ffd700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
}

.premium-tier .contract-option {
    border-color: #e6e6fa;
}

.premium-tier input[type="radio"]:checked+.contract-option {
    border-color: #9370db;
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.1), rgba(147, 112, 219, 0.05));
    box-shadow: 0 4px 12px rgba(147, 112, 219, 0.2);
}

.premium-tier .contract-option:hover {
    border-color: #9370db;
    box-shadow: 0 4px 12px rgba(147, 112, 219, 0.15);
}

.contract-option h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contract-option .discount {
    /*background: var(--accent-color);*/
    background: #d43d25;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.contract-option p:last-child {
    color: var(--text-light);
    margin: 0;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pricing-plan {
    background-color: var(--background-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-plan.popular {

    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 10px var(--plan-highlight-color), 0 0 20px var(--plan-highlight-color);
    background: linear-gradient(135deg, transparent, #60c7c2);
}

/* Plan-specific popular styling with tier colors */
.bronze-plan.popular {
    /*border: 2px solid #cd7f32;*/
    animation: pulseGlow 2s infinite;
}

.silver-plan.popular {
    /*border: 2px solid #c0c0c0;*/
    animation: pulseGlow 2s infinite;
}

.gold-plan.popular {
    /*border: 2px solid #ffd700;*/
    animation: pulseGlow 2s infinite;
}

.platinum-plan.popular {
    /*border: 2px solid black;*/
    animation: pulseGlow 2s infinite;
}

.pricing-plan.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-plan.disabled {
    opacity: 0.6;
    pointer-events: none;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}

.pricing-plan.disabled:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.pricing-plan.disabled .btn {
    background-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed;
}

.pricing-plan.disabled .plan-header h3,
.pricing-plan.disabled .price,
.pricing-plan.disabled .features {
    color: #999;
}

.plan-header h3 {
    text-shadow: 1px 1px 2px gray;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-bottom-left-radius: var(--radius);
}

.plan-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.level {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.plan-limits {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.limit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.limit-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.plan-cta {
    padding: 0 2rem 2rem;
    text-align: center;
    margin-top: auto;
}

.plan-cta .btn {
    width: 100%;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--background-white);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

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

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-toggle {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 0 1rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: white;
    color: var(--secondary-color);
}

.cta .btn:hover {
    background-color: var(--background-light);
}

/* Contact Page Styles */
.contact-main {
    min-height: 100vh;
    padding: 2rem 0;
    background-color: var(--background-white);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Styles */
.form-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-container h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}


.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Order Summary Styles */
.summary-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.summary-container h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.summary-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

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

.summary-value {
    color: var(--text-color);
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

.summary-item.total {
    font-size: 1.1rem;
    font-weight: 700;
}

.summary-item.total .summary-value {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.summary-savings {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--accent-rgb), 0.2);
    color: var(--accent-color);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.plan-features {
    margin-top: 1.5rem;
}

.plan-features h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.plan-features li i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .contact-header h1 {
        font-size: 2rem;
    }
}

/* Footer */
.footer {
    /*background-color: var(--primary-dark);*/
    background-color: #fff;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 0 0 100%;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    flex: 1;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pricing-plans {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .pricing-plan.popular {
        transform: scale(1.03);
    }

    .pricing-plan.popular:hover {
        transform: scale(1.03) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-plan.popular {
        transform: none;
    }

    .pricing-plan.popular:hover {
        transform: translateY(-5px);
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .pricing-toggle {
        flex-direction: column;
    }

    .plan-header {
        padding: 1.5rem;
    }

    .amount {
        font-size: 2.5rem;
    }
}

/* Feature Comparison Table */
.feature-comparison {
    margin-top: 2.5rem;
    text-align: center;
}

.feature-comparison h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.comparison-table {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 100%;
    padding: 5px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    /*box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px !important;*/
}

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

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table th:first-child {
    text-align: left;
    background: var(--primary-dark);
    position: sticky;
    top: 0;
    z-index: 11;
}

/* Plan-specific header colors */
.comparison-table th.bronze-text {
    background: #cd7f32;
    color: white;
}

.comparison-table th.silver-text {
    background: #c0c0c0;
    color: white;
}

.comparison-table th.gold-text {
    background: #ffd700;
    color: black;
}

.comparison-table th.platinum-text {
    background: #000000;
    color: white;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: var(--background-light);
}

.comparison-table .category-header td {
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.comparison-table tr:hover {
    background: rgba(24, 91, 157, 0.05);
}

.comparison-table tr:hover td:first-child {
    background: rgba(24, 91, 157, 0.1);
}

.comparison-table .category-header:hover td {
    background: var(--secondary-color);
}

.category-header:hover {
    background: var(--secondary-color) !important;
}

/* Availability column hover effects */
.comparison-table td:nth-child(2):hover,
.comparison-table td:nth-child(3):hover,
.comparison-table td:nth-child(4):hover {
    background: rgba(66, 204, 162, 0.1);
    transform: scale(1.05);
    transition: all 0.2s ease;
}

.comparison-table .fas.fa-check {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.comparison-table .fas.fa-times {
    color: #e74c3c;
    font-size: 1.2rem;
}

/* Add-ons Section */
.add-ons-section {
    margin-top: 4rem;
    text-align: center;
}

.add-ons-section h3 {
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.75rem;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.add-on-item {
    background: var(--background-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.add-on-item:hover {
    transform: translateY(-3px);
}

.add-on-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.add-on-item .price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.add-on-item ul {
    text-align: left;
    margin-top: 1rem;
}

.add-on-item ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.add-on-item ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.sync-limits p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.sync-limits p:last-child {
    margin-bottom: 0;
}

.sub-category {
    text-indent: 40px;
}

/* Feature table tooltip for Premium Support */
.feature-with-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.feature-with-info .fa-info-circle {
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.15s ease, color 0.15s ease;
}

.feature-with-info .fa-info-circle:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.feature-with-info .feature-tooltip {
    position: absolute;
    top: 125%;
    left: 0;
    transform: translateY(6px);
    background: #fff;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.75rem 1rem;
    width: 320px;
    font-size: 0.8rem;
    font-weight: 100;
    line-height: 1.4;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 50;
}

.feature-with-info .feature-tooltip::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 12px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.feature-with-info:hover .feature-tooltip,
.feature-with-info:focus-within .feature-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Thank You Message Styles */
.thank-you-message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, var(--background-light) 0%, rgba(54, 170, 161, 0.1) 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    padding: 4rem 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    animation: slideInUp 0.6s ease-out;
    position: relative;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-icon {
    margin-bottom: 2rem;
    position: relative;
}

.thank-you-icon i {
    font-size: 5rem;
    color: var(--secondary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.thank-you-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-content p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-features {
    display: flex;
    justify-content: space-around;
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 15px;
    border: 1px solid rgba(54, 170, 161, 0.2);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    padding: 1rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(54, 170, 161, 0.2);
}

.feature-item span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thank-you-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
    justify-content: center;
}

.thank-you-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.thank-you-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
}

.thank-you-actions .btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border: none;
    color: white;
}

/* Responsive Design for Thank You Message */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 3rem 2rem;
        margin: 1rem;
    }

    .thank-you-content h2 {
        font-size: 2rem;
    }

    .thank-you-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .thank-you-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px var(--plan-highlight-color), 0 0 10px var(--plan-highlight-color);
    }

    50% {
        box-shadow: 0 0 10px var(--plan-highlight-color), 0 0 20px var(--plan-highlight-color);
    }

    100% {
        box-shadow: 0 0 5px var(--plan-highlight-color), 0 0 10px var(--plan-highlight-color);
    }
}

.faq-ul {
    list-style-type: disc;
    /* Options: disc, circle, square, none */
    padding-left: 20px;
    /* Indent bullets */
}

.faq-ul li {
    margin-bottom: 8px;
    /* Space between items */
}

.pm-btn-navbar-contact-us {
     background: linear-gradient(159deg, #185B9D 0%, #185B9D 30%, #42CCA2 100%);
    color: white;
    border: none;
    font-size: 14px;    
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 7px;
}

.pm-btn-navbar-contact-us:hover {
   background: linear-gradient(-159deg, #185B9D 0%, #185B9D 30%, #42CCA2 100%);
   color: white !important;
}

.pm-btn-navbar-login {
    background: white;
    border: 2px solid #1A609D;
    color: #1A609D;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pm-btn-navbar-login:hover {
    background: #1A609D;
    color: #ffffff !important;
}

.pm-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}


.pm-footer-left {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #000;
    font-size: 20px;
    margin-right: 15px;
    text-decoration: none;
}


.pm-footer-center {
    flex: 1;
    min-width: 250px;
    text-align: left;
    font-size: 14px;
    color: #444;
}

.pm-footer-center img {
    max-height: 40px;
    margin-bottom: 10px;
}

.pm-footer-center p {
    margin: 5px 0;
    font-size: 15px;
    font-weight: 400;
}


.pm-footer-right {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.pm-footer-right a {
    display: block;
    margin-bottom: 10px;
    color: #2F6A99;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

.pm-footer-right a:hover {
    text-decoration: underline;
}


.pm-footer-bottom {
    margin-top: 40px;
    font-size: 12px;
    color: #777;
    text-align: center;
}


@media (max-width: 768px) {
    .pm-footer-container {
        flex-direction: column;
        text-align: center;
    }

    .pm-footer-left,
    .pm-footer-center,
    .pm-footer-right {
        text-align: left;
    }


    .pm-footer-right a {
        display: block;
        margin: 8px 0;
    }
}