/* =Reset & Base Styles with CSS Variables */
:root {
  /* Existing Colors */
  --primary-color: #1d7363;
  --primary-dark: #1d7363;
  --secondary-color: #f9fafb; /* previously #E7FDE3 */
  --text-primary: #333;
  --text-secondary: rgba(13,13,13,.6);
  --heading-color: #ffffff;
  --white: #D9E1D7; 
  --whitetxt: #ffffff;
  --burgertxt: #ffffff;
  --burgertxt-hover: #f0f0f0;
  --menu-bg: var(--primary-dark);

  /* New Colors for EchoDesk Page */
  --echodesk-blue: #1d7363;       /* bg-blue-900 */
  --echodesk-light-blue: #1d7363; /* bg-blue-100 */
  --echodesk-dark-blue: #1d7363;  /* hover blue */
  --echodesk-gray-bg: #f9fafb;    /* bg-gray-50 */
  --echodesk-gray-text: #1f2937;  /* text-gray-800 */
  --echodesk-card-bg: #ffffff;
  --echodesk-card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

  /* Spacing */
  --container-padding: 20px;
  --section-gap: 2em;
  --card-gap: 1.5rem;
}

/* =Test Configuration Styles */
.test-error {
  color: red;
  margin: 0.5rem 0;
}

.test-success {
  color: green;
  margin: 0.5rem 0;
}

.form-response {
  margin-top: 1rem;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  margin: 0;
  background: var(--secondary-color);
  font-family: 'Questrial', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* =Header Styles */
#header-wrapper {
  background: var(--primary-color);
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1000;
}

#header-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

#header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem var(--container-padding);
  position: relative;
}

/* =Logo & Navigation */
#logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

#logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

#logo h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0;
  color: var(--heading-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3em;
  line-height: 1.2;
}

.nowrap {
  white-space: nowrap;
}

#menu {
  width: 100%;
  margin-top: 1rem;
  position: relative;
}

#menu ul {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
  gap: 1rem;
}

#menu a {
  color: var(--burgertxt);
  text-decoration: none;
  padding: 0.5em;
  transition: all 0.2s;
  display: block;
  white-space: nowrap;
}

#menu a:hover {
  color: var(--burgertxt-hover);
  opacity: 0.8;
}

.mobile-menu-btn {
  display: none;
  color: var(--burgertxt);
}

/* =Dropdown Submenu Styles */
#menu .has-submenu {
  position: relative;
}

#menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-dark);
  min-width: 200px;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#menu .submenu li {
  width: 100%;
}

#menu .submenu a {
  padding: 0.75em 1em;
  display: block;
  white-space: nowrap;
}

#menu .submenu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

#menu .has-submenu:hover .submenu {
  display: block;
}

/* =Mobile Menu Styles (legacy #menu ul rules removed; using #main-menu rules below) */

/* ===== Rest of Your Existing CSS ===== */
/* [All your other CSS remains exactly the same below this point] */
/* =Typography */
.title h2 {
  font-size: clamp(1.8rem, 4vw, 2.8em);
}
.title {
text-align: center
}


#welcome h2 {
  color: var(--primary-color, var(--heading-color));
}

/* =Layout Components */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}

/* =Content Sections */
#welcome {
  width: 100%;
  max-width: 1000px;
  padding: 4em 2em;
  margin: 0 auto;
  text-align: center;
}

/* =Grid Layouts */
#three-column,
.portfolio-flex,
.echodesk-layout {
  display: flex;
  flex-wrap: wrap;
  gap: var(--section-gap);
  justify-content: center;
  margin: 3em 0;
}

/* =Services Grid (used in index.html, OurServices.html) */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
	text-align: center
}

.service {
  flex: 1 1 300px;
  padding: 1rem;
  background: var(--white);
  border-radius: 4px;
}
.center-text {
  text-align: center;
}

#three-column > div,
.column1, .column2, .column3, .column4,
.echodesk-text {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 1em;
  box-sizing: border-box;
}
.principles-list {
  text-align: center;
  margin: 2em auto;
}

.principles-list ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.principles-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.75em;
}

.principles-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.2em;
}

/* =Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 2em;
  background: var(--primary-color);
  color: var(--white);
  transition: all 0.3s;
  border-radius: 4px;
  min-height: 44px;
  height: 44px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.button-container {
  text-align: center;
  width: 100%;
  margin: 2em 0;
}

.button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* =Footer (used by footer.html and inline page footers) */
#footer {
  background: var(--primary-color);
  width: 100%;
  padding: 2rem 0;
  margin-top: auto;
}

.site-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
  color: var(--white);
}

.footer-content {
  margin-bottom: 1.5rem;
}

.partner-badge {
  margin-bottom: 1.5rem;
  text-align: center;
}

