@font-face {
    font-family: 'Georgia';
    src: url('https://res.cloudinary.com/dlpsh7fpk/raw/upload/v1736780519/georgia-webfont_msexsm.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Apply the fonts globally or selectively */
body {
    font-family: 'Arial', 'Georgia', serif;
}

html {
    scroll-behavior: smooth;
}


/* Global Resets & Body */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

/* Section Title & Subtitle */
.pricing-section {
  max-width: 1400px;  /* Increased from 1200px to accommodate three cards side-by-side */
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 40px;
}

/* Pricing Cards Container */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;  /* Prevent wrapping so that three cards remain in one row */
}

/* Individual Card (Increased by ~30%) */
.card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;            /* was 8px, now increased */
  width: 390px;                   /* was 300px (300px x 1.3 ≈ 390px) */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 39px 26px;             /* was 30px 20px (each increased by ~30%) */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-header {
  margin-bottom: 20px;
}

.plan-title {
  font-size: 2.3rem;
  font-family: Georgia, serif;
  margin-bottom: 5px;
}

.plan-subtitle {
  font-size: 1.3rem;
  color: #666;
}

/* Highlighted (middle) Card */
.highlighted {
  border: 2px solid #efbe35;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Price Container */
.price-container {
  margin-bottom: 15px;
  text-align: center;
}

.price {
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.3rem;
  margin-right: 5px;
}

.current-price {
  color: #3d4852;
  font-size: 2.1rem;
}

.discount-note {
  font-size: 1.2rem;
  color: #3d4852;
    font-family: Arial, sans-serif;
}

/* Features List */
.features-list {
  list-style: none;
  margin-bottom: 20px;
  width: 100%;
    margin-right: -95px;
}

.features-list li {
  display: flex;
  align-items: center;
  margin: 8px 0;
  font-size: 1.2rem;
  color: #555;
  margin: 0 auto;
  font-family: Arial, sans-serif;
   margin-bottom: 15px;
}
/* Checkmark styling */
.checkmark {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #efbe35; /* Retains yellow padding */
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}

/* Use the external checkmark image */
.checkmark::after {
  content: "";
  width: 14px; /* Adjust to fit inside the yellow padding */
  height: 14px;
  background-image: url('https://res.cloudinary.com/dlpsh7fpk/image/upload/v1745859477/checkmark_qoifm9.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


.checkmarks-2 {
  width: 18px;
  height: 18px;
}


/* Turnaround Info */
.turnaround {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #555;
  text-align: center;
    font-family: Arial, sans-serif;
}

.turnaround-label {
  font-weight: bold;
  font-family: Arial, sans-serif;
}

/* Buy Now Button */
.buy-now {
  background-color: #efbe35;
  color: #000;
  padding: 12px 25px;
  font-size: 1.2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
   border: 1px solid #000;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.buy-now:hover {
  background-color: #e6c800;
}

/* --------------------------------------------------
   Countdown Timer Styling
--------------------------------------------------- */
.countdown-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1.2rem;
  color: #000;
  font-family: Arial, sans-serif;
}

/* Individual Time Box */
.countdown-timer .time {
  background-color: #efbe35;
  color: #fff;
  padding: 10px;
  border-radius: 4px;
  min-width: 50px;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 768px) {
  /* Overall section and container adjustments */
  .pricing-section {
    padding: 20px 10px;
    max-width: 100%;
  }
  
  /* Reduce the section title and subtitle sizes */
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Stack pricing cards vertically instead of in a row */
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  /* Adjust card sizing and padding for mobile */
  .card {
    width: 90%; /* Full width minus some margins */
    padding: 40px;
  }
  
  /* Reduce font sizes for headings within the cards */
  .plan-title {
    font-size: 2rem;
  }
  
  .plan-subtitle {
    font-size: 1.1rem;
  }
  
  /* Adjust pricing container font sizes */
  .price {
    font-size: 1.5rem;
  }
  
  .old-price {
    font-size: 1rem;
  }
  
  .current-price {
    font-size: 1.6rem;
  }
  
  .discount-note {
    font-size: 1rem;
  }
  
  /* Reduce font sizes in the features list */
  .features-list li {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .features-list {
        margin-right: -35px !important;
  }
  
  /* Turnaround info */
  .turnaround {
    font-size: 0.9rem;
  }
  
  /* Buy Now button adjustments */
  .buy-now {
    font-size: 1rem;
    padding: 10px 20px;
  }
  
  /* Countdown Timer styling */
  .countdown-timer {
    font-size: 0.8rem;
    gap: 10px;
  }
  
  .countdown-timer .time {
    font-size: 1rem;
    padding: 8px;
    min-width: 40px;
  }
}



body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #fff;
  font-weight: normal;
}

table {
  width: 70%;
  border-collapse: collapse;
  margin: 0 auto;
  margin-top: -50px;
}

/* -------------
   Header (thead)
--------------*/

/* Apply full borders for header cells */
thead th,
thead td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
  font-size: 1.2rem;
  font-family: Arial, sans-serif;
}

/* Top header row styling */
thead tr.top-header th {
  background-color: #fff; /* Default background */
  font-weight: bold;
  font-family: Georgia, sans-serif;
  font-size: 1.5rem;
}
thead tr.top-header td {
  background-color: transparent;
  font-weight: normal;
  font-size: 1.5rem;
}

/* Remove borders from the A1 cell (first cell) and add only a right border */
thead tr.top-header th:first-child,
thead tr.top-header td:first-child {
  border: none;
  border-right: 1px solid #ccc;
}

/* Explicitly ensure the Professional (third) header cell stays yellow */
thead tr.top-header th:nth-child(3) {
  background-color: #ffeccc;
}

/* Separator row styling in the header */
thead tr.separator-row td {
  background-color: #f2f2f2;
  padding: 20px;
  border: 1px solid #ccc;
}
thead tr.separator-row td:last-child {
  border-right: 1px solid #ccc;
}

/* -------------
   Body (tbody)
--------------*/

/* Remove all default borders from tbody cells */
tbody td {
  padding: 12px;
  text-align: center;
  font-size: 1.2rem;
  font-family: Arial, sans-serif;
  border: none;
}

/* Add left (external) border for first column */
tbody td:first-child {
  border-left: 1px solid #ccc;
  font-weight: normal;
  font-family: Arial, sans-serif; 
}

/* Add right border to all tbody cells */
tbody td {
  border-right: 1px solid #ccc;
}

/* Add the bottom external border to the last row of tbody */
tbody tr:last-of-type td {
  border-bottom: 1px solid #ccc;
}



/* Exempt the professional (third) column from the alternating rule */
/* Use !important to ensure this rule prevails over row alternation */
tbody tr td:nth-child(3) {
  background-color: #ffeccc !important;
}

/* -------------
   Checkmark Images
--------------*/

.checkmarks-2 {
  width: 18px;
  height: 18px;
}

/* Global Resets & Body */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  padding: 20px;
}

/* Recommendation Section */
.recommendation-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
  margin-top: -40px;
  
}

