html,body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}
.daak-xt-footer {
  background-color: #26272b;
  color: #f5f5f5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

.daak-xt-footer a {
  color: #000000;
  text-decoration: none;
}

.daak-xt-footer a:hover {
  opacity: 0.8;
}

/* top bar */

.daak-xt-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 5vw;
  border-top: 8px solid #10847e;
  background-color: #ffffff;
  flex-wrap: wrap;
  gap: 16px;
}

.daak-xt-footer-left,
.daak-xt-footer-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.daak-xt-footer-brand {
  display: flex;
  align-items: center;
  gap: 100px;
}

.daak-xt-footer-logo {
  height: 40px;
  width: auto;
}

.daak-xt-footer-company-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  font-size: 16px;
}

.daak-xt-footer-company {
  font-weight: 500;
}

.daak-xt-footer-city {
  font-weight: 400;
}

.daak-xt-footer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10847e;
}

/* nav links */

.daak-xt-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.daak-xt-footer-link {
  white-space: nowrap;
}



/* social row */

.daak-xt-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  align-items: center;
  font-size: 13px;
}

.daak-xt-footer-dot-small {
  width: 8px;
  height: 8px;
  background-color: #10847e;
}
.daak-xt-footer-box-small {
  width: 6px;
  height: 6px;
  background-color: #10847e;
}


/* bottom bar */

.daak-xt-footer-bottom {
  background-color: #ffffff;
  color: #000000;
  padding: 16px 1vw;
  
}

.daak-xt-footer-bottom-left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}

.daak-xt-footer-copy {
  margin: 0;
  font-size: 13px;
}

.daak-xt-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.daak-xt-footer-pay-img {
  height: 15px;
  width: auto;
}

/* right text */

.daak-xt-footer-bottom-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
}

.daak-xt-footer-heart {
  color: #f03625;
}

.daak-xt-footer-flag {
  height: 14px;
  width: auto;
}

.daak-xt-footer-agency {
  text-decoration: underline !important; 
  color: black !important;
}

/* responsive */

@media (max-width: 900px) {
  .daak-xt-footer-top {
    align-items: flex-start;
  }

  .daak-xt-footer-right {
    width: 100%;
  }

  .daak-xt-footer-links,
  .daak-xt-footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .daak-xt-footer-top {
    padding: 16px 16px;
  }

  .daak-xt-footer-bottom {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .daak-xt-footer-company-wrap {
    flex-wrap: wrap;
  }

  .daak-xt-footer-links {
    gap: 6px;
  }

  .daak-xt-footer-link {
    font-size: 13px;
  }
}


/* Footer Styling (for visual context) */
/* =================================== */
/* 1. Base Structure & Footer (Unchanged for context) */
/* =================================== */



.daak-xt-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.daak-xt-footer-link {
    color: #ecf0f1;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s;
}


/* =================================== */
/* 2. Modal Overlay & Container */
/* =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Slightly darker overlay */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 0px;
}

.modal-overlay.active {
    display: flex;
}

/* Glassmorphism Styling */
.modal-content {
    background: rgba(255, 255, 255, 0.25); /* Lighter background */
    backdrop-filter: blur(12px); /* Increased blur for stronger glass effect */
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px; /* Slightly more rounded */
    border:1px solid rgba(255, 255, 255, 0.4); /* Stronger border contrast */
    max-width: 1000px; /* Slightly wider */
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    position: relative;
    padding: 40px; /* Increased padding */
    color: #ffffff; /* Neutral dark text */
}

/* Close Button */
.modal-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 35px;
    cursor: pointer;
    color: #34495e;
    line-height: 1; /* Better alignment */
    transition: color 0.2s ease;
}

.modal-close-button:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

/* Content Visibility */
.modal-body-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.modal-body-content.active {
    display: block;
}

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

/* =================================== */
/* 3. Specific Content Classes (Non-conflicting) */
/* =================================== */

/* H2 replacement */
.modal-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #ffffff; /* Darker header */
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5); /* Separator line */
    padding-bottom: 10px;
}

/* P replacement */
.modal-paragraph {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ffffff;
}

/* UL replacement */
.modal-list {
    list-style-type: square; /* Different bullet style */
    margin: 15px 0 15px 25px;
    padding: 0;
}

/* LI replacement */
.modal-list-item {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #ffffff;
}

/* ADDRESS replacement */
.modal-address {
    font-style: normal; /* Removes default italic */
    padding: 15px;
    border-left: 5px solid #ffffff; /* Highlight border */
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
    margin-top: 20px;
    line-height: 1.8;
}

/* =================================== */
/* 4. Responsive Adjustments (Updated) */
/* =================================== */

/* Tablet and smaller laptops */
@media (max-width: 800px) {
    .modal-content {
        max-width: 90%;
        padding: 30px;
    }
}

/* Mobile specific */
@media (max-width: 500px) {
    .modal-content {
        max-width: 95%;
        border-radius: 10px;
        padding: 20px;
    }

    .modal-title {
        font-size: 1.5em; /* Smaller on mobile */
        margin-bottom: 15px;
    }

    .modal-paragraph, .modal-list-item {
        font-size: 0.9em;
    }

    .modal-address {
        padding: 10px;
    }
}