.badge-image {
  max-width: 120px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.badge-image:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-content p {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-content a {
  color: var(--whitetxt);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-content a:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
}

@media (max-width: 768px) {
  .footer-content p {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .badge-image {
    max-width: 100px;
  }
  
  .partner-badge {
    margin-bottom: 1rem;
  }
}

/* Font Awesome icons */
.fa {
  width: 1.25rem;
  text-align: center;
}

/* =Utility Classes */
.center-button {
  text-align: center;
  margin: 2em 0;
}

.image-full {
  width: 100%;
  height: auto;
}

/* =Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* =Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== 2x2 Services Grid (used in OurServices.html) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: var(--section-gap);
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 var(--container-padding);
}

.service-box {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-3px);
}

.service-box h3 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1rem;
}

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

/* ===== Hero Section (used in index.html and OurServices.html) ===== */
.hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem var(--container-padding);
}

.hero h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

/* [Continue with all other existing styles...] */

/* ===== Our Services Page Styles (OurServices.html, AboutUs.html) ===== */
.services-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 var(--container-padding);
}

.service-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.service-intro h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.service-features h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.feature-image {
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
  overflow: hidden;        /* Contain the image */
  margin: 0 auto;          /* Center the container */
  max-width: 800px;        /* Optional: constrain max width */
}

.feature-image img {
  width: auto;
  max-width: 100%;
  max-height: 400px;       /* Optional: constrain height */
  object-fit: contain;     /* Maintain aspect ratio */
  display: block;          /* Remove inline spacing */
}

.feature-grid {
  flex: 1 1 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-box h4 {
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.feature-box ul {
  padding-left: 1.5rem;
  margin: 0;
}

.feature-box li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .service-features {
    flex-direction: column;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== About Page Specific Styles (AboutUs.html) ===== */
.about-section {
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.about-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
  text-align: center;
}

/* Fix for feature grid on about page */
.services-container .feature-grid {
  margin-top: 0; /* Remove extra top margin */
}

/* Ensure proper footer spacing */
#footer {
  margin-top: 3rem;
}

/* ===== Contact Form Styles (ContactUs.php) ===== */
.form-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0;
}

.contact-form {
  display: flex;
	max-width: 800px; /* Wider form */
	margin: 0 auto;
  flex-direction: column;
  gap: 1.2rem; /* Slightly increased gap for better separation */
  background: transparent; /* Remove white background */
  padding: 0; /* Remove padding */
  border-radius: 0;
  box-shadow: none; /* Remove shadow */
}

.form-group {
  margin-bottom: 0;
}

.contact-form label {
  display: block;
  margin-bottom: 0.3rem; /* Tighter spacing */
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem; /* Smaller font size */
}

.contact-form input,
.contact-form select{
 /* width: 100%;*/
  min-width: 100%; /* Full width fields */
  padding: 0.7rem;
  border: 1px solid #ccc; /* Simpler border */
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--white); /* Solid white background */
	box-sizing: border-box;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
	padding-right: 30px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit button */
.form-submit {
  margin-top: 0.5rem;
}

.contact-form .submit-button {
  width: auto; /* Not full-width */
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 2rem; /* Wider horizontal padding */
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  align-self: flex-start; /* Align left */
}

.contact-form .submit-button:hover {
  background-color: var(--primary-dark);
}

/* Remove asterisks from labels */
.contact-form label:after {
  display: none !important;
}

/* Add "*" to required field placeholders instead */
.contact-form input::placeholder:required:after,
.contact-form textarea::placeholder:required:after {
  content: " *";
  color: #d32f2f;
}
/* ===== Responsive Menu System (header.html across all pages) ===== */
/* Mobile-First Defaults */
.mobile-menu-btn {
  display: none; /* Hidden by default */
  color: var(--burgertxt); /* Using root variable */
}

#main-menu {
  display: none; /* Hidden by default on mobile */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Mobile Styles (<= 991px) */
@media (max-width: 991px) {
  /* Header adjustments */
  #header {
    position: relative;
    min-height: 80px;
    padding-right: 60px; /* Space for burger button */
  }

  /* Burger button styling */
  .mobile-menu-btn {
    display: flex !important; /* Force show on mobile */
    align-items: center;
    justify-content: center;
    position: absolute;
    right: var(--container-padding);
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--primary-dark);
    border: none;
    color: var(--burgertxt); /* Changed to use root variable */
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }

  /* Mobile menu list */
  #main-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  #main-menu.show {
    display: flex !important;
  }

  /* Menu items */
  #main-menu li {
    margin: 0;
    padding: 0;
  }

  #main-menu li a {
    padding: 12px 20px;
    color: var(--burgertxt); /* Match burger button text */
  }

  #main-menu li a:hover {
    color: var(--burgertxt-hover); /* Using hover variable */
  }

  /* Mobile submenu styles */
  #main-menu .submenu {
    position: static;
    display: none;
    background: rgba(0, 0, 0, 0.1);
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }

  #main-menu .has-submenu.submenu-open .submenu {
    display: block;
  }

  #main-menu .submenu li a {
    padding-left: 40px;
    font-size: 0.95em;
  }
}