.recommendation-section h1 {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.recommendation-section p {
  font-size: 1.5rem;
  color: #555;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
/* Make the recommendation section wider on desktop */
.recommendation-section {
  max-width: 1200px; /* Increase or decrease as desired */
  margin: 50px auto;
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

 .recommendation-section {
    width: 100vw;
    margin: 0;               /* remove auto margin so we can anchor manually */
    left: 50%;               /* anchor left edge to center of the viewport */
    transform: translateX(-50%); /* shift left edge back half its width */
    position: relative;      /* or absolute/fixed, if needed for your layout */
    padding: 20px 10px;
  }
  
  .recommendation-section h1 {
    font-size: 1.8rem !important; /* Slightly smaller heading */
  }
  .recommendation-section p {
    font-size: 1rem;   /* Smaller body text */
    line-height: 1.8;
    margin-bottom: 30px;
  }

  table {
    width: 100vw;
    table-layout: fixed;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    margin-bottom: 70px;
  }
  th, 
  td {
    font-size: 0.7rem;      /* Decrease font size for mobile */
    padding: 17px 15px;     /* Reduce cell padding */
    white-space: nowrap;    /* Keep text on one line */
    word-wrap: break-word;  /* Break long words if necessary */
  }
  /* Adjust top header font sizes and padding */
  thead tr.top-header th,
  thead tr.top-header td {
    font-size: 0.9rem;
    padding: 8px 6px;
  }
  /* Adjust padding for the separator row */
  thead tr.separator-row td {
    padding: 17px 15px;
  }
  /* Remove all default borders from tbody cells */
tbody td {
  font-size: 0.8rem;
}
}
/* Global Resets & Body */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  padding: 20px;
}

/* Payment Information Section */ 
.payment-info {
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 120px;
}

.security-text {
  font-size: 1.6rem !important;
  color: #555;
  font-family: Arial, sans-serif;
  
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 35px;
}

.payment-methods img {
  max-height: 180px !important;
  max-width: 180px !important;
  object-fit: contain;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .payment-info {
    width: 100vw;
    padding: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
     margin-top: 50px;
  margin-bottom: 50px;
}
  
  /* Reduce the font size for the security text */
  .security-text {
    font-size: 1.2rem !important;
    margin-bottom: 30px;
     margin-top: 10px;
  }
  
  /* Allow payment methods to wrap and reduce gaps */
  .payment-methods {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  
  /* Scale down payment method images */
  .payment-methods img {
    max-width: 100px;
    max-height: 100px;
  }
}

/* Global Resets & Body */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
}

/* Main Page Container: Two-Column Layout */
.contact-sales-page {
  display: flex;
  min-height: 100vh;
  width: 80%;
  margin: 0 auto;
  margin-top: 80px;
}

/* Left Column: Call-to-Action & Support */
.left-column {
  flex: 1;
  background-color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.call-to-action {
  margin-bottom: 20px;
  font-size: 2rem;
  font-family: Georgia, sans-serif;
}

.call-button {
  display: inline-block;
  background-color: #efbe35;
  color: #fff;
  padding: 12px 10px;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 40px;
}

.cta-text-2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
  font-family: Arial, sans-serif;
}

.cta-text {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 10px 15px;
  background-color: #332d2d;
  margin-top: 20px;
}

.support-link {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

/* Right Column: Contact Form */
.right-column {
  flex: 1;
  background-color: #fff;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: left;
}

.contact-form-container {
  width: 100%;
  max-width: 500px;
  position: relative;  /* IMPORTANT: Needed for the absolute positioning of the confirmation overlay */
}

.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
  text-align: left;
  font-family: Georgia, sans-serif;
}

/* Form Grid Layout */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-field label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
  display: block;
  text-align: left;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

.required {
  color: #000;
}

/* Style the disabled select option (placeholder) to be gray */
select option[disabled] {
  color: #999;
}

/* Submit Button Styling – force left alignment */
.form-field button {
  background-color: #efbe35;
  color: #000;
  border: none;
  padding: 12px 12px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  border: 1px solid #000;
  text-align: left;
  display: block;
  margin: 0;
}

/* CTA Link Styling */
.cta-click {
  background-color: #efbe35;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  align-items: left;
  text-decoration: none;
  display: inline-block;
  margin-top: -5px;
  margin-bottom: 10px;
  border-radius: 25px;
  border: 1px solid #000;
   flex-wrap: nowrap;
}

.cta-click:hover {
  background-color: #FFB800;
}

/* File Upload Button Styling with File Count Indicator */
.file-upload-label {
  display: inline-block;
  background-color: #fff;
  color: #000;
  border-radius: 0;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  width: auto;
  min-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-upload-label:hover {
  color: #efbe35;
}

.file-upload-label input[type="file"] {
  display: none;
}

/* File Count Indicator Styling */
.file-count-indicator {
  font-size: 1rem;
  color: #000;
  margin-left: 5px;
}

/* Upload spinner styling */
.upload-spinner {
  display: none; /* Initially hidden */
  width: 16px;
  height: 16px;
  border: 2px solid #efbe35;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-left: 5px;
  vertical-align: middle;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


/* Confirmation Message Styling (Overlaid) */
#quoteThankYouMessage {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  font-family: Georgia, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  text-align: left;
  padding: 20px;
  display: none;
  animation: fadeIn 0.5s ease-in-out forwards;
  z-index: 5;
  margin-left: -20px;
  margin-top: -10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .contact-sales-page {
    flex-direction: column;
    width: 100vw;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
  }
  
  .left-column {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
    text-align: center;
    margin-top: 1rem;
  }
  
  .cta-text {
    font-size: 0.8rem !important;
    line-height: 1.8;
    padding: 10px 15px;
  }
  
  .cta-text-2 {
    font-size: 1rem !important;
  }
  
  .right-column {
    padding: 20px;
    margin-top: -5rem;
  }
  
  .contact-form-container h2 {
    text-align: center;
    margin-top: 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .call-to-action {
    font-size: 1.5rem;
    margin-bottom: 6rem;
  }
  
  .chat-button {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .file-upload-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: auto;
    min-width: 150px;
    font-size: 1.2rem;
  }
  
  .cta-click {
    margin-top: 1rem;
     flex-wrap: nowrap;
    font-size: 1rem;
  }
  
  .form-field button {
    font-size: 1.2rem;
  }
  
  #quoteThankYouMessage {
    margin-left: 0px;
  margin-top: 0px;
    text-align: center;
  }
  
  .upload-spinner {
  width: 20px;
  height: 20px;
  }
}



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

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  padding: 20px;
}

/* FAQ Section Container */
.faq-section {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  margin-top: 60px;
}

/* FAQ Header (Left Column) */
.faq-header {
  width: 25%;
  padding: 20px;
}

.faq-header h1 {
  font-size: 3rem;
  color: #333;
  font-family: Georgia, sans-serif;
}

/* FAQ List (Right Column) */
.faq-list {
  width: 75%;
  padding: 20px;
}

/* FAQ Item Styles */
.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.7rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: left;
  margin: 0;
  font-weight: normal;
  font-family: Arial, sans-serif;
}

