/* Base Styles */
:root {
    --primary-yellow: #FFD700;
    --primary-blue: #0076FF;
    --light-gray: #F7F7F7;
    --border-gray: #E0E0E0;
    --black: #000000;
    --dark-gray: #4A4A4A;
    --white: #FFFFFF;
    --shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
    --border-radius-round: 50px;
}

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

html[dir="rtl"] {
    direction: rtl;
}

body {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--black);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-cta {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 16px;
    font-weight: 500;
    border-color: var(--primary-blue);
    border-radius: 5pc;
}

.btn-cta:hover {
    background-color: #0066DD;
}

.btn-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--black);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

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

.btn-search-round {
    background-color: var(--primary-yellow);
    color: var(--black);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-search-round:hover {
    background-color: #E6C200;
}

.btn-promo {
    background-color: var(--primary-yellow);
    color: var(--black);
    padding: 10px 20px;
    border-radius: var(--border-radius-round);
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background-color: #E6C200;
}

.btn-promo-outline {
    background-color: transparent;
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--border-radius-round);
    border: 1px solid var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-promo-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Top Navigation */
.top-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-gray);
    padding: 10px 0;
}

.top-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-links {
    display: flex;
    gap: 20px;
}

.top-nav-links a {
    font-size: 0.875rem;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.top-nav-links a:hover {
    color: var(--black);
}

.top-nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.current-language {
    font-weight: 500;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.search-container {
    flex: 1;
    max-width: 800px;
}

.search-form {
    display: flex;
    gap: 10px;
    width: 100%;
}

.search-input-group {
    flex: 1;
    position: relative;
}

.search-input-group input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background-color: var(--light-gray);
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.mobile-menu-content {
    background-color: var(--white);
    width: 80%;
    max-width: 300px;
    height: 100%;
    padding: 20px;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu ul {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Categories Section */
.categories-section {
    padding: 30px 0;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    min-width: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.category-name {
    font-size: 0.875rem;
    text-align: center;
    color: var(--dark-gray);
}

/* Promotional Banners */
/* Promo Banners Section - Responsive Version */
.promo-banners {
    display: grid;
    grid-template-columns: 2fr 1fr; /* More balanced ratio */
    gap: 1.25rem; /* 20px equivalent in rem */
    margin: 1.875rem 0; /* 30px equivalent */
    width: 100%;
}

.promo-banner {
    border-radius: var(--border-radius);
    padding: 1.875rem; /* 30px */
    display: flex;
    align-items: center;
    min-height: 25rem; /* 400px equivalent but responsive */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-left: 0.3125rem solid var(--primary-yellow); /* 5px */
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for better text contrast */
}

.promo-banner.left {
    background-color: var(--light-gray);
    background-image: url('./PHOTO-2025-06-19-14-56-14.jpg');
}

.promo-banner.right {
    background-color: var(--dark-gray);
    background-image: url('./xl-8ff28815dd.webp');
}

.promo-content {
    position: relative; /* Bring content above the overlay */
    z-index: 1;
    width: 100%;
    padding: 1rem;
    text-align: center;
    color: var(--white);
}

.promo-content h3 {
    font-family: 'Roboto', Verdana, Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 3rem); /* Responsive font sizing */
    line-height: 1.2;
    color: var(--black);
    background-color: var(--primary-yellow);
    padding: 0.5rem;
    border-radius: 0.3125rem; /* 5px */
    transform: rotate(-2deg);
    display: inline-block;
    margin: 0 auto;
}

.promo-banner.right .promo-content h3 {
    transform: rotate(0);
}

.promo-content p {
    color: var(--white);
    font-family: 'Roboto', Verdana, Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.5rem); /* Responsive font sizing */
    margin: 1.5rem 0;
    line-height: 1.4;
}

.promo-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
    justify-content: center;
    gap: 0.625rem; /* 10px */
    margin-top: 1rem;
}

.btn-promo {
    background-color: var(--primary-yellow);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-round);
    border: none;
    font-weight: 700;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.btn-promo-outline {
    background-color: transparent;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-round);
    border: 2px solid var(--white);
    font-weight: 700;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-promo-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .promo-banners {
        grid-template-columns: 1fr;
    }
    
    .promo-banner {
        min-height: 20rem;
    }
    
    .promo-content h3 {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .promo-banner {
        min-height: 18rem;
        padding: 1.25rem;
    }
    
    .promo-content {
        padding: 0.5rem;
    }
    
    .promo-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-promo, 
    .btn-promo-outline {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        min-height: 15rem;
    }
    
    .promo-content h3 {
        font-size: 1.5rem;
    }
    
    .promo-content p {
        font-size: 1rem;
        margin: 1rem 0;
    }
}
/* Recently Viewed Section */
.recently-viewed {
    margin: 40px 0;
}

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

.businesses-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
}

.business-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
    min-width: 300px;
    transition: all 0.3s ease;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.business-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.business-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.business-subtitle {
    color: var(--dark-gray);
    font-size: 0.875rem;
    text-transform: uppercase;
}

.business-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star {
    color: var(--primary-yellow);
}

.business-status {
    background-color: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: var(--border-radius-round);
    font-size: 0.75rem;
    margin-top: 10px;
    display: inline-block;
}

.business-address {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    color: var(--dark-gray);
    font-size: 0.875rem;
}

.business-actions {
    display: flex;
    gap: 10px;
}

.business-actions .btn {
    flex: 1;
    padding: 8px;
    font-size: 0.875rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-call {
    background-color: #00BCD4;
    color: white;
}

.btn-review {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

/* Footer */
.footer {
    background-color: var(--light-gray);
    padding: 60px 0 20px;
    color: var(--dark-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--black);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

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

/* RTL Adjustments */
html[dir="rtl"] .search-input-group input,
html[dir="rtl"] .footer-column h3,
html[dir="rtl"] .business-address {
    text-align: right;
}

html[dir="rtl"] .mobile-menu-content {
    right: 0;
    left: auto;
}

html[dir="rtl"] .mobile-menu-close {
    right: auto;
    left: 15px;
}

html[dir="rtl"] .promo-banner.left {
    border-left: none;
    border-right: 5px solid var(--primary-yellow);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .promo-banners {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo {
        order: 1;
    }
    
    .search-container {
        order: 3;
        flex: 1 0 100%;
        margin-top: 15px;
    }
    
    .mobile-menu-toggle {
        order: 2;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .btn-search-round {
        position: absolute;
        right: 10px;
        top: 10px;
        width: 36px;
        height: 36px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .categories-grid {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 15px;
    }
    
    .category-card {
        min-width: 80px;
    }
    
    .promo-content h3 {
        font-size: 1.25rem;
    }
    
    .promo-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Active mobile menu */
.mobile-menu.active {
    display: block;
}

* {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    text-decoration-line :none;
text-decoration-style: solid;
text-decoration-thickness: auto;
text-size-adjust: 100%;
clip: rect(0px, 0px, 0px, 0px);
/* font-size: 1.6rem; */
  }
  /* Modern Regions Section */
.regions-section {
    padding: 3rem 0;
    background-color: var(--light-gray);
}

.regions-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--black);
    position: relative;
    display: inline-block;
    width: 100%;
}

.regions-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-yellow);
    margin: 0.5rem auto 0;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.region-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    height: 300px;
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.region-image {
    height: 70%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.region-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 1.5rem;
}

.region-name {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.region-info {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.region-count {
    font-size: 0.9rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.region-count i {
    color: var(--primary-yellow);
}

.region-button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.region-button:hover {
    background: #0066d6;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .regions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .region-card {
        height: 250px;
    }
    
    .region-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .regions-section h2 {
        font-size: 1.7rem;
    }
}


                .region-section {
                  padding: 2rem;
                  font-family: 'Roboto', Helvetica, sans-serif;
                }
              
                .section-title {
                  font-size: clamp(1.5rem, 3vw, 2rem);
                  font-weight: bold;
                  margin-bottom: 1rem;
                  text-align: left;
                }
                .section-title2 {
                    font-size: clamp(1.5rem, 3vw, 2rem);
                    font-weight: bold;
                    margin-bottom: 1rem;
                    text-align: left;
                  }
              
                .cities-grid {
                  display: grid;
                  grid-template-columns: repeat(auto-fit, minmax(150px, 0.5fr));
                  gap: 1rem;
                  overflow-x: auto;
                  padding-bottom: 1rem;
                }
              
                .city-card {
                  position: relative;
                  border-radius: 1rem;
                  overflow: hidden;
                  cursor: pointer;
                  background-size: cover;
                  background-position: center;
                  height: 150px;
                  transition: transform 0.3s ease, box-shadow 0.3s ease;
                }
              
                .city-card:hover {
                  transform: scale(1.03);
                  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
                }
              
                .city-card span {
                  position: absolute;
                  bottom: 10px;
                  left: 10px;
                  color: white;
                  font-weight: bold;
                  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
                }
              
                .quick-links {
                  font-size: 0.9rem;
                  color: var(--dark-blue);
                  margin: 1rem 0;
                }
              
                .quick-links a {
                  color: var(--dark-blue);
                  text-decoration: none;
                }
              
                .quick-links a:hover {
                  text-decoration: underline;
                }
              
                .footer-links {
                  font-size: 0.85rem;
                  color: gray;
                  margin-top: 1rem;
                  display: flex;
                  flex-wrap: wrap;
                  gap: 1rem;
                }
              
                .footer-links a {
                  color: gray;
                  text-decoration: none;
                }
              
                .footer-links a:hover {
                  text-decoration: underline;
                }
              
                .business-utilities {
                  display: flex;
                  flex-wrap: wrap;
                  gap: 1.5rem;
                  margin-top: 2rem;
                }
              
                .utility-card {
                  flex: 1 1 45%;
                  background: white;
                  border-radius: 1rem;
                  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                  padding: 1.5rem;
                }
              
                .utility-card h3 {
                  font-weight: bold;
                  margin-bottom: 0.5rem;
                }
              
                .utility-card p {
                  font-size: 0.9rem;
                }
              
                .solocal {
                  color: var(--primary-blue);
                  font-weight: bold;
                }
              
                .btn {
                  margin-top: 1rem;
                  background: var(--primary-blue);
                  color: white;
                  border: none;
                  padding: 10px 20px;
                  border-radius: 8px;
                  font-weight: bold;
                  cursor: pointer;
                  transition: background 0.3s ease;
                }
              
                .btn:hover {
                  background: #0056b3;
                }
              
                @media (max-width: 768px) {
                  .business-utilities {
                    flex-direction: column;
                  }
                  .utility-card {
                    flex: 1 1 100%;
                  }
                }
         /* Business Listing Page Styles */
.business-hero {
    background-color: var(--primary-yellow);
    padding: 4rem 0;
    text-align: center;
}

.business-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.business-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.btn-hero {
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-round);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #0066d6;
    transform: translateY(-3px);
}

.business-benefits {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* .benefit-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
} */

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--black);
}

.business-form {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #0066d6;
}

.business-pricing {
    padding: 4rem 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    background-color: var(--primary-yellow);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-blue);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--border-radius-round);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.features {
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.btn-pricing {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: var(--border-radius-round);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background-color: #0066d6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .business-hero h1 {
        font-size: 2rem;
    }
    
    .business-hero p {
        font-size: 1.1rem;
    }
}
/* Login Page Styles */
.login-main {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}


.login-form {
    padding: 3rem;
}

.login-form h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.login-subtitle {
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 118, 255, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.forgot-password {
    font-size: 0.9rem;
    color: var(--primary-blue);
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-login:hover {
    background-color: #0066d6;
}

.social-login {
    margin-top: 2rem;
}

.divider {
    position: relative;
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: var(--border-gray);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

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

.btn-social {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-social.google {
    color: #DB4437;
}

.btn-social.facebook {
    color: #4267B2;
}

.login-promo {
    background-color: var(--primary-yellow);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-promo h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.login-promo p {
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.btn-register {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-blue);
    color: white;
    border-radius: var(--border-radius-round);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background-color: #0066d6;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
    }
    
    .login-promo {
        padding: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .login-form {
        padding: 2rem 1.5rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
}

.businesses-scroll {
    /* Existing styles for flexbox, overflow-x, etc. */
    overflow-x: auto; /* Or scroll, depending on your preference for scrollbar visibility */
    white-space: nowrap; /* Keeps items in a single line */
    -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS devices */
    scroll-behavior: smooth; /* This is the key property for smooth scrolling */
}

/* Optional: Add some spacing between cards if you haven't already */
.business-card {
    display: inline-block; /* Or flex-shrink: 0; for flex container */
    margin-right: 15px; /* Adjust spacing as needed */
    vertical-align: top; /* Helps with alignment if cards have different heights */
}


/* Services Page Specific Styles */
.page-content.services-page-content {
    background-color: #FFFFFF;
    padding: 3rem 0;
}

.services-page-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-page-content .page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
}

.services-page-content .page-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e74c3c;
    margin: 1rem auto 0;
}

.services-page-content hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 3rem 0;
}

/* Service Category Styles */
.services-page-content .service-category {
    margin-bottom: 4rem;
}

.services-page-content .service-category h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e74c3c;
    display: inline-block;
}

/* Service Pack Styles */
.services-page-content .service-pack {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-page-content .service-pack:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.services-page-content .service-pack h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.services-page-content .service-pack h3::before {
    content: '•';
    color: #e74c3c;
    position: absolute;
    left: 0;
    font-size: 1.8rem;
    line-height: 1;
}

.services-page-content .service-pack p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.services-page-content .service-pack ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-page-content .service-pack li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.services-page-content .service-pack li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.services-page-content .service-pack h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Custom Offer Styles */
.services-page-content .service-pack.custom-offer {
    border-left-color: #e74c3c;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-page-content .service-pack.custom-offer h3 {
    color: #e74c3c;
}

.services-page-content .service-pack.custom-offer .contact-prompt {
    font-weight: 600;
    color: #e74c3c;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-page-content .page-title {
        font-size: 2rem;
    }
    
    .services-page-content .service-category h2 {
        font-size: 1.5rem;
    }
    
    .services-page-content .service-pack {
        padding: 1.5rem;
    }
}