html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Circular Text Animation Styles */
.scroll-down-btn {
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.scroll-down-btn:hover {
  transform: scale(1.05);
}

.scroll-down-btn svg {
  transition: transform 0.3s ease;
}

.scroll-down-btn:hover svg {
  transform: rotate(5deg);
}

.scroll-down-btn.clicked {
  animation: bounce 0.3s ease;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Enhanced circular text animation */
.da-rounded-circle {
  position: relative;
  display: inline-block;
}

.da-rounded-circle svg {
  transition: all 0.3s ease;
}

.da-rounded-circle:hover svg {
  transform: rotate(360deg);
}

.da-rounded-circle .inner-contact {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.da-rounded-circle:hover .inner-contact {
  transform: translate(-50%, -50%) scale(1.1);
}

.da-rounded-circle:hover .inner-contact i {
  color: #007bff;
}

/* Newsletter Popup Transitions */
.da-popnews-bg,
.da-popnews-box {
  transition: opacity 0.3s ease;
}

/* Newsletter message styles */
.newsletter-message {
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  font-weight: 500;
}

.newsletter-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.newsletter-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* SEO Landing Pages Styles */
.da-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.da-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.da-hero-desc {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.da-category-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.da-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.da-category-link {
    text-decoration: none;
    color: inherit;
}

.da-category-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
}

.da-category-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.da-category-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.da-category-btn {
    color: #28a745;
    font-weight: 600;
    text-decoration: none;
}

.da-city-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.da-city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.da-city-link {
    text-decoration: none;
    color: inherit;
}

.da-city-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.da-city-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.da-feature-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.da-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.da-feature-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

.da-feature-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.da-feature-box p {
    color: #6c757d;
    line-height: 1.6;
}

.da-delivery-section {
    background: #f8f9fa;
}

.da-delivery-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.da-delivery-content p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.da-delivery-features {
    list-style: none;
    padding: 0;
}

.da-delivery-features li {
    padding: 8px 0;
    font-size: 1rem;
    color: #2c3e50;
}

.da-delivery-features i {
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

.da-map-placeholder {
    background: #e9ecef;
    border-radius: 10px;
    padding: 60px 20px;
    text-align: center;
    color: #6c757d;
}

.da-map-placeholder i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
}

.da-faq-section {
    background: #fff;
}

.da-faq-section .accordion-button {
    font-weight: 600;
    color: #2c3e50;
}

.da-faq-section .accordion-button:not(.collapsed) {
    background-color: #28a745;
    color: #fff;
}

.da-faq-section .accordion-body {
    color: #6c757d;
    line-height: 1.6;
}

/* Footer SEO Combinations Styling */
#footer-seo-combinations-container {
    padding: 20px 0;
}

#footer-seo-combinations-container .inner-contact {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

#footer-seo-combinations-container .inner-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#footer-seo-combinations-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer-seo-combinations-container li {
    margin: 0;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

#footer-seo-combinations-container li:last-child {
    border-bottom: none;
}

#footer-seo-combinations-container li:first-child span {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    display: block;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #28a745;
}

#footer-seo-combinations-container li a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 3px 0;
}

#footer-seo-combinations-container li a:hover {
    color: #28a745;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .da-hero-title {
        font-size: 2rem;
    }
    
    .da-hero-desc {
        font-size: 1rem;
    }
    
    .da-feature-box {
        padding: 20px 15px;
    }
    
    .da-category-card,
    .da-city-card {
        padding: 15px;
    }
    
    #footer-seo-combinations-container .inner-contact {
        padding: 15px;
    }
    
    #footer-seo-combinations-container li a {
        font-size: 0.8rem;
    }
}