/* Initially, the answer paragraphs are hidden via max-height and opacity */
.faq-item p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  margin-top: 0; /* No gap when closed */
  font-size: 1.2rem;
  font-family: Arial, sans-serif;
  text-align: left;
}

/* When active, reveal the answer */
.faq-item.active p {
  max-height: 500px;  /* Adjust this value to suit the content */
  opacity: 1;
  margin-top: 10px;
}

/* Plus Icon Styling */
.plus-icon {
  background-color: #efbe35;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #000;
  font-weight: normal;
}


@media (max-width: 768px) {
  /* Anchor the FAQ section at the center using 100vw */
  .faq-section {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    padding: 10px;
    margin-top: 50px;
  }
  
  /* Ensure FAQ header spans full width and is centered */
  .faq-header {
    width: 100%;
    padding: 10px;
    text-align: center;
  }
  
  /* Make FAQ list full width */
  .faq-list {
    width: 100%;
    padding: 10px;
  }
  
  /* Align FAQ list items' content to the left */
  .faq-item {
    text-align: left;
    padding: 10px 0;
  }
  
  .faq-item h3 {
    font-size: 1.2rem; /* Adjust as needed */
    padding: 0 10px;
    text-align: left;
  }
  
  .plus-icon {
  width: 30px;
  height: 30px;
  font-size: 1.5rem;
     border-radius: 50%;
    background-color: #fff;
    color: #efbe35;
  }
  
  .faq-item p {
    font-size: 1rem;  /* Adjust as needed */
    padding: 0 10px;
    text-align: left;
  }
}
/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
}