/* --- RESPONSIVE STYLES FOR TABLETS AND PHONES --- */

/* 1. Tablet (Max-width: 900px) - Already existed, adding improvements */
/* This breakpoint is good for handling the transition from desktop to tablet view. */
@media (max-width: 900px) {
  /* Adjustments for the top section */
  .daak-xt-footer-top {
    /* Ensure alignment is correct when content wraps */
    align-items: flex-start;
    /* Reduce horizontal padding slightly */
    padding: 18px 4vw; 
  }

  /* Make the right column take full width so links/social stack cleanly */
  .daak-xt-footer-right {
    width: 100%;
  }

  /* Align links and social items to the left instead of right */
  .daak-xt-footer-links,
  .daak-xt-footer-social {
    justify-content: flex-start;
  }
}

/* 2. Smaller Tablet & Large Mobile (Max-width: 768px) */
/* This breakpoint is crucial for structuring the bottom bar content. */
@media (max-width: 768px) {
  /* Adjust padding for a bit more space on medium screens */
  .daak-xt-footer-top {
    padding: 16px 3vw;
  }
  
  /* Force the footer-bottom-left and footer-bottom-right content to stack vertically */
  .daak-xt-footer-bottom-left {
    /* Change direction to stack elements */
    flex-direction: column; 
    /* Align items to the start for better readability */
    align-items: center; 
    /* Add vertical gap between stacked items (copy, payments, made-with) */
    gap: 10px; 
  }

  /* Ensure the main footer bottom bar is padded well */
  .daak-xt-footer-bottom {
    padding: 16px 3vw;
  }

  /* Align the 'made with' section to the left when it moves down */
  .daak-xt-footer-bottom-right {
    justify-content: flex-start;
  }
}

/* 3. All Size Mobile Phones (Max-width: 600px) - Already existed, adding payment image adjustment */
/* This is the typical mobile phone breakpoint. */
@media (max-width: 600px) {
  /* Tighter padding for mobile screens */
  .daak-xt-footer-top {
    padding: 16px 16px; /* Use fixed pixel padding for consistency */
  }

  /* Tighter padding for the bottom bar */
  .daak-xt-footer-bottom {
    padding: 14px 16px; /* Use fixed pixel padding for consistency */
  }

  /* Increase the size of payment icons for easier tapping */
  .daak-xt-footer-pay-img {
    height: 18px; 
  }

  /* Reduce the gap between payment icons */
  .daak-xt-footer-payments {
    gap: 12px;
  }

  /* Ensure the company text/city text wraps if needed */
  .daak-xt-footer-company-wrap {
    flex-wrap: wrap;
    font-size: 12px; /* Slightly smaller text */
  }

  /* Smaller dot separators on mobile */
  .daak-xt-footer-dot-small {
    width: 6px;
    height: 6px;
  }

  /* Smaller box separators on mobile */
  .daak-xt-footer-box-small {
    width: 5px;
    height: 5px;
  }
}

/* 4. Very Small Mobile Phones (Max-width: 380px) */
/* This is for low-end or smallest devices, mainly adjusting gaps and font size. */
@media (max-width: 380px) {
  /* Reduce payment image gap further for very small screens */
  .daak-xt-footer-payments {
    gap: 8px;
  }
  .daak-xt-footer-pay-img{
    height: 8px;
  }

  /* Ensure all bottom text is slightly smaller */
  .daak-xt-footer-copy,
  .daak-xt-footer-made,
  .daak-xt-footer-agency {
    font-size: 12px;
  }
}

/* CTA Container */
.daak-xt-footer-cta {
    background: #000; /* Matching your black & white premium theme */
    padding: 60px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.daak-xt-footer-cta:hover {
    transform: translateY(-5px);
}

/* Text Content */
.daak-xt-cta-content {
    flex: 1;
}

.daak-xt-cta-title {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.daak-xt-cta-desc {
    color: #bbb;
    font-size: 16px;
    max-width: 450px;
}

/* Form Styling */
.daak-xt-cta-form {
    flex: 1;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
}

.daak-xt-cta-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 25px;
    color: #fff;
    font-size: 15px;
    outline: none;
}

.daak-xt-cta-input::placeholder {
    color: #777;
}

.daak-xt-cta-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.daak-xt-cta-btn:hover {
    background: #e0e0e0;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .daak-xt-footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .daak-xt-cta-form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .daak-xt-cta-form {
        flex-direction: column;
        background: transparent;
        border: none;
        gap: 15px;
        padding: 0;
    }
    
    .daak-xt-cta-input {
        background: rgba(255, 255, 255, 0.05);
        padding: 18px 25px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .daak-xt-cta-btn {
        width: 100%;
    }
}

.daak-xt-footer-social-link {
    text-decoration: none;
    color: #888;
    transition: all 0.3s ease;
    font-size: 14px;
}

.daak-xt-footer-social-link:hover {
    color: #000; /* Darker color on hover */
    text-decoration: underline;
    text-underline-offset: 5px; /* Premium spacing for underline */
}