/* Desktop Styles (>= 992px) */
@media (min-width: 992px) {
  /* Completely hide burger button */
  .mobile-menu-btn {
    display: none !important;
    visibility: hidden;
  }

  /* Restore original desktop menu */
  #main-menu {
    display: flex;
    position: static;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    gap: normal; /* Remove if spacing looks wrong */
    width: auto;
    padding: 0;
  }

  /* Reset header styles */
  #header {
    position: static;
    min-height: auto;
    padding-right: 0;
  }

  /* Original menu item styling */
  #main-menu li {
    margin: 0 15px; /* Adjust to match original spacing */
  }

  #main-menu li a {
    padding: 8px 0;
    color: var(--burgertxt); /* Or use var(--burgertxt) if you want consistency */
  }

  /* Remove mobile-specific styles */
  #header-wrapper {
    position: static;
    z-index: auto;
  }
}

/* ===== Menu Item Styling (Preserve Original) ===== */
#main-menu li a {
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  white-space: nowrap;
}

#main-menu li a:hover {
  color: var(--accent-color);
}

/* ===== EchoDesk/CyberDesk Shared Service Page Styles (services/EchoDesk.html, services/CyberDesk.html) ===== */
body.echodesk-page {
  overflow-x: hidden; /* Prevents horizontal scrolling */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.echodesk-page {
  background: var(--echodesk-gray-bg);
  color: var(--echodesk-gray-text);
}

.echodesk-hero {
  background: #ffffff;
  color: var(--echodesk-blue);
  padding: 4rem var(--container-padding);
  text-align: center;
}

.echodesk-tiers, .echodesk-features, .echodesk-cta {
  padding: 3rem var(--container-padding);
  max-width: 1200px;
  margin: 0 auto;
}

.echodesk-tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 1.5rem;
}

.echodesk-tier-card {
    background: var(--echodesk-card-bg);
    box-shadow: var(--echodesk-card-shadow);
    padding: 1.5rem;
    border-radius: 0.375rem;
    transition: transform 0.2s ease;
}


.echodesk-button {
  display: inline-block;
  background: var(--echodesk-blue);
  color: var(--whitetxt);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
}

.echodesk-button:hover {
  background: var(--echodesk-dark-blue);
}
.echodesk-tier-card:hover {
    transform: translateY(-5px);
}
.echodesk-tiers h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.echodesk-tier-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--echodesk-blue);
    border-bottom: 2px solid var(--echodesk-light-blue);
    padding-bottom: 0.5rem;
}

.echodesk-tier-card ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.echodesk-tier-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.echodesk-tier-card li:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .echodesk-tier-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 640px) {
    .echodesk-tier-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* Features & Benefits Section */
.echodesk-features {
    background: var(--echodesk-card-bg);
    padding: 3rem var(--container-padding);
    text-align: center; /* Center the heading */
    max-width: 1200px;
    margin: 0 auto;
}

.echodesk-features h2 {
    font-size: 1.875rem; /* 30px */
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--echodesk-blue);
	text-align: left; /* Center the heading */
}

.echodesk-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left; /* Reset text alignment for list items */
}

.echodesk-features ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.echodesk-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.echodesk-features li:before {
    content: "•";
    color: var(--echodesk-blue);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.1rem;
}

/* Features Container */
.echodesk-features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* Makes both columns equal height */
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 var(--container-padding);
  gap: 3rem;
}

/* Image Container - Now matches features height */
.feature-image {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  display: flex;
  align-items: center; /* Vertically centers image */
}

.feature-image img {
  width: 100%; /* Keeps it responsive */
  max-height: 600px; /* Adds height constraint if needed */
  object-fit: contain; /* Preserves aspect ratio */
}

/* Features Section - Height matched to image */
.echodesk-features {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  background: var(--echodesk-card-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--echodesk-card-shadow);
}