/*******************************************************
 *                    FOOTER WRAPPER
 *******************************************************/
.footer-wrapper {
  width: 100%;               /* Full viewport width */
  position: absolute;
  left: 0;                  /* Ensure it starts from the left edge */
  right: 0;                 /* Optional: ensure it stretches fully */
  margin: 0 auto !important;
  padding: 0;
}

/*******************************************************
 *                    INFO SECTION
 *******************************************************/
.info-section {
  width: 100%;               /* Full viewport width */
  position: relative;
  /* Removed left: 50% and transform: translateX(-50%) */
  padding: 2rem 1rem;
  background-color: #d0ccc4;  /* Gray background */
  margin-bottom: -2rem;       /* Overlap next section */
  border-radius: 15px 15px 0 0;
  color: #fff;
  z-index: 2;
  margin-top: 5rem;
}

/* Info Container, Logo, & Links */
.info-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.info-logo img {
  max-width: 250px !important;
}


/* Info Links */
.info-links {
    color: #000;
}

.info-links ul {
    list-style: none;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: left;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    font-weight: normal;
    color: inherit;
}

.info-links ul li {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease, text-decoration 0.3s ease;
    color: inherit;
}

.info-links ul li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.info-links ul li a:hover {
    text-decoration: underline;
    color: inherit;
}

.info-links strong {
    font-weight: bold;
    color: inherit;
}

.email {
    text-transform: none !important; 
}

/* Hide mobile headers on desktop */
.mobile {
    display: none;
}

/* Hide desktop version on mobile and show mobile headers */
@media (max-width: 768px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
       text-decoration: underline;
    text-decoration-color: #000; /* Ensuring underline color */
}
    .info-logo img {
    max-width: 150px !important;
}
    }



/*******************************************************
 *                    DIVIDER LINE
 *******************************************************/
.footer-divider-wrapper {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 3;
  background-color: #d0ccc4 !important;
  padding: 0;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #000;
  margin: 0 auto;
  display: block;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
/*******************************************************
 *                  NEWSLETTER SECTION
 *******************************************************/
.newsletter-section {
  width: 100%;               /* Full viewport width */
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
  background-color: #d0ccc4;  /* Slightly lighter gray */
  font-family: Georgia, serif;
  font-weight: normal;
  text-transform: none;
  margin-top: -1rem;          /* Overlap with info section */
  z-index: 2;
  color: #000;
}

.newsletter-section h3 {
  font-family: Georgia, serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000;
  margin-top: 1rem;
}

.newsletter-section p {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #000;
}

.newsletter-section form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap !important;
}

.newsletter-section form input {
  display: inline-block;
  padding: 10px;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: bold;
  width: 15%;
  text-align: center;
  border: 1px solid #333;
  border-radius: 5px;
  color: #000;
  flex-wrap: nowrap !important;
}

.newsletter-section form button {
  background-color: #efbe35;
  color: #000;
  padding: 10px;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: none;
  border: none;
  width: 15%;
  border-radius: 5px;
  border: 1px solid #000;
  cursor: pointer;
  flex-wrap: nowrap !important;
  transition: background-color 0.3s ease-in-out;
}

.newsletter-section form button:hover {
  background-color: #d4a932;
}

#thankYouMessage {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 1.5rem;
  color: #000;
  display: none;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(10px); }
}

.fade-out {
  animation: fadeOut 2s ease-in-out forwards;
}


/*******************************************************
 *              SPINNER & CONFETTI STYLING
 *******************************************************/

/* create the spin animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Morph button into spinner */
#subscribeBtn.loading {
  color: transparent;
  pointer-events: none;
  width: 15% !important;
  position: relative;               /* Needed to anchor the spinner */
  display: flex;
  justify-content: center;         /* Center child horizontally */
  align-items: center;             /* Center child vertically */
}

/* Spinner styling */
#subscribeBtn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #000;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

 


/*******************************************************
 *               RESPONSIVE ADJUSTMENTS (Mobile)
 *******************************************************/
@media (max-width: 768px) {
  .newsletter-section form {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .newsletter-section form input,
  .newsletter-section form button {
    width: 80% !important;
    max-width: 300px;
    box-sizing: border-box;
    margin: 0 auto;
    flex: none;           /* cancel desktop flex basis */
  }
  /* keep loading‑morph on mobile */
  #subscribeBtn.loading {
    width: 80% !important;
  }
  #subscribeBtn.loading::after {
    width: 16px;
  }
  .newsletter-section p {
    font-size: 1rem;
  }

 .newsletter-section h3 {
    font-size: 1.5rem;
  }


}

/*******************************************************
 *                    FINAL FOOTER
 *******************************************************/