.echodesk-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 1rem auto 0;
    text-align: left;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .echodesk-features-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .feature-image,
  .echodesk-features {
    max-width: 100%;
  }
    
    .echodesk-features {
        flex: 1;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .echodesk-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .echodesk-features-container {
        gap: 1.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .echodesk-features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Optional refinements (can be skipped if you prefer minimal changes) */
.echodesk-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

@media (max-width: 768px) {
  .echodesk-hero {
    padding: 3rem var(--container-padding);
  }
  .echodesk-hero h1 {
    font-size: 1.75rem;
  }
}

/* Contact CTA Section */
.echodesk-cta {
    background: var(--echodesk-gray-bg);
    padding: 4rem var(--container-padding);
    text-align: center; /* Centers all content */
    max-width: 800px;
    margin: 0 auto;
}

.echodesk-cta h2 {
    font-size: 1.75rem; /* 28px */
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--echodesk-blue);
}

.echodesk-cta p {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.echodesk-button {
    display: inline-block;
    background: var(--echodesk-blue);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.echodesk-button:hover {
    background: var(--echodesk-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Partner Badge Section */
.partner-badge-section {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.partner-badge-image {
    width: 75%;
    max-height: 450px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-badge-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    text-align: center;
}
/* Footer Styles */
.echodesk-footer {
    background: var(--white);
    text-align: center;  /* Centers the text horizontally */
    padding: 1.5rem 0;
    font-size: 0.75em;   /* 25% smaller than parent element */
    line-height: 1.5;    /* Better readability */
    color: var(--echodesk-light-blue); /* Optional: matches your text color scheme */
	margin-top: auto; /* Pushes footer to bottom */
    order: 1; /* Ensures footer stays at bottom */
	width: 100%; /* Full page width */
}

/* [Removed older logo carousel block in favor of the fixed version below] */

/* Logo Carousel - Fixed Version */
.logo-carousel {
  background: var(--white);
  padding: 3rem 1rem;
  overflow: hidden;
  position: relative;
}

.logo-carousel h2 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center; /* Centers all content */
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.carousel-slide {
  display: flex;
  padding: 0 2rem;
  align-items: center;
  gap: 3rem;
}

.logo-carousel img {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  padding: 0 1.5rem;
  margin: 0 1rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  min-width: 120px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.company-badge:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* Features Section */
/* ===== Service Features Section ===== */
.service-featuresED {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem var(--container-padding);
  box-sizing: border-box;
}

.service-featuresED h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-dark);
  font-size: 1.8rem;
  width: 100%;
}

.feature-gridED {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
}

.feature-boxED {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 350px;
  margin: 0 auto; /* Centers boxes */
  box-sizing: border-box;
}
/* ===== Mobile Responsive Fixes ===== */
@media (max-width: 768px) {
  /* Fix for all sections being right-aligned */
  .echodesk-tiers,
  .echodesk-features-container,
  .logo-carousel,
  .service-featuresED,
  .echodesk-cta {
    width: 100% !important;
    padding: 2rem var(--container-padding) !important;
    margin: 0 auto !important;
    box-sizing: border-box;
  }
  
  .company-badge {
    font-size: 0.8rem;
    padding: 0 1rem;
    margin: 0 0.5rem;
    min-width: 100px;
    height: 50px;
  }
  
  .partner-badge-section {
    margin-top: 2rem;
  }
  
  .partner-badge-image {
    max-height: 300px;
  }
  
  .partner-text {
    font-size: 1rem;
  }
  
  /* Stack feature boxes in single column */
  .feature-gridED {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Fix image container */
  .feature-image {
    max-width: 100% !important;
    padding: 0 !important;
  }
  
  /* Center all headings */
  h1, h2, h3, h4 {
    text-align: center !important;
  }
}

/* ===== Desktop Specific Fixes ===== */
@media (min-width: 769px) {
  /* Ensure 2 feature boxes per row */
  .feature-gridED {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Center the grid */
  .feature-gridED {
    justify-items: center;
  }
}
.checklist-fa {
  list-style: none;
  padding: 0;
  margin: 2em auto;
  text-align: center;
  font-size: 1.2em; /* added by jm*/
	
}

.checklist-fa li {
  margin-bottom: 0.75em;
  font-size: 1.1em;
  display: flex;
  align-items: left;
	 justify-content: center;
 
  gap: 0.5em;
   padding-left: 1.5em;
  margin-bottom: 0.75em;
}

.checklist-fa i {
  color: var(--primary-color);
  font-size: 1.2em;
}

.public-sector-checklist {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.public-sector-checklist h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 2rem;
}

.public-sector-checklist ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.public-sector-checklist li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.numbered-checklist {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  text-align: left;
}

.numbered-checklist ol {
  counter-reset: section;
  padding-left: 1.5rem;
}

.numbered-checklist > ol > li {
  margin-bottom: 1.5rem;
}

.numbered-checklist > ol > li > ol {
  list-style-type: decimal;
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.numbered-checklist li strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}


/* Temporary debug borders */
/* {
  outline: 1px solid rgba(255,0,0,0.2);
} */

/* Override contact form input sizes - Force larger inputs with responsive design */
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm input[type="tel"],
#contactForm select {
  font-size: 0.8em !important;
  padding: 0.8em 1em !important;
  width: 100% !important;
  box-sizing: border-box !important;
  height: 3em !important;
  line-height: 1.2 !important;
}

#contactForm textarea {
  font-size: 0.8em !important;
  padding: 0.8em 1em !important;
  width: 100% !important;
  box-sizing: border-box !important;
  min-height: 6em !important;
  line-height: 1.2 !important;
  resize: vertical !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  #contactForm input[type="text"],
  #contactForm input[type="email"],
  #contactForm input[type="tel"],
  #contactForm select {
    font-size: 0.6em !important;
    padding: 0.6em 0.8em !important;
    height: 2.5em !important;
  }
  
  #contactForm textarea {
    font-size: 0.6em !important;
    padding: 0.6em 0.8em !important;
    min-height: 4em !important;
  }
}

@media (max-width: 480px) {
  #contactForm input[type="text"],
  #contactForm input[type="email"],
  #contactForm input[type="tel"],
  #contactForm select {
    font-size: 0.48em !important;
    padding: 0.5em 0.6em !important;
    height: 2.2em !important;
  }
  
  #contactForm textarea {
    font-size: 0.48em !important;
    padding: 0.5em 0.6em !important;
    min-height: 3.5em !important;
  }
}

/* Footer fix for AboutUs.html */
#footer {
    width: 100%;
    display: block;
}