/* Final Footer */
.final-footer {
  background-color: #000; 
  color: #ffffff; 
  font-size: 0.8rem; 
  font-family: Arial, serif; 
  font-weight: normal;
  text-transform: none;
  border-radius: 15px 15px 0 0; /* Rounded top corners */
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
  padding: 1rem 3rem; /* Adjusted padding for left/right spacing */
  
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left grouping: contains privacy links and copyright */
.footer-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Privacy links */
.footer-links a {
  color: inherit;
  text-decoration: underline;
}

/* Optional: spacing between privacy links */
.footer-links a + a {
  margin-left: 1rem;
}

/* Social media icons (right side) */
.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

/* Mobile responsiveness: stack everything vertically and re-order them */
@media (max-width: 768px) {
  .final-footer {
    flex-direction: column;
    text-align: center;
    font-size: 0.7rem; 
    padding: 1rem 0;
    gap: 1rem;
  }
  
  /* Move social media icons to the top */
  .footer-social {
    order: 1;
    width: 100%;
    justify-content: center;
  }
  
  /* The left group becomes a flex container arranged vertically */
  .footer-left {
    order: 2;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* Re-order children in the left group:
     Privacy links first … */
  .footer-links {
    order: 1;
    margin-bottom: 1rem;
  }
  
  /* … and then the copyright note */
  .footer-copy {
    order: 2;
  }
}
/*******************************************************
 *               RESPONSIVE ADJUSTMENTS (Mobile)
 *******************************************************/
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .info-links ul {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
  }
  .info-links strong {
    text-decoration: underline;
  }
  .final-footer {
    font-size: 0.8rem;
  }
  
    
.info-logo img {
  max-width: 150px;
}
  
  .info-links strong {
    text-decoration: underline;
  }
  
  .desktop {
    display: none;
  }
}


/* Base Styles */
body {
    margin: 0;
    font-family: Georgia, sans-serif;
   background-color: #fff;
  
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #fff;
  max-width: 1200px;
  margin-left: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Georgia', sans-serif; 
    font-size: 36px; 
    font-weight: bold;
    text-decoration: none;
    color: #333; 
   margin-left: 40px;
}

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

.logo a:hover {
    color: #333; 
    text-decoration: underline; 
}


/* Main Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
}

.main-nav ul li {
    margin-left: 50px;
}

.main-nav ul li a {
    text-decoration: none; /* Remove underlines */
    color: #333;
    font-size: 18px;
  font-weight: bold;
}

.main-nav ul li a:hover {
    text-decoration: underline;
}

/* Hamburger Menu Icon */
.menu-toggle {
    cursor: pointer;
    width: 40px; /* Increase clickable area width */
    height: 30px; /* Increase clickable area height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #333;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 25px;
    height: 3px;
    background-color: #333;
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: #fff;
    overflow-y: auto;
    transition: right 0.4s ease-in-out;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding-top: 20px;
}

.sidebar-nav.active {
    right: 0;
}

/* Close Button */
.close-btn {
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    transform: scaleX(-1);
    transition: transform 0.4s ease-in-out;
    margin-top: -10px;
}

/* Sidebar Menu */
.sidebar-menu,
.sidebar-additional {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
    font-size: 25px;
    margin-top: 20px;
}

.sidebar-menu {
    transition: right 0.4s ease-in-out;
}

.sidebar-menu li,
.sidebar-additional li {
    /* No border lines */
}

.sidebar-menu li a,
.sidebar-additional li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none; /* Remove underlines */
  font-weight: bold;
}

.sidebar-additional li a {
    text-decoration: underline;
}

.sidebar-menu li a:hover {
    background-color: #f0f0f0;
    text-decoration: none; /* Ensure underlines don't appear on hover */
}

/* Icons on the Left */
.icon {
    width: 40px !important;
    height: 40px !important;
    margin-right: 10px;
}

/* Additional Items Styling */
.sidebar-additional li a {
    font-size: 18px !important;
    color: #000;
    margin-top: -30px;
}

.sidebar-additional li a:hover .icon {
    opacity: 0.7;
}

/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 900;
}

#overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-nav ul li {
        margin-left: 15px;
    }

    .logo {
        font-size: 24px; /* Adjusted font size for smaller screens */
        margin-left: -15px; /* Adjusted margin for smaller screens */
    }
  
    header {
        margin-left: 20px;
    }
  
    .sidebar-nav {
        position: fixed;
        top: 0;
        right: -400px;
        width: 340px;
    }
  
    .sidebar-menu,
    .sidebar-additional {
        font-size: 20px;
    }
  
    .main-nav ul li a {
        font-size: 14px;
    }
    /* On mobile, hide sales and gallery; only display pricing and hamburger */
    .main-nav ul li:nth-child(1),
    .main-nav ul li:nth-child(3) {
        display: none;
    }
}