/* Test page styles */
.test-container {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.test-buttons {
  margin: 1rem 0;
}

.test-btn {
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}

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

.test-btn-danger {
  background: #dc3545;
  color: white;
}

.test-btn-success {
  background: #28a745;
  color: white;
}

.test-instructions {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1rem;
}

/* ===== Cookie Consent Popup Styles ===== */
.cookie-consent-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-consent-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookie-consent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.cookie-consent-container {
  position: relative;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.cookie-consent-popup.show .cookie-consent-container {
  transform: translateY(0);
}

.cookie-consent-content {
  padding: 0;
}

.cookie-consent-header {
  background: linear-gradient(135deg, var(--primary-color), #2c5f5a);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.cookie-consent-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.cookie-consent-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cookie-consent-body {
  padding: 2rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.cookie-consent-body p {
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
}

.cookie-consent-list {
  margin: 1rem 0 1.5rem 0;
  padding-left: 1.5rem;
  list-style: none;
}

.cookie-consent-list li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.cookie-consent-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.cookie-consent-additional {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin: 1.5rem 0;
}

.cookie-consent-additional p {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  color: #666;
}

.cookie-consent-additional p:last-child {
  margin-bottom: 0;
}

.cookie-consent-actions {
  display: flex;
  gap: 1rem;
  padding: 0 2rem 2rem 2rem;
  justify-content: center;
}

.cookie-consent-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  min-width: 120px;
  justify-content: center;
}

.cookie-consent-reject {
  background: #f8f9fa;
  color: #6c757d;
  border: 2px solid #e9ecef;
}

.cookie-consent-reject:hover {
  background: #e9ecef;
  color: #495057;
  transform: translateY(-1px);
}

.cookie-consent-accept {
  background: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.cookie-consent-accept:hover {
  background: #2c5f5a;
  border-color: #2c5f5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(29, 115, 99, 0.3);
}

.cookie-consent-footer {
  background: #f8f9fa;
  padding: 1rem 2rem;
  text-align: center;
  border-top: 1px solid #e9ecef;
}

/* Ensure cookie consent links are always visible */
.cookie-consent-footer .cookie-consent-link,
.cookie-consent-popup .cookie-consent-link {
  color: #1d7363 !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  margin: 0 1rem !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  display: inline-block !important;
  visibility: visible !important;
}

.cookie-consent-footer .cookie-consent-link:hover,
.cookie-consent-popup .cookie-consent-link:hover {
  color: #2c5f5a !important;
  text-decoration: underline !important;
  opacity: 1 !important;
}

.cookie-consent-link {
  color: var(--primary-color) !important;
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 1rem;
  transition: color 0.2s ease;
  font-weight: 500;
  opacity: 1 !important;
}

.cookie-consent-link:hover {
  color: #2c5f5a !important;
  text-decoration: underline;
  opacity: 1 !important;
}

/* Mobile responsive fixes for cookie consent popup */
@media (max-width: 1024px) {
  .cookie-consent-popup {
    align-items: flex-start;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .cookie-consent-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-height: none;
    width: 95%;
    max-width: 450px;
  }
  
  .cookie-consent-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cookie-consent-btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .cookie-consent-popup {
    padding: 0.5rem;
  }
  
  .cookie-consent-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: none;
    border-radius: 12px;
  }
  
  .cookie-consent-header {
    padding: 1.5rem;
  }
  
  .cookie-consent-header h3 {
    font-size: 1.25rem;
  }
  
  .cookie-consent-body {
    padding: 1.5rem;
  }
  
  .cookie-consent-actions {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  
  .cookie-consent-footer {
    padding: 1rem 1.5rem;
  }
}

@media (max-height: 700px) {
  .cookie-consent-popup {
    align-items: flex-start;
    padding: 0.5rem;
    overflow-y: auto;
  }
  
  .cookie-consent-container {
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }
  
  .cookie-consent-header {
    padding: 1.5rem;
  }
  
  .cookie-consent-body {
    padding: 1.5rem;
  }
  
  .cookie-consent-actions {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-consent-popup {
    padding: 0;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .cookie-consent-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  .cookie-consent-header {
    padding: 1.5rem;
    flex-shrink: 0;
  }
  
  .cookie-consent-header h3 {
    font-size: 1.3rem;
  }
  
  .cookie-consent-body {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .cookie-consent-actions {
    flex-direction: column;
    padding: 1rem 1.5rem;
    flex-shrink: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    position: sticky;
    bottom: 0;
  }
  
  .cookie-consent-btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .cookie-consent-btn:last-child {
    margin-bottom: 0;
  }
  
  .cookie-consent-footer {
    padding: 1rem 1.5rem;
    flex-shrink: 0;
    background: #f8f9fa;
  }
  
  .cookie-consent-link {
    display: block;
    margin: 0.5rem 0;
  }
}

@media (max-width: 480px) {
  .cookie-consent-container {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .cookie-consent-header {
    padding: 1rem;
    flex-shrink: 0;
  }
  
  .cookie-consent-body {
    padding: 1rem;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .cookie-consent-actions {
    padding: 1rem;
    flex-shrink: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    position: sticky;
    bottom: 0;
  }
}

/* =News Page Styles */
.news-article {
  background: white;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 2.5rem;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 4px;
  overflow: hidden;
}

.news-article:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-header {
  background-color: #D9E1D7;
  padding: 1.5rem 2rem;
  margin: 0;
}

.news-header h3 {
  color: #333;
  margin: 0 0 0.75rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-header h3 i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.news-meta {
  color: #333;
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.news-meta i {
  color: var(--primary-color);
}

.news-content {
  color: var(--text-primary);
  line-height: 1.7;
  padding: 2rem;
}

.news-content p {
  margin-bottom: 1rem;
}

.news-content ul {
  margin: 1rem 0;
}

.news-content .button-small {
  display: inline-block;
  margin-top: 1rem;
}

/* Blog excerpt styling */
.blog-excerpt {
  padding: 1rem 2rem;
  background: #f8f9fa;
  border-left: 4px solid #667eea;
  margin-bottom: 0;
  font-style: italic;
  font-weight: bold;
  color: #555;
  font-size: 1.05rem;
}

/* Ensure lists display properly in blog content */
.news-content ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.news-content li {
  display: list-item;
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

/* Special styling for checklist items */
.news-content ul.checklist-fa {
  list-style: none;
  margin-left: 0;
}

.news-content ul.checklist-fa li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.news-content ul.checklist-fa li i {
  margin-right: 0.75rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Responsive adjustments for news */
@media (max-width: 768px) {
  .news-header {
    padding: 1.25rem 1.5rem;
  }
  
  .news-header h3 {
    font-size: 1.3rem;
  }
  
  .news-content {
    padding: 1.5rem;
  }
  
  /* Mobile list fixes */
  .news-content ul {
    margin-left: 1.25rem;
    padding-left: 0;
  }
  
  .news-content li {
    display: list-item;
    list-style-position: outside;
    margin-bottom: 0.75rem;
    line-height: 1.6;
  }
  
  /* Mobile checklist items */
  .news-content ul.checklist-fa li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .news-content ul.checklist-fa li i {
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    font-size: 1rem;
  }
  
  /* Blog excerpt mobile adjustments */
  .blog-excerpt {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* =Modern Contact Page Styles */
.contact-intro {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Global fixes for form inputs */
.input-with-icon * {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  outline: none !important;
}

/* Force text positioning */
.input-with-icon input,
.input-with-icon textarea {
  padding-left: 45px !important;
  text-indent: 0 !important;
  margin-left: 0 !important;
}

.input-with-icon select {
  padding-left: 45px !important;
  padding-right: 50px !important;
  text-indent: 0 !important;
  margin-left: 0 !important;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contact Info Section (Left) */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1.25rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 4px solid var(--primary-color);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(29, 115, 99, 0.15);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), #155a4d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon i {
  color: white;
  font-size: 24px;
}

.contact-card-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #333;
  font-weight: 700;
}

.contact-card-content p {
  margin: 0 0 0.5rem 0;
  color: #555;
  font-size: 0.95rem;
}

.contact-card-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-card-content a:hover {
  text-decoration: underline;
}

.contact-meta {
  display: block;
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  transition: gap 0.3s;
}

.contact-link:hover {
  gap: 0.75rem;
}

.trust-badge {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.trust-badge i {
  color: #28a745;
  font-size: 20px;
}

.trust-badge span {
  color: #333;
  font-weight: 600;
}

/* Contact Form Section (Right) */
.contact-form-section {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.8rem;
  color: #333;
  font-weight: 700;
}

.form-header p {
  margin: 0;
  color: #666;
  font-size: 1rem;
}

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

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

.form-group-modern {
  position: relative;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  z-index: 2;
  transition: color 0.3s;
  pointer-events: none;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
  width: 100%;
  padding: 14px 15px 14px 45px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fafafa;
  box-sizing: border-box;
  text-indent: 0 !important;
  margin: 0;
  vertical-align: top;
}

.input-with-icon textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 14px;
  line-height: 1.5;
}

.textarea-wrapper i {
  top: 18px;
  transform: none;
  align-self: flex-start;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(29, 115, 99, 0.1);
}

.input-with-icon input:focus ~ i,
.input-with-icon select:focus ~ i,
.input-with-icon textarea:focus ~ i {
  color: var(--primary-color);
}

/* Floating Labels */
.input-with-icon label {
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s;
  background: transparent;
  padding: 0 5px;
}

.textarea-wrapper label {
  top: 14px;
  transform: none;
}

.input-with-icon input:focus ~ label,
.input-with-icon input:not(:placeholder-shown) ~ label,
.input-with-icon select:focus ~ label,
.input-with-icon select:not([value=""]):valid ~ label,
.input-with-icon textarea:focus ~ label,
.input-with-icon textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 12px;
  font-size: 12px;
  color: var(--primary-color);
  background: white;
  font-weight: 600;
}

.input-with-icon select ~ label {
  top: -10px;
  left: 12px;
  font-size: 12px;
  background: white;
  font-weight: 600;
  color: #999;
}

.input-with-icon select:focus ~ label {
  color: var(--primary-color);
}

/* Submit Button */
.form-submit-modern {
  margin-top: 1rem;
}

.submit-button-modern {
  width: 100%;
  padding: 16px 30px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--primary-color), #155a4d);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(29, 115, 99, 0.3);
}

.submit-button-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 115, 99, 0.4);
}

.submit-button-modern:active {
  transform: translateY(0);
}

.submit-button-modern i {
  transition: transform 0.3s;
}

.submit-button-modern:hover i {
  transform: translateX(4px);
}

/* Form Response */
.form-response-modern {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-response-modern.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-response-modern.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Tablet Responsive (768px - 1024px) */
@media (max-width: 1024px) {
  .contact-page-layout {
    grid-template-columns: 350px 1fr;
    gap: 2rem;
  }
  
  .contact-form-section {
    padding: 2rem;
  }
}

/* Mobile Responsive (max 768px) */
@media (max-width: 768px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 15px;
  }
  
  .contact-info-section {
    order: 2;
    margin-top: 2rem;
  }
  
  .contact-form-section {
    order: 1;
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-card {
    padding: 1.25rem;
  }
  
  .contact-card-icon {
    width: 45px;
    height: 45px;
  }
  
  .contact-card-icon i {
    font-size: 20px;
  }
  
  .form-header h3 {
    font-size: 1.5rem;
  }
  
  /* Fix dropdown text on mobile */
  .input-with-icon select {
    padding-right: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .input-with-icon select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d7363' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  .contact-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .contact-form-section {
    padding: 1.25rem;
  }
  
  .submit-button-modern {
    font-size: 16px;
    padding: 14px 24px;
  }
  
  .input-with-icon input,
  .input-with-icon select,
  .input-with-icon textarea {
    font-size: 14px;
    padding: 12px 12px 12px 40px;
  }
  
  .input-with-icon i {
    left: 12px;
    font-size: 14px;
  }
  
  .input-with-icon label {
    left: 40px;
    font-size: 14px;
  }
  
  /* Ensure dropdown text is visible on small screens */
  .input-with-icon select {
    padding-right: 35px;
  }
}

/* =Campaign Page Styles */
.back-navigation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.back-navigation:hover {
  color: var(--primary-dark);
  transform: translateX(-3px);
}

.back-navigation i {
  transition: transform 0.3s;
}

.back-navigation:hover i {
  transform: translateX(-3px);
}

/* Campaign Hero Section */
.campaign-hero {
  background: linear-gradient(135deg, var(--primary-color), #155a4d);
  color: white;
  padding: 3rem 0;
  margin-bottom: 3rem;
  text-align: center;
}

.campaign-hero h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.campaign-hero .hero-subtitle {
  font-size: 1.3rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.campaign-hero .hero-subtitle strong {
  color: #ffd700;
  font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.benefit-heading {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.benefit-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Pricing Calculator */
.pricing-calculator {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.calculator-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e5e7eb;
}

.calculator-section:last-of-type {
  border-bottom: none;
}

.calculator-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.calculator-section h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.calculator-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.calculator-option {
  display: block;
  cursor: pointer;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s;
  background: white;
}

.calculator-option:hover {
  border-color: var(--primary-color);
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.calculator-option input[type="radio"] {
  display: none;
}

.calculator-option input[type="radio"]:checked + .option-content {
  color: var(--primary-color);
}

.calculator-option input[type="radio"]:checked ~ .option-content {
  color: var(--primary-color);
}

/* Selected state - using JavaScript class for better browser support */
.calculator-option.selected {
  border-color: var(--primary-color);
  background: #f0f9f7;
  box-shadow: 0 0 0 3px rgba(29, 115, 99, 0.1);
}

.option-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option-content strong {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.option-content span:not(.option-price) {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.option-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.cloud-size-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 8px;
  border: 2px dashed #d1d5db;
}

.calculator-actions {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Calculator Results */
.calculator-results {
  background: #f0f9f7;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  margin-top: 2rem;
}

.calculator-results h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.results-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 6px;
  border-left: 4px solid var(--primary-color);
}

.result-item.result-total {
  background: var(--primary-color);
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1rem;
  border-left: none;
}

.result-item.result-total .result-label,
.result-item.result-total .result-value {
  color: white;
}

.result-label {
  font-weight: 600;
  color: #333;
}

.result-value {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.result-item.result-total .result-value {
  font-size: 1.5rem;
}

.quote-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.get-started-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Campaign Disclaimer */
.campaign-disclaimer {
  background: #fff3cd;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.campaign-disclaimer h2 {
  color: #856404;
  margin-bottom: 1rem;
}

.campaign-disclaimer p {
  color: #856404;
  margin-bottom: 0.5rem;
}

.campaign-disclaimer strong {
  color: #856404;
}

/* Print Styles */
@media print {
  body {
    background: white;
  }

  #header-placeholder,
  #footer-placeholder,
  .back-navigation,
  .calculator-actions,
  .quote-actions,
  .get-started-cta,
  .campaign-disclaimer {
    display: none !important;
  }

  .pricing-calculator {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .calculator-results {
    page-break-inside: avoid;
    border: 2px solid #000;
  }

  .result-item {
    page-break-inside: avoid;
  }
}

/* Mobile Responsive Styles for Calculator */
@media (max-width: 768px) {
  .campaign-hero h1 {
    font-size: 2rem;
  }

  .campaign-hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .calculator-options {
    grid-template-columns: 1fr;
  }

  .pricing-calculator {
    padding: 1.5rem;
  }

  .calculator-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .calculator-section h3 {
    font-size: 1.3rem;
  }

  .results-breakdown {
    gap: 0.75rem;
  }

  .result-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .result-item.result-total {
    flex-direction: row;
    justify-content: space-between;
  }

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

  .quote-actions .button {
    width: 100%;
  }

  .cloud-size-section {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .campaign-hero {
    padding: 2rem 0;
  }

  .campaign-hero h1 {
    font-size: 1.75rem;
  }

  .campaign-hero .hero-subtitle {
    font-size: 1rem;
  }

  .pricing-calculator {
    padding: 1rem;
  }

  .calculator-results {
    padding: 1.5rem;
  }

  .result-item {
    padding: 0.75rem;
  }

  .result-item.result-total {
    font-size: 1.1rem;
  }

  .result-item.result-total .result-value {
    font-size: 1.3rem;
  }
}

/* =Decision Matrix Styles */
.decision-matrix-wrapper {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.decision-matrix-wrapper h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  width: 100%;
  text-align: center;
}

.decision-matrix-wrapper p {
  margin-bottom: 1.5rem;
  color: #666;
  text-align: center;
  max-width: 800px;
}

.decision-matrix-container {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.decision-matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  min-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.decision-matrix-table thead {
  background: var(--primary-color);
  color: white;
}

.decision-matrix-table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

.decision-matrix-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s;
}

.decision-matrix-table tbody tr:hover {
  background-color: #f9fafb;
}

.decision-matrix-table tbody td {
  padding: 1rem;
  vertical-align: middle;
}

.decision-matrix-table tbody td:first-child {
  font-weight: 600;
  color: #333;
}

.decision-matrix-table tfoot {
  background: #f9fafb;
  font-weight: 600;
}

.decision-matrix-table tfoot tr.total-row {
  border-top: 2px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.decision-matrix-table tfoot tr.weighted-score-row {
  background: var(--primary-color);
  color: white;
}

.decision-matrix-table tfoot tr.weighted-score-row td {
  padding: 1.25rem 1rem;
  font-size: 1.1rem;
}

.decision-matrix-table tfoot td {
  padding: 1rem;
}

.weight-input {
  width: 80px;
  padding: 0.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  font-size: 1rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.weight-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(29, 115, 99, 0.1);
}

.score-value {
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.weighted-score {
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}

.weight-warning {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  border: 2px solid;
  font-weight: 600;
  width: 100%;
  justify-content: center;
}

.weight-warning i {
  font-size: 1.2rem;
}

.reset-weights-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #6c757d;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  margin: 0 auto;
}

.reset-weights-btn:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.reset-weights-btn:active {
  transform: translateY(0);
}

.reset-weights-btn i {
  transition: transform 0.3s;
}

.reset-weights-btn:hover i {
  transform: rotate(180deg);
}

/* Mobile Responsive Styles for Decision Matrix */
@media (max-width: 768px) {
  .decision-matrix-wrapper {
    align-items: center;
  }

  .decision-matrix-wrapper h3 {
    text-align: center;
  }

  .decision-matrix-wrapper p {
    text-align: center;
  }

  .decision-matrix-container {
    padding: 1rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .decision-matrix-table {
    min-width: 500px;
    font-size: 0.9rem;
    width: 100%;
  }

  .decision-matrix-table thead th {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }

  .decision-matrix-table tbody td {
    padding: 0.75rem 0.5rem;
  }

  .decision-matrix-table tfoot td {
    padding: 0.75rem 0.5rem;
  }

  .weight-input {
    width: 60px;
    padding: 0.4rem;
    font-size: 0.9rem;
  }

  .score-value {
    font-size: 1rem;
  }

  .weighted-score {
    font-size: 1.1rem;
  }

  .reset-weights-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .decision-matrix-wrapper h3 {
    font-size: 1.3rem;
    text-align: center;
  }

  .decision-matrix-wrapper p {
    text-align: center;
  }

  .decision-matrix-container {
    padding: 0.75rem;
    max-width: 100%;
    width: 100%;
  }

  .decision-matrix-table {
    min-width: 400px;
    font-size: 0.85rem;
    width: 100%;
  }

  .decision-matrix-table thead th {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  .decision-matrix-table tbody td {
    padding: 0.5rem;
  }

  .decision-matrix-table tfoot td {
    padding: 0.5rem;
  }

  .weight-input {
    width: 50px;
    padding: 0.3rem;
    font-size: 0.85rem;
  }
}